Skip to content

Commit 0146147

Browse files
committed
chore: make install scripts quiet
1 parent f0c0a94 commit 0146147

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

scripts/install/berry.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
corepack yarn@latest install
3+
corepack yarn@latest install >/dev/null

scripts/install/bun.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
bun install
3+
bun install --silent

scripts/install/deno.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
deno install --allow-scripts
3+
deno install --allow-scripts --quiet

scripts/install/npm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
npm install --no-audit --no-fund
3+
npm install --no-audit --no-fund --silent

scripts/install/pnpm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
corepack pnpm@latest install
3+
corepack pnpm@latest install --silent

scripts/install/vlt.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
vlt install
3+
vlt install >/dev/null

scripts/install/yarn.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
corepack yarn@1 install
3+
corepack yarn@1 install --silent

0 commit comments

Comments
 (0)