Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperpeulen committed Jul 11, 2024
1 parent dc71531 commit d085503
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion code/lib/cli/src/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ if (['dev', 'build'].includes(args[0])) {
? [`create-storybook@${versions.storybook}`, ...args.slice(1)]
: [`@storybook/cli@${versions.storybook}`, ...args];
const command = ['npx', '--yes', ...proxiedArgs];
console.log(command.join(' '));
const child = spawn(command[0], command.slice(1), { stdio: 'inherit' });
child.on('exit', (code) => {
if (code != null) {
Expand Down

0 comments on commit d085503

Please sign in to comment.