create-cloudflare 2.57.0 → 2.57.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
|
@@ -77302,7 +77302,7 @@ var Yargs = YargsFactory(esm_default);
|
|
|
77302
77302
|
var yargs_default = Yargs;
|
|
77303
77303
|
|
|
77304
77304
|
// package.json
|
|
77305
|
-
var version = "2.57.
|
|
77305
|
+
var version = "2.57.1";
|
|
77306
77306
|
|
|
77307
77307
|
// src/metrics.ts
|
|
77308
77308
|
var import_node_async_hooks = require("node:async_hooks");
|
|
@@ -80608,9 +80608,17 @@ var config31 = {
|
|
|
80608
80608
|
platform: "workers",
|
|
80609
80609
|
frameworkCli: "create-react-router",
|
|
80610
80610
|
displayName: "React Router (formerly Remix)",
|
|
80611
|
+
copyFiles: {
|
|
80612
|
+
path: "./ts"
|
|
80613
|
+
},
|
|
80611
80614
|
generate: generate17,
|
|
80612
|
-
// configure,
|
|
80613
80615
|
transformPackageJson: async () => ({
|
|
80616
|
+
dependencies: {
|
|
80617
|
+
"react-router": "^7.10.0"
|
|
80618
|
+
},
|
|
80619
|
+
devDependencies: {
|
|
80620
|
+
"@react-router/dev": "^7.10.0"
|
|
80621
|
+
},
|
|
80614
80622
|
scripts: {
|
|
80615
80623
|
deploy: `${npm12} run build && wrangler deploy`,
|
|
80616
80624
|
preview: `${npm12} run build && vite preview`,
|
|
@@ -81392,7 +81400,7 @@ var c3_default48 = config45;
|
|
|
81392
81400
|
var import_node_assert4 = __toESM(require("node:assert"));
|
|
81393
81401
|
|
|
81394
81402
|
// ../wrangler/package.json
|
|
81395
|
-
var version2 = "4.52.
|
|
81403
|
+
var version2 = "4.52.1";
|
|
81396
81404
|
|
|
81397
81405
|
// src/git.ts
|
|
81398
81406
|
var offerGit = async (ctx) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-cloudflare",
|
|
3
|
-
"version": "2.57.
|
|
3
|
+
"version": "2.57.1",
|
|
4
4
|
"description": "A CLI for creating and deploying new applications to Cloudflare.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloudflare",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@babel/parser": "^7.21.3",
|
|
31
31
|
"@babel/types": "^7.21.4",
|
|
32
32
|
"@clack/prompts": "^0.6.3",
|
|
33
|
-
"@cloudflare/workers-types": "^4.
|
|
33
|
+
"@cloudflare/workers-types": "^4.20251202.0",
|
|
34
34
|
"@types/command-exists": "^1.2.0",
|
|
35
35
|
"@types/cross-spawn": "^6.0.2",
|
|
36
36
|
"@types/deepmerge": "^2.2.0",
|
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
"@cloudflare/cli": "1.1.4",
|
|
78
78
|
"@cloudflare/eslint-config-shared": "1.1.0",
|
|
79
79
|
"@cloudflare/mock-npm-registry": "0.0.0",
|
|
80
|
-
"@cloudflare/vite-plugin": "1.16.
|
|
80
|
+
"@cloudflare/vite-plugin": "1.16.1",
|
|
81
81
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
82
|
-
"wrangler": "4.52.
|
|
82
|
+
"wrangler": "4.52.1"
|
|
83
83
|
},
|
|
84
84
|
"engines": {
|
|
85
85
|
"node": ">=18.14.1"
|
|
@@ -26,9 +26,17 @@ const config: TemplateConfig = {
|
|
|
26
26
|
platform: "workers",
|
|
27
27
|
frameworkCli: "create-react-router",
|
|
28
28
|
displayName: "React Router (formerly Remix)",
|
|
29
|
+
copyFiles: {
|
|
30
|
+
path: "./ts",
|
|
31
|
+
},
|
|
29
32
|
generate,
|
|
30
|
-
// configure,
|
|
31
33
|
transformPackageJson: async () => ({
|
|
34
|
+
dependencies: {
|
|
35
|
+
"react-router": "^7.10.0",
|
|
36
|
+
},
|
|
37
|
+
devDependencies: {
|
|
38
|
+
"@react-router/dev": "^7.10.0",
|
|
39
|
+
},
|
|
32
40
|
scripts: {
|
|
33
41
|
deploy: `${npm} run build && wrangler deploy`,
|
|
34
42
|
preview: `${npm} run build && vite preview`,
|