create-cloudflare 2.47.2 → 2.47.3
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 +2 -2
- package/package.json +4 -4
- package/templates/hello-world-assets-only/templates/public/index.html +1 -0
- package/templates/hello-world-assets-only/templates/wrangler.jsonc +1 -0
- package/templates/hello-world-durable-object-with-assets/js/public/index.html +1 -0
- package/templates/hello-world-durable-object-with-assets/js/wrangler.jsonc +1 -1
- package/templates/hello-world-durable-object-with-assets/py/public/index.html +1 -0
- package/templates/hello-world-durable-object-with-assets/py/wrangler.jsonc +1 -1
- package/templates/hello-world-durable-object-with-assets/ts/public/index.html +1 -0
- package/templates/hello-world-durable-object-with-assets/ts/wrangler.jsonc +1 -1
- package/templates/hello-world-with-assets/js/public/index.html +1 -0
- package/templates/hello-world-with-assets/js/wrangler.jsonc +1 -1
- package/templates/hello-world-with-assets/py/public/index.html +1 -0
- package/templates/hello-world-with-assets/py/wrangler.jsonc +1 -1
- package/templates/hello-world-with-assets/ts/public/index.html +1 -0
- package/templates/hello-world-with-assets/ts/wrangler.jsonc +1 -2
package/dist/cli.js
CHANGED
|
@@ -74560,7 +74560,7 @@ var Yargs = YargsFactory(esm_default);
|
|
|
74560
74560
|
var yargs_default = Yargs;
|
|
74561
74561
|
|
|
74562
74562
|
// package.json
|
|
74563
|
-
var version = "2.47.
|
|
74563
|
+
var version = "2.47.3";
|
|
74564
74564
|
|
|
74565
74565
|
// src/metrics.ts
|
|
74566
74566
|
var import_node_async_hooks = require("node:async_hooks");
|
|
@@ -78029,7 +78029,7 @@ var c3_default50 = config47;
|
|
|
78029
78029
|
var import_node_assert = __toESM(require("node:assert"));
|
|
78030
78030
|
|
|
78031
78031
|
// ../wrangler/package.json
|
|
78032
|
-
var version2 = "4.
|
|
78032
|
+
var version2 = "4.17.0";
|
|
78033
78033
|
|
|
78034
78034
|
// src/git.ts
|
|
78035
78035
|
var offerGit = async (ctx) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-cloudflare",
|
|
3
|
-
"version": "2.47.
|
|
3
|
+
"version": "2.47.3",
|
|
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.20250523.0",
|
|
34
34
|
"@iarna/toml": "^3.0.0",
|
|
35
35
|
"@types/command-exists": "^1.2.0",
|
|
36
36
|
"@types/cross-spawn": "^6.0.2",
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
"@cloudflare/cli": "1.1.1",
|
|
74
74
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
|
75
75
|
"@cloudflare/mock-npm-registry": "0.0.0",
|
|
76
|
-
"@cloudflare/vite-plugin": "1.
|
|
76
|
+
"@cloudflare/vite-plugin": "1.3.0",
|
|
77
77
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
78
|
-
"wrangler": "4.
|
|
78
|
+
"wrangler": "4.17.0"
|
|
79
79
|
},
|
|
80
80
|
"engines": {
|
|
81
81
|
"node": ">=18.14.1"
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Hello, World!</title>
|
|
7
|
+
<p>This page comes from a static asset stored at `public/index.html` as configured in `wrangler.jsonc`.</p>
|
|
7
8
|
</head>
|
|
8
9
|
<body>
|
|
9
10
|
<h1 id="heading"></h1>
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
</head>
|
|
8
8
|
<body>
|
|
9
9
|
<h1 id="heading"></h1>
|
|
10
|
+
<p>This page comes from a static asset stored at `public/index.html` as configured in `wrangler.jsonc`.</p>
|
|
10
11
|
<button id="button" type="button">Fetch a random UUID</button>
|
|
11
12
|
<output id="random" for="button"></output>
|
|
12
13
|
<script>
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
</head>
|
|
8
8
|
<body>
|
|
9
9
|
<h1 id="heading"></h1>
|
|
10
|
+
<p>This page comes from a static asset stored at `public/index.html` as configured in `wrangler.jsonc`.</p>
|
|
10
11
|
<button id="button" type="button">Fetch a random UUID</button>
|
|
11
12
|
<output id="random" for="button"></output>
|
|
12
13
|
<script>
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
</head>
|
|
8
8
|
<body>
|
|
9
9
|
<h1 id="heading"></h1>
|
|
10
|
+
<p>This page comes from a static asset stored at `public/index.html` as configured in `wrangler.jsonc`.</p>
|
|
10
11
|
<button id="button" type="button">Fetch a random UUID</button>
|
|
11
12
|
<output id="random" for="button"></output>
|
|
12
13
|
<script>
|
|
@@ -3,11 +3,10 @@
|
|
|
3
3
|
"main": "src/index.ts",
|
|
4
4
|
"compatibility_date": "<TBD>",
|
|
5
5
|
"compatibility_flags": [
|
|
6
|
-
"nodejs_compat",
|
|
7
6
|
"global_fetch_strictly_public"
|
|
8
7
|
],
|
|
9
8
|
"assets": {
|
|
10
|
-
|
|
9
|
+
// The path to the directory containing the `index.html` file to be served at `/`
|
|
11
10
|
"directory": "./public"
|
|
12
11
|
},
|
|
13
12
|
"observability": {
|