Skip to content

Commit

Permalink
fix(cli): Hide output when installing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed May 2, 2024
1 parent 3669490 commit dea7ba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/shared/package-json-ref.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class PackageJson {
args.push('--save-dev');
}
}
const child = spawn(command, args, { stdio: 'inherit' });
const child = spawn(command, args, { stdio: 'ignore' });
child.on('close', code => {
if (code !== 0) {
const message = 'An error occurred when installing dependencies.';
Expand Down

0 comments on commit dea7ba7

Please sign in to comment.