create-better-t-stack 2.14.1 → 2.14.3

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/index.js CHANGED
@@ -46,8 +46,8 @@ const DEFAULT_CONFIG = {
46
46
  api: "trpc"
47
47
  };
48
48
  const dependencyVersionMap = {
49
- "better-auth": "^1.2.7",
50
- "@better-auth/expo": "^1.2.7",
49
+ "better-auth": "^1.2.8",
50
+ "@better-auth/expo": "^1.2.8",
51
51
  "drizzle-orm": "^0.38.4",
52
52
  "drizzle-kit": "^0.30.5",
53
53
  "@libsql/client": "^0.14.0",
@@ -3334,7 +3334,8 @@ async function trackProjectCreation(config) {
3334
3334
  flushAt: 1,
3335
3335
  flushInterval: 0,
3336
3336
  privacyMode: true,
3337
- disableGeoip: true
3337
+ disableGeoip: true,
3338
+ disabled: false
3338
3339
  });
3339
3340
  try {
3340
3341
  const sessionId = `cli_${crypto.randomUUID().replace(/-/g, "")}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "2.14.1",
3
+ "version": "2.14.3",
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",
@@ -12,15 +12,15 @@
12
12
  "resolveJsonModule": true,
13
13
  "isolatedModules": true,
14
14
  "jsx": "preserve",
15
+ {{#unless (or (eq backend "convex") (eq backend "none"))}}
16
+ "composite": true,
17
+ {{/unless}}
15
18
  "incremental": true,
16
19
  "plugins": [
17
20
  {
18
21
  "name": "next"
19
22
  }
20
23
  ],
21
- {#unless (or (eq backend "convex") (eq backend "none"))}}
22
- "composite": true,
23
- {{/unless}}
24
24
  "paths": {
25
25
  "@/*": ["./src/*"]
26
26
  }
@@ -9,37 +9,37 @@
9
9
  "typecheck": "react-router typegen && tsc"
10
10
  },
11
11
  "dependencies": {
12
- "@radix-ui/react-checkbox": "^1.1.4",
13
- "@radix-ui/react-dropdown-menu": "^2.1.6",
14
- "@radix-ui/react-label": "^2.1.2",
15
- "@radix-ui/react-slot": "^1.1.2",
16
- "@react-router/fs-routes": "^7.4.1",
17
- "@react-router/node": "^7.4.1",
18
- "@react-router/serve": "^7.4.1",
19
- "@tanstack/react-form": "^1.2.3",
12
+ "@radix-ui/react-checkbox": "^1.3.2",
13
+ "@radix-ui/react-dropdown-menu": "^2.1.15",
14
+ "@radix-ui/react-label": "^2.1.7",
15
+ "@radix-ui/react-slot": "^1.2.3",
16
+ "@react-router/fs-routes": "^7.6.1",
17
+ "@react-router/node": "^7.6.1",
18
+ "@react-router/serve": "^7.6.1",
19
+ "@tanstack/react-form": "^1.12.0",
20
20
  "class-variance-authority": "^0.7.1",
21
21
  "clsx": "^2.1.1",
22
- "isbot": "^5.1.17",
23
- "lucide-react": "^0.487.0",
22
+ "isbot": "^5.1.28",
23
+ "lucide-react": "^0.511.0",
24
24
  "next-themes": "^0.4.6",
25
- "react": "^19.0.0",
26
- "react-dom": "^19.0.0",
27
- "react-router": "^7.4.1",
25
+ "react": "^19.1.0",
26
+ "react-dom": "^19.1.0",
27
+ "react-router": "^7.6.1",
28
28
  "sonner": "^2.0.3",
29
- "tailwind-merge": "^3.1.0",
30
- "tw-animate-css": "^1.2.5",
31
- "zod": "^3.25.16"
29
+ "tailwind-merge": "^3.3.0",
30
+ "tw-animate-css": "^1.3.2",
31
+ "zod": "^3.25.42"
32
32
  },
33
33
  "devDependencies": {
34
- "@react-router/dev": "^7.4.1",
35
- "@tailwindcss/vite": "^4.0.0",
34
+ "@react-router/dev": "^7.6.1",
35
+ "@tailwindcss/vite": "^4.1.8",
36
36
  "@types/node": "^20",
37
- "@types/react": "^19.0.1",
38
- "@types/react-dom": "^19.0.1",
37
+ "@types/react": "^19.1.6",
38
+ "@types/react-dom": "^19.1.5",
39
39
  "react-router-devtools": "^1.1.0",
40
- "tailwindcss": "^4.0.0",
41
- "typescript": "^5.7.2",
42
- "vite": "^5.4.11",
40
+ "tailwindcss": "^4.1.8",
41
+ "typescript": "^5.8.3",
42
+ "vite": "^6.3.5",
43
43
  "vite-tsconfig-paths": "^5.1.4"
44
44
  }
45
45
  }