Skip to content

Commit

Permalink
CLI: Fix init --skip-install
Browse files Browse the repository at this point in the history
  • Loading branch information
shilman committed Jun 12, 2024
1 parent bb3d8cc commit 6f1110f
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 6f1110f

Please sign in to comment.