wrangler 3.78.9 → 3.78.11
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 +8 -8
- package/wrangler-dist/cli.d.ts +3 -12
- package/wrangler-dist/cli.js +133 -130
- package/wrangler-dist/cli.js.map +4 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "3.78.
|
3
|
+
"version": "3.78.11",
|
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-20240919-125358-9a64854",
|
65
|
-
"workerd": "1.
|
65
|
+
"workerd": "1.20240925.0",
|
66
66
|
"xxhash-wasm": "^1.0.1",
|
67
67
|
"@cloudflare/kv-asset-handler": "0.3.4",
|
68
|
-
"
|
69
|
-
"
|
68
|
+
"miniflare": "3.20240925.0",
|
69
|
+
"@cloudflare/workers-shared": "0.5.4"
|
70
70
|
},
|
71
71
|
"devDependencies": {
|
72
72
|
"@cloudflare/types": "^6.18.4",
|
73
|
-
"@cloudflare/workers-types": "^4.
|
73
|
+
"@cloudflare/workers-types": "^4.20240925.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",
|
@@ -151,13 +151,13 @@
|
|
151
151
|
"xdg-app-paths": "^8.3.0",
|
152
152
|
"yargs": "^17.7.2",
|
153
153
|
"yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
|
154
|
-
"@cloudflare/eslint-config-worker": "1.1.0",
|
155
154
|
"@cloudflare/cli": "1.1.1",
|
156
|
-
"@cloudflare/pages-shared": "^0.11.
|
155
|
+
"@cloudflare/pages-shared": "^0.11.62",
|
156
|
+
"@cloudflare/eslint-config-worker": "1.1.0",
|
157
157
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
158
158
|
},
|
159
159
|
"peerDependencies": {
|
160
|
-
"@cloudflare/workers-types": "^4.
|
160
|
+
"@cloudflare/workers-types": "^4.20240925.0"
|
161
161
|
},
|
162
162
|
"peerDependenciesMeta": {
|
163
163
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -16,6 +16,7 @@ import { Miniflare } from 'miniflare';
|
|
16
16
|
import type { MiniflareOptions } from 'miniflare';
|
17
17
|
import type { ModuleRule } from 'miniflare';
|
18
18
|
import { Mutex } from 'miniflare';
|
19
|
+
import type { NodeJSCompatMode } from 'miniflare';
|
19
20
|
import { Readable } from 'stream';
|
20
21
|
import { ReadableStream } from 'stream/web';
|
21
22
|
import type { Request as Request_2 } from 'miniflare';
|
@@ -996,13 +997,13 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
|
|
996
997
|
type: string;
|
997
998
|
};
|
998
999
|
latest_stage: {
|
999
|
-
name: "
|
1000
|
+
name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
|
1000
1001
|
status: "active" | "idle" | "canceled" | "success" | "failure" | "skipped";
|
1001
1002
|
started_on: string | null;
|
1002
1003
|
ended_on: string | null;
|
1003
1004
|
};
|
1004
1005
|
stages: {
|
1005
|
-
name: "
|
1006
|
+
name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
|
1006
1007
|
status: "active" | "idle" | "canceled" | "success" | "failure" | "skipped";
|
1007
1008
|
started_on: string | null;
|
1008
1009
|
ended_on: string | null;
|
@@ -2883,16 +2884,6 @@ declare interface MultiCacheQueryOptions extends CacheQueryOptions {
|
|
2883
2884
|
cacheName?: string
|
2884
2885
|
}
|
2885
2886
|
|
2886
|
-
/**
|
2887
|
-
* Wrangler can provide Node.js compatibility in a number of different modes:
|
2888
|
-
* - "legacy" - this mode adds compile-time polyfills that are not well maintained and cannot work with workerd runtime builtins.
|
2889
|
-
* - "als": this mode tells the workerd runtime to enable only the Async Local Storage builtin library (accessible via `node:async_hooks`).
|
2890
|
-
* - "v1" - this mode tells the workerd runtime to enable some Node.js builtin libraries (accessible only via `node:...` imports) but no globals.
|
2891
|
-
* - "v2" - this mode tells the workerd runtime to enable more Node.js builtin libraries (accessible both with and without the `node:` prefix)
|
2892
|
-
* and also some Node.js globals such as `Buffer`; it also turns on additional compile-time polyfills for those that are not provided by the runtime.
|
2893
|
-
*/
|
2894
|
-
declare type NodeJSCompatMode = "legacy" | "als" | "v1" | "v2" | null;
|
2895
|
-
|
2896
2887
|
declare interface Observability {
|
2897
2888
|
/** If observability is enabled for this Worker */
|
2898
2889
|
enabled: boolean;
|