wrangler 3.80.4 → 3.81.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 +7 -7
- package/wrangler-dist/cli.d.ts +2 -1
- package/wrangler-dist/cli.js +3522 -3033
- package/wrangler-dist/cli.js.map +7 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.81.0",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -62,15 +62,15 @@
|
|
62
62
|
"selfsigned": "^2.0.1",
|
63
63
|
"source-map": "^0.6.1",
|
64
64
|
"unenv": "npm:unenv-nightly@2.0.0-20241009-125958-e8ea22f",
|
65
|
-
"workerd": "1.
|
65
|
+
"workerd": "1.20241011.1",
|
66
66
|
"xxhash-wasm": "^1.0.1",
|
67
67
|
"@cloudflare/kv-asset-handler": "0.3.4",
|
68
68
|
"@cloudflare/workers-shared": "0.6.0",
|
69
|
-
"miniflare": "3.
|
69
|
+
"miniflare": "3.20241011.0"
|
70
70
|
},
|
71
71
|
"devDependencies": {
|
72
|
-
"@cloudflare/types": "
|
73
|
-
"@cloudflare/workers-types": "^4.
|
72
|
+
"@cloudflare/types": "6.18.4",
|
73
|
+
"@cloudflare/workers-types": "^4.20241011.0",
|
74
74
|
"@cspotcode/source-map-support": "0.8.1",
|
75
75
|
"@iarna/toml": "^3.0.0",
|
76
76
|
"@microsoft/api-extractor": "^7.47.0",
|
@@ -153,11 +153,11 @@
|
|
153
153
|
"yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
|
154
154
|
"@cloudflare/cli": "1.1.1",
|
155
155
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
156
|
-
"@cloudflare/pages-shared": "^0.11.
|
156
|
+
"@cloudflare/pages-shared": "^0.11.65",
|
157
157
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
158
158
|
},
|
159
159
|
"peerDependencies": {
|
160
|
-
"@cloudflare/workers-types": "^4.
|
160
|
+
"@cloudflare/workers-types": "^4.20241011.0"
|
161
161
|
},
|
162
162
|
"peerDependenciesMeta": {
|
163
163
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -25967,7 +25967,7 @@ declare interface StartDevWorkerInput {
|
|
25967
25967
|
/** Whether the worker runs on the edge or locally. */
|
25968
25968
|
remote?: boolean;
|
25969
25969
|
/** Cloudflare Account credentials. Can be provided upfront or as a function which will be called only when required. */
|
25970
|
-
auth?: AsyncHook<CfAccount>;
|
25970
|
+
auth?: AsyncHook<CfAccount, [Pick<Config, "account_id">]>;
|
25971
25971
|
/** Whether local storage (KV, Durable Objects, R2, D1, etc) is persisted. You can also specify the directory to persist data to. */
|
25972
25972
|
persist?: string;
|
25973
25973
|
/** Controls which logs are logged 🤙. */
|
@@ -26024,6 +26024,7 @@ declare type StartDevWorkerOptions = Omit<StartDevWorkerInput, "assets"> & {
|
|
26024
26024
|
};
|
26025
26025
|
dev: StartDevWorkerInput["dev"] & {
|
26026
26026
|
persist: string;
|
26027
|
+
auth?: AsyncHook<CfAccount>;
|
26027
26028
|
};
|
26028
26029
|
entrypoint: string;
|
26029
26030
|
assets?: AssetsOptions;
|