create-better-t-stack 3.12.0 → 3.12.2
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/dist/cli.mjs
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as router, i as docs, n as create, o as sponsors, r as createBtsCli, t as builder } from "./src-
|
|
2
|
+
import { a as router, i as docs, n as create, o as sponsors, r as createBtsCli, t as builder } from "./src-D3EHRs6z.mjs";
|
|
3
3
|
|
|
4
4
|
export { builder, create, createBtsCli, docs, router, sponsors };
|
|
@@ -131,7 +131,7 @@ const dependencyVersionMap = {
|
|
|
131
131
|
"@trpc/tanstack-react-query": "^11.7.2",
|
|
132
132
|
"@trpc/server": "^11.7.2",
|
|
133
133
|
"@trpc/client": "^11.7.2",
|
|
134
|
-
next: "^16.
|
|
134
|
+
next: "^16.1.1",
|
|
135
135
|
convex: "^1.31.2",
|
|
136
136
|
"@convex-dev/react-query": "^0.1.0",
|
|
137
137
|
"@convex-dev/agent": "^0.3.2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-t-stack",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.2",
|
|
4
4
|
"description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"better-auth",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"prepublishOnly": "npm run build"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@better-t-stack/types": "^3.12.
|
|
70
|
+
"@better-t-stack/types": "^3.12.2",
|
|
71
71
|
"@clack/prompts": "^1.0.0-alpha.8",
|
|
72
72
|
"@orpc/server": "^1.13.0",
|
|
73
73
|
"consola": "^3.4.2",
|
|
@@ -59,7 +59,16 @@ export const env = createEnv({
|
|
|
59
59
|
},
|
|
60
60
|
runtimeEnv: (import.meta as any).env,
|
|
61
61
|
{{/if}}
|
|
62
|
-
{{else if (
|
|
62
|
+
{{else if (eq backend "self")}}
|
|
63
|
+
{{#if (includes frontend "next")}}
|
|
64
|
+
client: {},
|
|
65
|
+
runtimeEnv: {},
|
|
66
|
+
{{else}}
|
|
67
|
+
clientPrefix: "VITE_",
|
|
68
|
+
client: {},
|
|
69
|
+
runtimeEnv: (import.meta as any).env,
|
|
70
|
+
{{/if}}
|
|
71
|
+
{{else if (ne backend "none")}}
|
|
63
72
|
{{#if (includes frontend "next")}}
|
|
64
73
|
client: {
|
|
65
74
|
NEXT_PUBLIC_SERVER_URL: z.url(),
|