create-better-t-stack 2.47.3 → 2.47.4
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.js +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/{src-BKSKHS0R.js → src-OrMpj_ew.js} +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -21,10 +21,10 @@ declare const ORMSchema: z.ZodEnum<{
|
|
|
21
21
|
type ORM = z.infer<typeof ORMSchema>;
|
|
22
22
|
declare const BackendSchema: z.ZodEnum<{
|
|
23
23
|
none: "none";
|
|
24
|
+
next: "next";
|
|
24
25
|
hono: "hono";
|
|
25
26
|
express: "express";
|
|
26
27
|
fastify: "fastify";
|
|
27
|
-
next: "next";
|
|
28
28
|
elysia: "elysia";
|
|
29
29
|
convex: "convex";
|
|
30
30
|
}>;
|
|
@@ -38,10 +38,10 @@ declare const RuntimeSchema: z.ZodEnum<{
|
|
|
38
38
|
type Runtime = z.infer<typeof RuntimeSchema>;
|
|
39
39
|
declare const FrontendSchema: z.ZodEnum<{
|
|
40
40
|
none: "none";
|
|
41
|
-
next: "next";
|
|
42
41
|
"tanstack-router": "tanstack-router";
|
|
43
42
|
"react-router": "react-router";
|
|
44
43
|
"tanstack-start": "tanstack-start";
|
|
44
|
+
next: "next";
|
|
45
45
|
nuxt: "nuxt";
|
|
46
46
|
"native-nativewind": "native-nativewind";
|
|
47
47
|
"native-unistyles": "native-unistyles";
|
|
@@ -70,9 +70,9 @@ declare const ExamplesSchema: z.ZodEnum<{
|
|
|
70
70
|
}>;
|
|
71
71
|
type Examples = z.infer<typeof ExamplesSchema>;
|
|
72
72
|
declare const PackageManagerSchema: z.ZodEnum<{
|
|
73
|
-
bun: "bun";
|
|
74
73
|
npm: "npm";
|
|
75
74
|
pnpm: "pnpm";
|
|
75
|
+
bun: "bun";
|
|
76
76
|
}>;
|
|
77
77
|
type PackageManager = z.infer<typeof PackageManagerSchema>;
|
|
78
78
|
declare const DatabaseSetupSchema: z.ZodEnum<{
|
package/dist/index.js
CHANGED
|
@@ -60,8 +60,8 @@ function getDefaultConfig() {
|
|
|
60
60
|
}
|
|
61
61
|
const DEFAULT_CONFIG = getDefaultConfig();
|
|
62
62
|
const dependencyVersionMap = {
|
|
63
|
-
"better-auth": "^1.3.
|
|
64
|
-
"@better-auth/expo": "^1.3.
|
|
63
|
+
"better-auth": "^1.3.13",
|
|
64
|
+
"@better-auth/expo": "^1.3.13",
|
|
65
65
|
"@clerk/nextjs": "^6.31.5",
|
|
66
66
|
"@clerk/clerk-react": "^5.45.0",
|
|
67
67
|
"@clerk/tanstack-react-start": "^0.23.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-t-stack",
|
|
3
|
-
"version": "2.47.
|
|
3
|
+
"version": "2.47.4",
|
|
4
4
|
"description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|