Skip to content

Commit 598c230

Browse files
authored
fix(create-cloudflare): update prompt question for category (#6376)
1 parent b654aa7 commit 598c230

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/create-cloudflare/e2e-tests/cli.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ describe.skipIf(frameworkToTest || isQuarantineMode())(
7575
[projectPath],
7676
[
7777
{
78-
matcher: /What do you want to start with\?/,
78+
matcher: /What would you like to start with\?/,
7979
input: [keys.enter],
8080
},
8181
{
@@ -119,7 +119,7 @@ describe.skipIf(frameworkToTest || isQuarantineMode())(
119119
input: [projectPath, keys.enter],
120120
},
121121
{
122-
matcher: /What do you want to start with\?/,
122+
matcher: /What would you like to start with\?/,
123123
input: [keys.down, keys.down, keys.enter],
124124
},
125125
{
@@ -157,7 +157,7 @@ describe.skipIf(frameworkToTest || isQuarantineMode())(
157157
[projectPath, "--ts", "--no-deploy"],
158158
[
159159
{
160-
matcher: /What do you want to start with\?/,
160+
matcher: /What would you like to start with\?/,
161161
input: [keys.enter],
162162
},
163163
{

packages/create-cloudflare/src/templates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export const selectTemplate = async (args: Partial<C3Args>) => {
200200

201201
const category = await processArgument<string>(args, "category", {
202202
type: "select",
203-
question: "What do you want to start with?",
203+
question: "What would you like to start with?",
204204
label: "category",
205205
options: [
206206
{ label: "Hello World example", value: "hello-world" },

0 commit comments

Comments
 (0)