build(deps-dev): bump prettier from 3.0.3 to 3.2.4 in /superset-websocket (#26732)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com>
This commit is contained in:
dependabot[bot]
2024-02-21 18:18:18 -07:00
committed by GitHub
parent cc2f6f1ed9
commit 00b47ab41f
3 changed files with 10 additions and 14 deletions

View File

@@ -76,9 +76,7 @@ function onError(error) {
throw error;
}
var bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;
var bind = typeof port === 'string' ? 'Pipe ' + port : 'Port ' + port;
// handle specific listen errors with friendly messages
switch (error.code) {
@@ -101,8 +99,6 @@ function onError(error) {
function onListening() {
var addr = server.address();
var bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
var bind = typeof addr === 'string' ? 'pipe ' + addr : 'port ' + addr.port;
debug('Listening on ' + bind);
}