Skip to content

Commit dfcdc54

Browse files
committed
disable preconditions during create
1 parent 4aeaa7d commit dfcdc54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/commands/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ async function createProject(cwd: string, options: Options) {
161161
if (options.addOns) {
162162
// `runAddCommand` includes installing dependencies
163163
const { nextSteps, packageManager: pm } = await runAddCommand(
164-
{ cwd: projectPath, install: options.install, preconditions: true, community: [] },
164+
{ cwd: projectPath, install: options.install, preconditions: false, community: [] },
165165
[]
166166
);
167167
packageManager = pm;

0 commit comments

Comments
 (0)