Skip to content

Commit f0c0a94

Browse files
committed
chore: quiet output from the clean scripts
1 parent e729429 commit f0c0a94

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

scripts/clean.sh

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,17 @@ rm -rf pnpm-lock.yaml;
1111
rm -rf vlt-lock.json;
1212
rm -rf bun.lockb;
1313
rm -rf deno.lock;
14-
npm cache clean --force;
15-
corepack yarn@1 cache clean --all;
16-
corepack yarn@latest cache clean --all;
17-
corepack pnpm cache delete *;
18-
corepack pnpm cache delete *;
14+
npm cache clean --force --silent;
15+
corepack yarn@1 cache clean --all --silent;
16+
corepack yarn@latest cache clean --all >/dev/null;
17+
corepack pnpm cache delete * --silent;
1918
rm -rf $(corepack pnpm store path);
2019
rm -rf $(vlt config get cache);
2120
rm -rf $(bun pm cache);
2221
rm -rf nx.json;
2322
rm -rf .nx;
2423
rm -rf .turbo;
25-
deno clean;
24+
deno clean --quiet;
2625
npm pkg delete packageManager;
27-
git add .;
28-
git stash;
26+
git add . --quiet;
27+
git stash --quiet;

0 commit comments

Comments
 (0)