From f19c6d7a50072f356ca1d843e89907475b1bf8a9 Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Tue, 3 Jun 2025 01:15:40 +0530 Subject: [PATCH] Simplify frontend/native prompt messages --- .changeset/chatty-cobras-rule.md | 5 +++++ apps/cli/src/prompts/frontend.ts | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/chatty-cobras-rule.md diff --git a/.changeset/chatty-cobras-rule.md b/.changeset/chatty-cobras-rule.md new file mode 100644 index 0000000..624e4e1 --- /dev/null +++ b/.changeset/chatty-cobras-rule.md @@ -0,0 +1,5 @@ +--- +"create-better-t-stack": patch +--- + +Simplify frontend/native prompt messages diff --git a/apps/cli/src/prompts/frontend.ts b/apps/cli/src/prompts/frontend.ts index 4ae7dfe..c846a07 100644 --- a/apps/cli/src/prompts/frontend.ts +++ b/apps/cli/src/prompts/frontend.ts @@ -81,7 +81,7 @@ export async function getFrontendChoice( }); const webFramework = await select({ - message: "Choose frontend", + message: "Choose web", options: webOptions, initialValue: DEFAULT_CONFIG.frontend[0], }); @@ -96,7 +96,7 @@ export async function getFrontendChoice( if (frontendTypes.includes("native")) { const nativeFramework = await select({ - message: "Choose native framework", + message: "Choose native", options: [ { value: "native-nativewind" as const,