From 1650fffeff8bfabc18c5f77fffd166ae980a3958 Mon Sep 17 00:00:00 2001 From: nerdchanii Date: Mon, 13 Jul 2026 20:48:43 +0900 Subject: [PATCH 1/2] fix: clean up v2 templates list --- packages/create/src/utils/constants.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/packages/create/src/utils/constants.ts b/packages/create/src/utils/constants.ts index d665539..bf5f7cc 100644 --- a/packages/create/src/utils/constants.ts +++ b/packages/create/src/utils/constants.ts @@ -86,21 +86,19 @@ export type StartTemplate = (typeof START_TEMPLATES)[number]; const START_TEMPLATES_V2 = [ "basic", "bare", - "with-solidbase", - "hackernews", - "notes", "with-auth", "with-authjs", "with-drizzle", "with-mdx", "with-prisma", "with-solid-styled", + "with-solidbase", + "with-strict-csp", "with-tailwindcss", + "with-tanstack-router", "with-trpc", "with-unocss", "with-vitest", - "with-strict-csp", - "with-tanstack-router", ] as const satisfies string[]; export type StartTemplateV2 = (typeof START_TEMPLATES_V2)[number]; From 64a60116c4ee6b841097e60568777050284c0dc3 Mon Sep 17 00:00:00 2001 From: nerdchanii Date: Mon, 20 Jul 2026 22:57:36 +0900 Subject: [PATCH 2/2] fix: remove with-tanstack-router from v2 templates list --- packages/create/src/utils/constants.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/create/src/utils/constants.ts b/packages/create/src/utils/constants.ts index bf5f7cc..6fc3a0e 100644 --- a/packages/create/src/utils/constants.ts +++ b/packages/create/src/utils/constants.ts @@ -74,7 +74,6 @@ const START_TEMPLATES = [ "with-prisma", "with-solid-styled", "with-tailwindcss", - "with-tanstack-router", "with-trpc", "with-unocss", "with-vitest",