create-better-t-stack 3.2.2 → 3.2.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.js +1 -1
- package/dist/{src-8ESSxD4Y.js → src-BcBhk2Os.js} +4 -2
- package/package.json +4 -1
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -146,8 +146,7 @@ const dependencyVersionMap = {
|
|
|
146
146
|
"nitro-cloudflare-dev": "^0.2.2",
|
|
147
147
|
"@sveltejs/adapter-cloudflare": "^7.2.1",
|
|
148
148
|
"@cloudflare/workers-types": "^4.20250822.0",
|
|
149
|
-
alchemy: "^0.
|
|
150
|
-
nitropack: "^2.12.4",
|
|
149
|
+
alchemy: "^0.75.1",
|
|
151
150
|
dotenv: "^17.2.2",
|
|
152
151
|
tsdown: "^0.15.5",
|
|
153
152
|
zod: "^4.1.11",
|
|
@@ -2546,11 +2545,14 @@ async function setupOxlint(projectDir, packageManager) {
|
|
|
2546
2545
|
await fs.writeJson(packageJsonPath, packageJson, { spaces: 2 });
|
|
2547
2546
|
}
|
|
2548
2547
|
const oxlintInitCommand = getPackageExecutionCommand(packageManager, "oxlint@latest --init");
|
|
2548
|
+
const s = spinner();
|
|
2549
|
+
s.start("Initializing oxlint...");
|
|
2549
2550
|
await execa(oxlintInitCommand, {
|
|
2550
2551
|
cwd: projectDir,
|
|
2551
2552
|
env: { CI: "true" },
|
|
2552
2553
|
shell: true
|
|
2553
2554
|
});
|
|
2555
|
+
s.stop("oxlint initialized successfully!");
|
|
2554
2556
|
}
|
|
2555
2557
|
|
|
2556
2558
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-t-stack",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.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",
|
|
@@ -60,6 +60,9 @@
|
|
|
60
60
|
".": {
|
|
61
61
|
"types": "./dist/index.d.ts",
|
|
62
62
|
"import": "./dist/index.js"
|
|
63
|
+
},
|
|
64
|
+
"./cli": {
|
|
65
|
+
"import": "./dist/cli.js"
|
|
63
66
|
}
|
|
64
67
|
},
|
|
65
68
|
"dependencies": {
|