diff --git a/docs/01-getting-started/01-installation.mdx b/docs/01-getting-started/01-installation.mdx index afe5228201224..8b481ef58fd6e 100644 --- a/docs/01-getting-started/01-installation.mdx +++ b/docs/01-getting-started/01-installation.mdx @@ -27,11 +27,11 @@ On installation, you'll see the following prompts: ```txt filename="Terminal" What is your project named? my-app -Would you like to use TypeScript with this project? No / Yes -Would you like to use ESLint with this project? No / Yes -Would you like to use Tailwind CSS with this project? No / Yes -Would you like to use `src/` directory with this project? No / Yes -Use App Router (recommended)? No / Yes +Would you like to use TypeScript? No / Yes +Would you like to use ESLint? No / Yes +Would you like to use Tailwind CSS? No / Yes +Would you like to use `src/` directory? No / Yes +Would you like to use App Router? (recommended) No / Yes Would you like to customize the default import alias? No / Yes ``` diff --git a/docs/02-app/02-api-reference/06-create-next-app.mdx b/docs/02-app/02-api-reference/06-create-next-app.mdx index 33e3409b629e0..db9bc14d3184b 100644 --- a/docs/02-app/02-api-reference/06-create-next-app.mdx +++ b/docs/02-app/02-api-reference/06-create-next-app.mdx @@ -23,11 +23,11 @@ You will then be asked the following prompts: ```bash filename="Terminal" What is your project named? my-app -Would you like to use TypeScript with this project? No / Yes -Would you like to use ESLint with this project? No / Yes -Would you like to use Tailwind CSS with this project? No / Yes -Would you like to use `src/` directory with this project? No / Yes -Use App Router (recommended)? No / Yes +Would you like to use TypeScript? No / Yes +Would you like to use ESLint? No / Yes +Would you like to use Tailwind CSS? No / Yes +Would you like to use `src/` directory? No / Yes +Would you like to use App Router? (recommended) No / Yes Would you like to customize the default import alias? No / Yes ``` diff --git a/packages/create-next-app/README.md b/packages/create-next-app/README.md index ad8029d9944b8..2c4dccfcae355 100644 --- a/packages/create-next-app/README.md +++ b/packages/create-next-app/README.md @@ -18,7 +18,7 @@ You will be asked for the name of your project, and then whether you want to create a TypeScript project: ```bash -✔ Would you like to use TypeScript with this project? … No / Yes +✔ Would you like to use TypeScript? … No / Yes ``` Select **Yes** to install the necessary types/dependencies and create a new TS project. diff --git a/packages/create-next-app/index.ts b/packages/create-next-app/index.ts index 84c4ace0e89a0..eec8baf9037fc 100644 --- a/packages/create-next-app/index.ts +++ b/packages/create-next-app/index.ts @@ -258,7 +258,7 @@ async function run(): Promise { { type: 'toggle', name: 'typescript', - message: `Would you like to use ${styledTypeScript} with this project?`, + message: `Would you like to use ${styledTypeScript}?`, initial: getPrefOrDefault('typescript'), active: 'Yes', inactive: 'No', @@ -295,7 +295,7 @@ async function run(): Promise { onState: onPromptState, type: 'toggle', name: 'eslint', - message: `Would you like to use ${styledEslint} with this project?`, + message: `Would you like to use ${styledEslint}?`, initial: getPrefOrDefault('eslint'), active: 'Yes', inactive: 'No', @@ -317,7 +317,7 @@ async function run(): Promise { onState: onPromptState, type: 'toggle', name: 'tailwind', - message: `Would you like to use ${tw} with this project?`, + message: `Would you like to use ${tw}?`, initial: getPrefOrDefault('tailwind'), active: 'Yes', inactive: 'No', @@ -339,7 +339,7 @@ async function run(): Promise { onState: onPromptState, type: 'toggle', name: 'srcDir', - message: `Would you like to use ${styledSrcDir} with this project?`, + message: `Would you like to use ${styledSrcDir}?`, initial: getPrefOrDefault('srcDir'), active: 'Yes', inactive: 'No', @@ -358,7 +358,7 @@ async function run(): Promise { onState: onPromptState, type: 'toggle', name: 'appRouter', - message: `Use ${styledAppDir} (recommended)?`, + message: `Would you like to use ${styledAppDir}? (recommended)`, initial: true, active: 'Yes', inactive: 'No',