From 31ab881b0547d970938f08fc855d31ad12ecd437 Mon Sep 17 00:00:00 2001 From: Boaz Poolman Date: Tue, 28 Dec 2021 23:50:25 +0100 Subject: [PATCH] fix: Change CLI notice color --- server/cli.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/cli.js b/server/cli.js index ab29885..dc2a439 100644 --- a/server/cli.js +++ b/server/cli.js @@ -72,7 +72,7 @@ const handleAction = async (syncType, skipConfirm, configType, partials) => { // No changes. if (isEmpty(diff.diff)) { - console.log(`${chalk.blue.bold('[notice]')} There are no changes to ${syncType}.`); + console.log(`${chalk.cyan.bold('[notice]')} There are no changes to ${syncType}.`); process.exit(0); } @@ -97,7 +97,7 @@ const handleAction = async (syncType, skipConfirm, configType, partials) => { // No changes for partial diff. if ((partials || configType) && isEmpty(partialDiff)) { - console.log(`${chalk.blue.bold('[notice]')} There are no changes for the specified config.`); + console.log(`${chalk.cyan.bold('[notice]')} There are no changes for the specified config.`); process.exit(0); } @@ -209,7 +209,7 @@ program // No changes. if (isEmpty(diff.diff)) { - console.log(`${chalk.blue.bold('[notice]')} No differences between DB and sync directory.`); + console.log(`${chalk.cyan.bold('[notice]')} No differences between DB and sync directory.`); process.exit(0); }