create-better-t-stack 2.43.0 → 2.43.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/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -3092,7 +3092,8 @@ async function setupNextAlchemyDeploy(projectDir, _packageManager, options) {
|
|
|
3092
3092
|
devDependencies: [
|
|
3093
3093
|
"alchemy",
|
|
3094
3094
|
"dotenv",
|
|
3095
|
-
"wrangler"
|
|
3095
|
+
"wrangler",
|
|
3096
|
+
"@cloudflare/workers-types"
|
|
3096
3097
|
],
|
|
3097
3098
|
projectDir: webAppDir
|
|
3098
3099
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-t-stack",
|
|
3
|
-
"version": "2.43.
|
|
3
|
+
"version": "2.43.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
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,16 +21,22 @@
|
|
|
21
21
|
],
|
|
22
22
|
"paths": {
|
|
23
23
|
"@/*": ["./src/*"]
|
|
24
|
-
}
|
|
24
|
+
}{{#if (or (eq serverDeploy "alchemy") (eq webDeploy "alchemy"))}},
|
|
25
|
+
"types": [
|
|
26
|
+
"@cloudflare/workers-types"
|
|
27
|
+
]{{/if}}
|
|
25
28
|
},
|
|
26
29
|
"include": [
|
|
30
|
+
{{#if (eq serverDeploy "alchemy")}}
|
|
31
|
+
"../server/env.d.ts",
|
|
32
|
+
{{/if}}
|
|
33
|
+
{{#if (eq serverDeploy "wrangler")}}
|
|
34
|
+
"../server/worker-configuration.d.ts",
|
|
35
|
+
{{/if}}
|
|
27
36
|
"./next-env.d.ts",
|
|
28
37
|
"./**/*.ts",
|
|
29
38
|
"./**/*.tsx",
|
|
30
|
-
"./.next/types/**/*.ts"
|
|
31
|
-
{{#if (eq runtime "workers")}}
|
|
32
|
-
"../server/worker-configuration.d.ts"
|
|
33
|
-
{{/if}}
|
|
39
|
+
"./.next/types/**/*.ts"
|
|
34
40
|
],
|
|
35
41
|
"exclude": [
|
|
36
42
|
"./node_modules"
|