From 61dc168f86b556149049bf7363a0144be0590816 Mon Sep 17 00:00:00 2001 From: Georgii Dolzhykov Date: Sat, 11 Feb 2017 17:38:08 +0300 Subject: [PATCH] Remove the bullet characters On Windows, they're not printed to the console and produce an unexpected beep sound instead. --- lib/listening.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/listening.js b/lib/listening.js index 416c49f7..2fa0ddd4 100644 --- a/lib/listening.js +++ b/lib/listening.js @@ -43,8 +43,8 @@ module.exports = async (server, current, inUse) => { const localURL = `http://localhost:${details.port}` - message += `• ${chalk.bold('Local: ')} ${localURL}\n` - message += `• ${chalk.bold('On Your Network: ')} ${url}\n\n` + message += `- ${chalk.bold('Local: ')} ${localURL}\n` + message += `- ${chalk.bold('On Your Network: ')} ${url}\n\n` if (isTTY) { const copied = await copyToClipboard(url)