From f8c447838652d5c26bf6210f0af1b3f26b2b48b0 Mon Sep 17 00:00:00 2001 From: Brandon Corbett Date: Thu, 16 Jul 2026 22:19:22 -0400 Subject: [PATCH] chore(templates): scaffold from seamless-templates v0.2.4 --- .changeset/bump-templates-v0-2-4.md | 7 +++++++ src/core/images.ts | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .changeset/bump-templates-v0-2-4.md diff --git a/.changeset/bump-templates-v0-2-4.md b/.changeset/bump-templates-v0-2-4.md new file mode 100644 index 0000000..13e6f36 --- /dev/null +++ b/.changeset/bump-templates-v0-2-4.md @@ -0,0 +1,7 @@ +--- +"seamless-cli": patch +--- + +chore(templates): scaffold from seamless-templates v0.2.4 + +Bump `SEAMLESS_TEMPLATES_REF` to `v0.2.4`. The Express template now has a working production `npm run start` (fixed extensionless ESM imports and the migration runner path) and ships the `docker-compose.yml` its scripts and README referenced. The web templates (react-vite and react-oauth) drop the unused `VITE_AUTH_SERVER_URL`, and all templates document both the local and managed init paths. diff --git a/src/core/images.ts b/src/core/images.ts index c1341a6..7bd16a3 100644 --- a/src/core/images.ts +++ b/src/core/images.ts @@ -13,4 +13,4 @@ export const SEAMLESS_AUTH_ADMIN_DASHBOARD_IMAGE = `ghcr.io/fells-code/seamless- // SEAMLESS_TEMPLATES_REF, or point at a local checkout with SEAMLESS_TEMPLATES_DIR. export const SEAMLESS_TEMPLATES_REPO = "fells-code/seamless-templates"; -export const SEAMLESS_TEMPLATES_REF = "v0.2.3"; +export const SEAMLESS_TEMPLATES_REF = "v0.2.4";