create-better-t-stack 3.22.3 → 3.23.1
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 +40 -3
- package/dist/{chunk-C8ucw2H5.mjs → chunk-BtN16TXe.mjs} +12 -21
- package/dist/cli.mjs +289 -5
- package/dist/index.d.mts +710 -3
- package/dist/index.mjs +2 -206
- package/dist/{command-handlers-Dvaw7W_l.mjs → src-COTG6r9y.mjs} +1483 -729
- package/dist/virtual.d.mts +2 -1
- package/dist/virtual.mjs +3 -3
- package/package.json +14 -13
package/dist/virtual.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import {
|
|
2
|
+
import { Result } from "better-result";
|
|
3
|
+
import { EMBEDDED_TEMPLATES, GeneratorError, GeneratorOptions, TEMPLATE_COUNT, VirtualDirectory, VirtualFile, VirtualFileSystem, VirtualFileTree, VirtualNode, generate } from "@better-t-stack/template-generator";
|
|
3
4
|
import { API, Addons, Auth, Backend, Database, DatabaseSetup, Examples, Frontend, ORM, PackageManager, Payments, ProjectConfig, Runtime, ServerDeploy, WebDeploy } from "@better-t-stack/types";
|
|
4
5
|
export { type API, type Addons, type Auth, type Backend, type Database, type DatabaseSetup, EMBEDDED_TEMPLATES, type Examples, type Frontend, GeneratorError, type GeneratorOptions, type ORM, type PackageManager, type Payments, type ProjectConfig, Result, type Runtime, type ServerDeploy, TEMPLATE_COUNT, type VirtualDirectory, type VirtualFile, VirtualFileSystem, type VirtualFileTree, type VirtualNode, type WebDeploy, generate };
|
package/dist/virtual.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
export { EMBEDDED_TEMPLATES, GeneratorError, Result, TEMPLATE_COUNT, VirtualFileSystem, generate };
|
|
2
|
+
import { Result } from "better-result";
|
|
3
|
+
import { EMBEDDED_TEMPLATES, GeneratorError, TEMPLATE_COUNT, VirtualFileSystem, generate } from "@better-t-stack/template-generator";
|
|
4
|
+
export { EMBEDDED_TEMPLATES, GeneratorError, Result, TEMPLATE_COUNT, VirtualFileSystem, generate };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-t-stack",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.23.1",
|
|
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",
|
|
@@ -70,33 +70,34 @@
|
|
|
70
70
|
"prepublishOnly": "npm run build"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@better-t-stack/template-generator": "^3.
|
|
74
|
-
"@better-t-stack/types": "^3.
|
|
75
|
-
"@clack/core": "^1.
|
|
76
|
-
"@clack/prompts": "^1.
|
|
77
|
-
"@
|
|
73
|
+
"@better-t-stack/template-generator": "^3.23.1",
|
|
74
|
+
"@better-t-stack/types": "^3.23.1",
|
|
75
|
+
"@clack/core": "^1.1.0",
|
|
76
|
+
"@clack/prompts": "^1.1.0",
|
|
77
|
+
"@modelcontextprotocol/sdk": "1.27.1",
|
|
78
|
+
"@orpc/server": "^1.13.6",
|
|
78
79
|
"better-result": "^2.7.0",
|
|
79
80
|
"consola": "^3.4.2",
|
|
80
81
|
"env-paths": "^4.0.0",
|
|
81
82
|
"execa": "^9.6.1",
|
|
82
|
-
"fs-extra": "^11.3.
|
|
83
|
+
"fs-extra": "^11.3.4",
|
|
83
84
|
"gradient-string": "^3.0.0",
|
|
84
85
|
"handlebars": "^4.7.8",
|
|
85
86
|
"jsonc-parser": "^3.3.1",
|
|
86
|
-
"oxfmt": "^0.
|
|
87
|
+
"oxfmt": "^0.36.0",
|
|
87
88
|
"picocolors": "^1.1.1",
|
|
88
89
|
"tinyglobby": "^0.2.15",
|
|
89
|
-
"trpc-cli": "^0.12.
|
|
90
|
+
"trpc-cli": "^0.12.4",
|
|
90
91
|
"ts-morph": "^27.0.2",
|
|
91
92
|
"yaml": "^2.8.2",
|
|
92
93
|
"zod": "^4.3.6"
|
|
93
94
|
},
|
|
94
95
|
"devDependencies": {
|
|
95
|
-
"@types/bun": "^1.3.
|
|
96
|
+
"@types/bun": "^1.3.10",
|
|
96
97
|
"@types/fs-extra": "^11.0.4",
|
|
97
|
-
"@types/node": "^25.
|
|
98
|
-
"publint": "^0.3.
|
|
99
|
-
"tsdown": "^0.
|
|
98
|
+
"@types/node": "^25.3.5",
|
|
99
|
+
"publint": "^0.3.18",
|
|
100
|
+
"tsdown": "^0.21.0",
|
|
100
101
|
"typescript": "^5.9.3"
|
|
101
102
|
}
|
|
102
103
|
}
|