fix(cli): coloring nits

This commit is contained in:
Ruben Fiszel
2023-02-22 23:46:08 +01:00
parent 7471be1d81
commit 3fa24adad0
+2 -2
View File
@@ -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)