create-cloudflare 2.37.5 → 2.37.6

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
@@ -73294,7 +73294,7 @@ var Yargs = YargsFactory(esm_default);
73294
73294
  var yargs_default = Yargs;
73295
73295
 
73296
73296
  // package.json
73297
- var version = "2.37.5";
73297
+ var version = "2.37.6";
73298
73298
 
73299
73299
  // src/metrics.ts
73300
73300
  var import_node_async_hooks = require("node:async_hooks");
@@ -75362,17 +75362,17 @@ var package_default = {
75362
75362
  dependencies: {
75363
75363
  "create-astro": "4.11.0",
75364
75364
  "create-analog": "1.8.1",
75365
- "@angular/create": "19.1.2",
75365
+ "@angular/create": "19.1.6",
75366
75366
  "create-docusaurus": "3.7.0",
75367
75367
  "create-hono": "0.15.3",
75368
- "create-next-app": "15.1.5",
75368
+ "create-next-app": "15.1.6",
75369
75369
  "create-qwik": "1.12.0",
75370
75370
  "create-vite": "6.1.1",
75371
75371
  "create-remix": "2.15.3",
75372
75372
  "create-solid": "0.5.14",
75373
- "create-vue": "3.13.0",
75373
+ "create-vue": "3.14.0",
75374
75374
  gatsby: "5.14.1",
75375
- sv: "0.6.13",
75375
+ sv: "0.6.16",
75376
75376
  nuxi: "3.21.1"
75377
75377
  }
75378
75378
  };
@@ -76832,12 +76832,12 @@ var updateNextConfig2 = (usesTs) => {
76832
76832
  const configContent = readFile(configFile);
76833
76833
  const updatedConfigFile = `import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev';
76834
76834
 
76835
- // Here we use the @cloudflare/next-on-pages next-dev module to allow us to use bindings during local development
76836
- // (when running the application with \`next dev\`), for more information see:
76835
+ // Here we use the @cloudflare/next-on-pages next-dev module to allow us to
76836
+ // use bindings during local development (when running the application with
76837
+ // \`next dev\`). This function is only necessary during development and
76838
+ // has no impact outside of that. For more information see:
76837
76839
  // https://github.com/cloudflare/next-on-pages/blob/main/internal-packages/next-dev/README.md
76838
- if (process.env.NODE_ENV === 'development') {
76839
- await setupDevPlatform();
76840
- }
76840
+ setupDevPlatform().catch(console.error);
76841
76841
 
76842
76842
  `.replace(/\n\t*/g, "\n") + configContent;
76843
76843
  writeFile2(configFile, updatedConfigFile);
@@ -77736,7 +77736,7 @@ var config26 = {
77736
77736
  var c3_default36 = config26;
77737
77737
 
77738
77738
  // ../wrangler/package.json
77739
- var version2 = "3.107.3";
77739
+ var version2 = "3.108.0";
77740
77740
 
77741
77741
  // src/git.ts
77742
77742
  var offerGit = async (ctx) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cloudflare",
3
- "version": "2.37.5",
3
+ "version": "2.37.6",
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.20250129.0",
33
+ "@cloudflare/workers-types": "^4.20250204.0",
34
34
  "@iarna/toml": "^3.0.0",
35
35
  "@types/command-exists": "^1.2.0",
36
36
  "@types/cross-spawn": "^6.0.2",
@@ -69,10 +69,11 @@
69
69
  "wrap-ansi": "^9.0.0",
70
70
  "xdg-app-paths": "^8.3.0",
71
71
  "yargs": "^17.7.2",
72
- "@cloudflare/workers-tsconfig": "0.0.0",
73
72
  "@cloudflare/cli": "1.1.1",
73
+ "@cloudflare/mock-npm-registry": "0.0.0",
74
+ "@cloudflare/workers-tsconfig": "0.0.0",
74
75
  "@cloudflare/eslint-config-worker": "1.1.0",
75
- "wrangler": "3.107.3"
76
+ "wrangler": "3.108.0"
76
77
  },
77
78
  "engines": {
78
79
  "node": ">=18.14.1"
@@ -11,6 +11,6 @@
11
11
  "devDependencies": {
12
12
  "@cloudflare/vitest-pool-workers": "^0.6.4",
13
13
  "wrangler": "^3.101.0",
14
- "vitest": "2.1.8"
14
+ "vitest": "~2.1.9"
15
15
  }
16
16
  }
@@ -12,7 +12,7 @@
12
12
  "devDependencies": {
13
13
  "@cloudflare/vitest-pool-workers": "^0.6.4",
14
14
  "typescript": "^5.5.2",
15
- "vitest": "2.1.8",
15
+ "vitest": "~2.1.9",
16
16
  "wrangler": "^3.101.0"
17
17
  }
18
18
  }
@@ -42,12 +42,12 @@ const updateNextConfig = (usesTs: boolean) => {
42
42
  const updatedConfigFile =
43
43
  `import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev';
44
44
 
45
- // Here we use the @cloudflare/next-on-pages next-dev module to allow us to use bindings during local development
46
- // (when running the application with \`next dev\`), for more information see:
45
+ // Here we use the @cloudflare/next-on-pages next-dev module to allow us to
46
+ // use bindings during local development (when running the application with
47
+ // \`next dev\`). This function is only necessary during development and
48
+ // has no impact outside of that. For more information see:
47
49
  // https://github.com/cloudflare/next-on-pages/blob/main/internal-packages/next-dev/README.md
48
- if (process.env.NODE_ENV === 'development') {
49
- await setupDevPlatform();
50
- }
50
+ setupDevPlatform().catch(console.error);
51
51
 
52
52
  `.replace(/\n\t*/g, "\n") + configContent;
53
53
 
@@ -11,6 +11,6 @@
11
11
  "devDependencies": {
12
12
  "@cloudflare/vitest-pool-workers": "^0.6.4",
13
13
  "wrangler": "^3.101.0",
14
- "vitest": "2.1.8"
14
+ "vitest": "~2.1.9"
15
15
  }
16
16
  }
@@ -12,7 +12,7 @@
12
12
  "devDependencies": {
13
13
  "@cloudflare/vitest-pool-workers": "^0.6.4",
14
14
  "typescript": "^5.5.2",
15
- "vitest": "2.1.8",
15
+ "vitest": "~2.1.9",
16
16
  "wrangler": "^3.101.0"
17
17
  }
18
18
  }