From 3fa24adad0a07ba2f469c545b28251b035efdf90 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 22 Feb 2023 23:46:08 +0100 Subject: [PATCH] fix(cli): coloring nits --- cli/sync.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/sync.ts b/cli/sync.ts index 8bd29505b7..3f33462c5c 100644 --- a/cli/sync.ts +++ b/cli/sync.ts @@ -256,7 +256,7 @@ async function pull( } const conflicts = [] - console.log(`Applying changes to files ...`); + console.log(colors.gray(`Applying changes to files ...`)); for await (const change of changes) { const target = path.join(Deno.cwd(), change.path); const stateTarget = path.join(Deno.cwd(), ".wmill", change.path) @@ -462,7 +462,7 @@ async function push(opts: GlobalOptions & { raw: boolean, yes: boolean, skipPull ) { return } - console.log(`Applying changes to files ...`); + console.log(colors.gray(`Applying changes to files ...`)); const alreadySynced: string[] = [] for await (const change of changes) { const stateTarget = path.join(Deno.cwd(), ".wmill", change.path)