wrangler 3.22.4 → 3.23.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 -5
- package/wrangler-dist/cli.d.ts +18 -0
- package/wrangler-dist/cli.js +15757 -9673
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.23.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -84,7 +84,6 @@
|
|
|
84
84
|
},
|
|
85
85
|
"dependencies": {
|
|
86
86
|
"@cloudflare/kv-asset-handler": "^0.2.0",
|
|
87
|
-
"@cspotcode/source-map-support": "0.8.1",
|
|
88
87
|
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
|
|
89
88
|
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
|
|
90
89
|
"blake3-wasm": "^2.1.5",
|
|
@@ -92,17 +91,19 @@
|
|
|
92
91
|
"esbuild": "0.17.19",
|
|
93
92
|
"nanoid": "^3.3.3",
|
|
94
93
|
"path-to-regexp": "^6.2.0",
|
|
94
|
+
"resolve": "^1.22.8",
|
|
95
95
|
"resolve.exports": "^2.0.2",
|
|
96
96
|
"selfsigned": "^2.0.1",
|
|
97
97
|
"source-map": "0.6.1",
|
|
98
98
|
"xxhash-wasm": "^1.0.1",
|
|
99
|
-
"miniflare": "3.20231218.
|
|
99
|
+
"miniflare": "3.20231218.2"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
102
|
"@cloudflare/ai": "^1.0.35",
|
|
103
103
|
"@cloudflare/eslint-config-worker": "*",
|
|
104
104
|
"@cloudflare/types": "^6.18.4",
|
|
105
105
|
"@cloudflare/workers-types": "^4.20230914.0",
|
|
106
|
+
"@cspotcode/source-map-support": "0.8.1",
|
|
106
107
|
"@iarna/toml": "^3.0.0",
|
|
107
108
|
"@microsoft/api-extractor": "^7.28.3",
|
|
108
109
|
"@sentry/node": "^7.86.0",
|
|
@@ -120,6 +121,7 @@
|
|
|
120
121
|
"@types/minimatch": "^5.1.2",
|
|
121
122
|
"@types/prompts": "^2.0.14",
|
|
122
123
|
"@types/react": "^17.0.37",
|
|
124
|
+
"@types/resolve": "^1.20.6",
|
|
123
125
|
"@types/serve-static": "^1.13.10",
|
|
124
126
|
"@types/shell-quote": "^1.7.2",
|
|
125
127
|
"@types/signal-exit": "^3.0.1",
|
|
@@ -184,8 +186,8 @@
|
|
|
184
186
|
"xdg-app-paths": "^8.3.0",
|
|
185
187
|
"yargs": "^17.7.2",
|
|
186
188
|
"yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
|
|
187
|
-
"@cloudflare/cli": "1.
|
|
188
|
-
"@cloudflare/pages-shared": "^0.11.
|
|
189
|
+
"@cloudflare/cli": "1.1.0",
|
|
190
|
+
"@cloudflare/pages-shared": "^0.11.7",
|
|
189
191
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
|
190
192
|
},
|
|
191
193
|
"optionalDependencies": {
|
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -426,6 +426,14 @@ declare interface CloseEventInit_2 extends EventInit_2 {
|
|
|
426
426
|
wasClean?: boolean
|
|
427
427
|
}
|
|
428
428
|
|
|
429
|
+
/**
|
|
430
|
+
* Configuration in wrangler for Cloudchamber
|
|
431
|
+
*/
|
|
432
|
+
declare type CloudchamberConfig = {
|
|
433
|
+
vcpu?: number;
|
|
434
|
+
memory?: string;
|
|
435
|
+
};
|
|
436
|
+
|
|
429
437
|
declare class ConfigController extends EventEmitter_2 {
|
|
430
438
|
config?: StartDevWorkerOptions;
|
|
431
439
|
setOptions(_: StartDevWorkerOptions): void;
|
|
@@ -1488,6 +1496,16 @@ declare interface EnvironmentNonInheritable {
|
|
|
1488
1496
|
durable_objects: {
|
|
1489
1497
|
bindings: DurableObjectBindings;
|
|
1490
1498
|
};
|
|
1499
|
+
/**
|
|
1500
|
+
* Cloudchamber configuration
|
|
1501
|
+
*
|
|
1502
|
+
* NOTE: This field is not automatically inherited from the top level environment,
|
|
1503
|
+
* and so must be specified in every named environment.
|
|
1504
|
+
*
|
|
1505
|
+
* @default `{}`
|
|
1506
|
+
* @nonInheritable
|
|
1507
|
+
*/
|
|
1508
|
+
cloudchamber: CloudchamberConfig;
|
|
1491
1509
|
/**
|
|
1492
1510
|
* These specify any Workers KV Namespaces you want to
|
|
1493
1511
|
* access from inside your Worker.
|