Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
karlhorky committed Apr 17, 2024
1 parent 0011731 commit 839610e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/npm/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@ export const checkIgnoreStrategy = async ({files}, rootDirectory) => {

export const getFilesToBePacked = async rootDirectory => {
const {stdout} = await execa('npm', [
'pack', '--dry-run', '--json', '--silent',
'pack',
'--dry-run',
'--json',
'--silent',
// TODO: Remove this once [npm/cli#7354](https://github.com/npm/cli/issues/7354) is resolved.
'--foreground-scripts=false',
], {cwd: rootDirectory});
Expand Down

0 comments on commit 839610e

Please sign in to comment.