wrangler 4.46.0 → 4.47.0
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/package.json +11 -10
- package/wrangler-dist/cli.d.ts +2 -0
- package/wrangler-dist/cli.js +421 -143
- package/wrangler-dist/metafile-cjs.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.47.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -54,15 +54,15 @@
|
|
|
54
54
|
"esbuild": "0.25.4",
|
|
55
55
|
"path-to-regexp": "6.3.0",
|
|
56
56
|
"unenv": "2.0.0-rc.24",
|
|
57
|
-
"workerd": "1.
|
|
57
|
+
"workerd": "1.20251109.0",
|
|
58
58
|
"@cloudflare/kv-asset-handler": "0.4.0",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
59
|
+
"@cloudflare/unenv-preset": "2.7.10",
|
|
60
|
+
"miniflare": "4.20251109.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@aws-sdk/client-s3": "^3.721.0",
|
|
64
64
|
"@cloudflare/types": "6.18.4",
|
|
65
|
-
"@cloudflare/workers-types": "^4.
|
|
65
|
+
"@cloudflare/workers-types": "^4.20251109.0",
|
|
66
66
|
"@cspotcode/source-map-support": "0.8.1",
|
|
67
67
|
"@iarna/toml": "^3.0.0",
|
|
68
68
|
"@netlify/build-info": "^10.0.9",
|
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
"devtools-protocol": "^0.0.1182435",
|
|
102
102
|
"dotenv": "^16.3.1",
|
|
103
103
|
"dotenv-expand": "^12.0.2",
|
|
104
|
+
"eslint": "^9.39.1",
|
|
104
105
|
"execa": "^6.1.0",
|
|
105
106
|
"find-up": "^6.3.0",
|
|
106
107
|
"get-port": "^7.0.0",
|
|
@@ -148,14 +149,14 @@
|
|
|
148
149
|
"@cloudflare/cli": "1.1.3",
|
|
149
150
|
"@cloudflare/containers-shared": "0.3.0",
|
|
150
151
|
"@cloudflare/eslint-config-shared": "1.1.0",
|
|
151
|
-
"@cloudflare/
|
|
152
|
-
"@cloudflare/
|
|
152
|
+
"@cloudflare/pages-shared": "^0.13.84",
|
|
153
|
+
"@cloudflare/workers-utils": "0.0.2",
|
|
153
154
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
154
|
-
"@cloudflare/
|
|
155
|
-
"@cloudflare/
|
|
155
|
+
"@cloudflare/workers-shared": "0.18.8",
|
|
156
|
+
"@cloudflare/workflows-shared": "0.3.8"
|
|
156
157
|
},
|
|
157
158
|
"peerDependencies": {
|
|
158
|
-
"@cloudflare/workers-types": "^4.
|
|
159
|
+
"@cloudflare/workers-types": "^4.20251109.0"
|
|
159
160
|
},
|
|
160
161
|
"peerDependenciesMeta": {
|
|
161
162
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -1146,6 +1146,8 @@ declare abstract class Framework {
|
|
|
1146
1146
|
}
|
|
1147
1147
|
|
|
1148
1148
|
type AutoConfigDetails = {
|
|
1149
|
+
/** The name of the worker */
|
|
1150
|
+
workerName: string;
|
|
1149
1151
|
/** The path to the project (defaults to cwd) */
|
|
1150
1152
|
projectPath: string;
|
|
1151
1153
|
/** The content of the project's package.json file (if any) */
|