We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc71531 commit d085503Copy full SHA for d085503
code/lib/cli/src/proxy.ts
@@ -11,7 +11,6 @@ if (['dev', 'build'].includes(args[0])) {
11
? [`create-storybook@${versions.storybook}`, ...args.slice(1)]
12
: [`@storybook/cli@${versions.storybook}`, ...args];
13
const command = ['npx', '--yes', ...proxiedArgs];
14
- console.log(command.join(' '));
15
const child = spawn(command[0], command.slice(1), { stdio: 'inherit' });
16
child.on('exit', (code) => {
17
if (code != null) {
0 commit comments