Skip to content

Commit

Permalink
Add --no-progress to npm commands with ignored output
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Feb 8, 2025
1 parent 59bd3e7 commit 29034b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions scripts/release-npm-packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ async function installBundledDependencies(pkg) {
'--silent',
'--no-audit',
'--no-fund',
'--no-progress',
'--workspaces',
'false',
'--install-strategy',
Expand Down
1 change: 1 addition & 0 deletions scripts/update-npm-package-publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ async function installBundledDependencies(pkg, state = { fails: [] }) {
'--silent',
'--no-audit',
'--no-fund',
'--no-progress',
'--workspaces',
'false',
'--install-strategy',
Expand Down
3 changes: 2 additions & 1 deletion scripts/update-test-npm-package-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ async function installTestNpmNodeModules(options) {
// are passed.
'--silent',
'--no-audit',
'--no-fund'
'--no-fund',
'--no-progress'
]
if (Array.isArray(specs)) {
args.push('--save-dev', ...specs)
Expand Down

0 comments on commit 29034b0

Please sign in to comment.