From 9495059eb992e6ac5f7ec5764e1c30f3d53472a2 Mon Sep 17 00:00:00 2001 From: Northword Date: Mon, 17 Jul 2023 10:28:41 +0800 Subject: [PATCH] fix: remove `\n` in template literals --- scripts/start.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/start.mjs b/scripts/start.mjs index 183e69c..561a298 100644 --- a/scripts/start.mjs +++ b/scripts/start.mjs @@ -25,9 +25,9 @@ if (existsSync(profilePath)) { function writeAddonProxyFile() { writeFileSync(addonProxyFilePath, buildPath); console.log( - `[info] Addon proxy file has been updated. \n - File path: ${addonProxyFilePath} \n - Addon path: ${buildPath} \n`, + `[info] Addon proxy file has been updated. + File path: ${addonProxyFilePath} + Addon path: ${buildPath} `, ); }