From 0467b9e302fa8fb5c52a3af72c535a7f09a135f2 Mon Sep 17 00:00:00 2001 From: Ryan Carniato Date: Wed, 12 Aug 2026 08:16:28 -0700 Subject: [PATCH] chore: bump TEMPLATES_REF to templates main (4f54cb7) for browser-mode cleanup solid-v2/with-vitest-browser-mode drops its environment: 'node' workaround now that vite-plugin-solid 3.0.0-next.26 gates its jsdom default on browser.enabled; the templates commit was verified on a fresh install (pnpm install && pnpm test exits 0, test passes in real Chromium). Co-authored-by: Cursor --- packages/create/src/utils/download.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/create/src/utils/download.ts b/packages/create/src/utils/download.ts index a62a6e5..85ae7bc 100644 --- a/packages/create/src/utils/download.ts +++ b/packages/create/src/utils/download.ts @@ -9,7 +9,7 @@ export const TEMPLATES_REPO = { owner: "solidjs", name: "templates" } as const; * later reorganizations of the templates repo. `undefined` means live HEAD of the * default branch, which is the historical behavior. */ -export const TEMPLATES_REF: string | undefined = "b3d888d309c7173feee2b4cb3ddba8e788af559b"; +export const TEMPLATES_REF: string | undefined = "4f54cb7e3362037c43cece30bb7f228becfddcee"; /** `SOLID_CLI_TEMPLATES_REF` overrides the baked ref, for testing against branches/forks */ export const templatesRef = () => process.env.SOLID_CLI_TEMPLATES_REF || TEMPLATES_REF;