Skip to content

Commit

Permalink
c3: default "do you want to deploy" to no (#6626)
Browse files Browse the repository at this point in the history
  • Loading branch information
elithrar authored Sep 16, 2024
1 parent 9442ec7 commit 3628814
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/big-dogs-whistle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-cloudflare": patch
---

fix: Changes the default for "Do you want to deploy your application" in create cloudflare (C3) to a resounding "No".
2 changes: 1 addition & 1 deletion packages/create-cloudflare/e2e-tests/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ describe.skipIf(frameworkToTest || isQuarantineMode())(
},
{
matcher: /Do you want to deploy your application/,
input: [keys.left, keys.enter],
input: [keys.enter],
},
],
logStream,
Expand Down
2 changes: 1 addition & 1 deletion packages/create-cloudflare/src/helpers/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const C3_DEFAULTS: C3Args = {
framework: "analog",
experimental: false,
autoUpdate: true,
deploy: true,
deploy: false,
git: true,
open: true,
lang: "ts",
Expand Down

0 comments on commit 3628814

Please sign in to comment.