Skip to content

Commit

Permalink
Merge pull request #28226 from storybookjs/shilman/27096-fix-init-ski…
Browse files Browse the repository at this point in the history
…p-install

CLI: Fix `init --skip-install`
  • Loading branch information
shilman authored Jun 12, 2024
2 parents bb3d8cc + 6f1110f commit 3385570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/lib/cli/src/initiate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ export async function doInitiate(options: CommandOptions): Promise<
);

return {
shouldRunDev: !!options.dev,
shouldRunDev: !!options.dev && !options.skipInstall,
projectType,
packageManager,
storybookCommand,
Expand Down

0 comments on commit 3385570

Please sign in to comment.