create-better-t-stack 2.33.7 → 2.33.8-canary.98a850ad-canary.98a850ad-canary.98a850ad-canary.98a850ad-canary.98a850ad
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +17 -4
- package/dist/index.js +1 -1
- package/dist/{src-v-T6MhJ_.js → src-D0MPVT22.js} +1292 -548
- package/package.json +7 -4
- package/templates/addons/biome/biome.json.hbs +1 -0
- package/templates/addons/ruler/.ruler/mcp.json.hbs +1 -1
- package/templates/addons/ultracite/biome.json.hbs +1 -0
- package/templates/api/orpc/native/utils/orpc.ts.hbs +2 -3
- package/templates/api/orpc/web/nuxt/app/plugins/orpc.ts.hbs +2 -3
- package/templates/api/orpc/web/react/base/src/utils/orpc.ts.hbs +2 -3
- package/templates/api/orpc/web/solid/src/utils/orpc.ts.hbs +2 -3
- package/templates/api/orpc/web/svelte/src/lib/orpc.ts.hbs +2 -3
- package/templates/auth/server/base/src/lib/auth.ts.hbs +37 -4
- package/templates/backend/server/server-base/_gitignore +1 -0
- package/templates/backend/server/server-base/src/routers/index.ts.hbs +2 -0
- package/templates/backend/server/server-base/tsconfig.json.hbs +1 -1
- package/templates/base/_gitignore +2 -0
- package/templates/deploy/alchemy/alchemy.run.ts.hbs +200 -0
- package/templates/deploy/alchemy/env.d.ts.hbs +20 -0
- package/templates/deploy/{web → wrangler/web}/nuxt/wrangler.jsonc.hbs +1 -1
- package/templates/deploy/{web → wrangler/web}/react/next/wrangler.jsonc.hbs +1 -1
- package/templates/deploy/{web → wrangler/web}/react/react-router/wrangler.jsonc.hbs +1 -1
- package/templates/deploy/{web → wrangler/web}/react/tanstack-router/wrangler.jsonc.hbs +1 -1
- package/templates/deploy/{web → wrangler/web}/react/tanstack-start/wrangler.jsonc.hbs +1 -1
- package/templates/deploy/{web → wrangler/web}/solid/wrangler.jsonc.hbs +1 -1
- package/templates/deploy/{web → wrangler/web}/svelte/wrangler.jsonc.hbs +1 -1
- package/templates/frontend/nuxt/_gitignore +3 -0
- package/templates/frontend/nuxt/tsconfig.json.hbs +4 -4
- package/templates/frontend/react/tanstack-router/src/routes/__root.tsx.hbs +2 -3
- package/templates/frontend/react/web-base/_gitignore +1 -0
- package/templates/frontend/react/web-base/src/components/header.tsx.hbs +0 -1
- package/templates/frontend/solid/_gitignore +1 -0
- package/templates/frontend/solid/package.json.hbs +0 -1
- package/templates/frontend/svelte/_gitignore +1 -0
- package/templates/frontend/svelte/package.json.hbs +11 -13
- /package/templates/{runtime/workers/apps → deploy/wrangler}/server/wrangler.jsonc.hbs +0 -0
- /package/templates/deploy/{web → wrangler/web}/react/next/open-next.config.ts +0 -0
|
@@ -12,20 +12,18 @@
|
|
|
12
12
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@sveltejs/adapter-auto": "^6.
|
|
16
|
-
"@sveltejs/kit": "^2.
|
|
17
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
18
|
-
"@tailwindcss/vite": "^4.1.
|
|
19
|
-
"svelte": "^5.
|
|
20
|
-
"svelte-check": "^4.1
|
|
21
|
-
"tailwindcss": "^4.1.
|
|
22
|
-
"typescript": "^5.
|
|
23
|
-
"
|
|
24
|
-
"vite": "^7.0.2"
|
|
15
|
+
"@sveltejs/adapter-auto": "^6.1.0",
|
|
16
|
+
"@sveltejs/kit": "^2.31.1",
|
|
17
|
+
"@sveltejs/vite-plugin-svelte": "^6.1.2",
|
|
18
|
+
"@tailwindcss/vite": "^4.1.12",
|
|
19
|
+
"svelte": "^5.38.1",
|
|
20
|
+
"svelte-check": "^4.3.1",
|
|
21
|
+
"tailwindcss": "^4.1.12",
|
|
22
|
+
"typescript": "^5.9.2",
|
|
23
|
+
"vite": "^7.1.2"
|
|
25
24
|
},
|
|
26
25
|
"dependencies": {
|
|
27
|
-
"@tanstack/svelte-form": "^1.
|
|
28
|
-
"
|
|
29
|
-
"zod": "^4.0.2"
|
|
26
|
+
"@tanstack/svelte-form": "^1.19.2",
|
|
27
|
+
"zod": "^4.0.17"
|
|
30
28
|
}
|
|
31
29
|
}
|
|
File without changes
|
|
File without changes
|