create-better-t-stack 2.25.6 → 2.25.8
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
CHANGED
|
@@ -82,10 +82,10 @@ You can disable telemetry by setting the `BTS_TELEMETRY` environment variable:
|
|
|
82
82
|
|
|
83
83
|
```bash
|
|
84
84
|
# Disable telemetry for a single run
|
|
85
|
-
|
|
85
|
+
BTS_TELEMETRY_DISABLED=1 npx create-better-t-stack my-app
|
|
86
86
|
|
|
87
87
|
# Disable telemetry globally in your shell profile (.bashrc, .zshrc, etc.)
|
|
88
|
-
export
|
|
88
|
+
export BTS_TELEMETRY_DISABLED=1
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
### Development
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-t-stack",
|
|
3
|
-
"version": "2.25.
|
|
3
|
+
"version": "2.25.8",
|
|
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",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "src/index.ts",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "
|
|
6
|
+
"build": "tsdown",
|
|
7
7
|
"check-types": "tsc --noEmit",
|
|
8
8
|
"compile": "bun build --compile --minify --sourcemap --bytecode ./src/index.ts --outfile server"
|
|
9
9
|
},
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
{{/if}}
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"
|
|
25
|
+
"tsdown": "^0.12.9",
|
|
26
26
|
"typescript": "^5.8.2"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -23,11 +23,23 @@
|
|
|
23
23
|
"@/*": ["./src/*"]
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
|
-
"include": [
|
|
27
|
-
|
|
26
|
+
"include": [
|
|
27
|
+
"./next-env.d.ts",
|
|
28
|
+
"./**/*.ts",
|
|
29
|
+
"./**/*.tsx",
|
|
30
|
+
"./.next/types/**/*.ts",
|
|
31
|
+
{{#if (eq runtime "workers")}}
|
|
32
|
+
"../server/worker-configuration.d.ts"
|
|
33
|
+
{{/if}}
|
|
34
|
+
],
|
|
35
|
+
"exclude": [
|
|
36
|
+
"./node_modules"
|
|
37
|
+
],
|
|
28
38
|
{{#unless (or (eq backend "convex") (eq backend "none"))}}
|
|
29
|
-
"references": [
|
|
30
|
-
|
|
31
|
-
|
|
39
|
+
"references": [
|
|
40
|
+
{
|
|
41
|
+
"path": "../server"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
32
44
|
{{/unless}}
|
|
33
45
|
}
|