Skip to content

Commit d085503

Browse files
committed
Remove console.log
1 parent dc71531 commit d085503

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

code/lib/cli/src/proxy.ts

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ if (['dev', 'build'].includes(args[0])) {
1111
? [`create-storybook@${versions.storybook}`, ...args.slice(1)]
1212
: [`@storybook/cli@${versions.storybook}`, ...args];
1313
const command = ['npx', '--yes', ...proxiedArgs];
14-
console.log(command.join(' '));
1514
const child = spawn(command[0], command.slice(1), { stdio: 'inherit' });
1615
child.on('exit', (code) => {
1716
if (code != null) {

0 commit comments

Comments
 (0)