create-better-t-stack 2.28.2 → 2.28.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/README.md
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations
|
|
4
4
|
|
|
5
|
-

|
|
6
|
-
|
|
7
5
|
## Sponsors
|
|
8
6
|
|
|
9
7
|
<p align="center">
|
|
10
8
|
<img src="https://sponsors.amanv.dev/sponsors.png" alt="Sponsors">
|
|
11
9
|
</p>
|
|
12
10
|
|
|
11
|
+

|
|
12
|
+
|
|
13
13
|
## Quick Start
|
|
14
14
|
|
|
15
15
|
Run without installing globally:
|
package/dist/index.js
CHANGED
|
@@ -2578,9 +2578,9 @@ async function handleExtras(projectDir, context) {
|
|
|
2578
2578
|
if (await fs.pathExists(pnpmWorkspaceSrc)) await fs.copy(pnpmWorkspaceSrc, pnpmWorkspaceDest);
|
|
2579
2579
|
}
|
|
2580
2580
|
if (context.packageManager === "bun") {
|
|
2581
|
-
const bunfigSrc = path.join(extrasDir, "bunfig.toml");
|
|
2581
|
+
const bunfigSrc = path.join(extrasDir, "bunfig.toml.hbs");
|
|
2582
2582
|
const bunfigDest = path.join(projectDir, "bunfig.toml");
|
|
2583
|
-
if (await fs.pathExists(bunfigSrc)) await
|
|
2583
|
+
if (await fs.pathExists(bunfigSrc)) await processTemplate(bunfigSrc, bunfigDest, context);
|
|
2584
2584
|
}
|
|
2585
2585
|
if (context.packageManager === "pnpm" && (hasNative || context.frontend.includes("nuxt"))) {
|
|
2586
2586
|
const npmrcTemplateSrc = path.join(extrasDir, "_npmrc.hbs");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-t-stack",
|
|
3
|
-
"version": "2.28.
|
|
3
|
+
"version": "2.28.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",
|
|
@@ -10,15 +10,16 @@
|
|
|
10
10
|
"postinstall": "nuxt prepare"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@nuxt/ui": "3.
|
|
13
|
+
"@nuxt/ui": "3.3.0",
|
|
14
14
|
"@tanstack/vue-query": "^5.83.0",
|
|
15
|
-
"nuxt": "^4.0.
|
|
16
|
-
"typescript": "^5.
|
|
17
|
-
"vue": "^3.5.
|
|
15
|
+
"nuxt": "^4.0.2",
|
|
16
|
+
"typescript": "^5.8.3",
|
|
17
|
+
"vue": "^3.5.18",
|
|
18
18
|
"vue-router": "^4.5.1",
|
|
19
19
|
"zod": "^4.0.2"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
+
"tailwindcss": "^4.1.11",
|
|
22
23
|
"@tanstack/vue-query-devtools": "^5.83.0",
|
|
23
24
|
"@iconify-json/lucide": "^1.2.57"
|
|
24
25
|
}
|
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
// https://nuxt.com/docs/guide/concepts/typescript
|
|
3
|
-
"
|
|
3
|
+
"references": [
|
|
4
|
+
{
|
|
5
|
+
"path": "./.nuxt/tsconfig.app.json"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"path": "./.nuxt/tsconfig.server.json"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"path": "./.nuxt/tsconfig.shared.json"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"path": "./.nuxt/tsconfig.node.json"
|
|
15
|
+
}
|
|
4
16
|
{{#unless (or (eq backend "convex") (eq backend "none"))}}
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
17
|
+
,
|
|
18
|
+
{
|
|
19
|
+
"path": "../server"
|
|
20
|
+
}
|
|
8
21
|
{{/unless}}
|
|
22
|
+
]
|
|
9
23
|
}
|