This commit is contained in:
Norbert de Langen 2022-06-14 16:04:06 +02:00
parent 62dd672e58
commit ad4b51bbf8
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -189,7 +189,7 @@ const initStorybook = async ({ cwd, autoDetect = true, name, e2e, pnp }: Options
flags.push('--linkable');
}
if (pnp) {
flags.push('--pnp');
flags.push('--use-pnp');
}
const sbCLICommand = useLocalSbCli
@ -198,7 +198,6 @@ const initStorybook = async ({ cwd, autoDetect = true, name, e2e, pnp }: Options
const command = `${sbCLICommand} init ${flags.join(' ')}`;
console.log({ command });
await exec(
command,
{ cwd },