From 5995258c5e166da190cb9feca8e5614e9cdf4f95 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 19 Jan 2022 08:39:48 -0500 Subject: [PATCH] Add whitespace --- scripts/build.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/build.js b/scripts/build.js index e3e22ab42..d95ca8c07 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -130,8 +130,11 @@ fs.mkdirSync(outdir, { recursive: true }); bs.init(browserSyncConfig, () => { // This init callback gets executed after the server has started const socketIoConfig = browserSyncConfig.socket.socketIoClientConfig; - // Wait enough time for any open, detached clients to have a chance to reconnect. This will be used to determine if we reload an existing tab or open a new one. + + // Wait enough time for any open, detached clients to have a chance to reconnect. This will be used to determine + // if we reload an existing tab or open a new one. const tabReattachDelay = socketIoConfig.reconnectionDelayMax * 2 + socketIoConfig.timeout; + setTimeout(() => { const url = `http://localhost:${port}`; console.log(chalk.cyan(`Launched the Shoelace dev server at ${url} 🥾\n`));