wrangler 3.69.1 → 3.71.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/config-schema.json +1 -0
- package/package.json +10 -10
- package/wrangler-dist/cli.d.ts +3 -0
- package/wrangler-dist/cli.js +6276 -5182
- package/wrangler-dist/cli.js.map +7 -0
package/config-schema.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.71.0",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -63,15 +63,15 @@
|
|
63
63
|
"selfsigned": "^2.0.1",
|
64
64
|
"source-map": "^0.6.1",
|
65
65
|
"unenv": "npm:unenv-nightly@1.10.0-1717606461.a117952",
|
66
|
-
"workerd": "1.
|
66
|
+
"workerd": "1.20240806.0",
|
67
67
|
"xxhash-wasm": "^1.0.1",
|
68
|
+
"@cloudflare/workers-shared": "0.1.0",
|
68
69
|
"@cloudflare/kv-asset-handler": "0.3.4",
|
69
|
-
"miniflare": "3.
|
70
|
-
"@cloudflare/workers-shared": "0.1.0"
|
70
|
+
"miniflare": "3.20240806.0"
|
71
71
|
},
|
72
72
|
"devDependencies": {
|
73
73
|
"@cloudflare/types": "^6.18.4",
|
74
|
-
"@cloudflare/workers-types": "^4.
|
74
|
+
"@cloudflare/workers-types": "^4.20240806.0",
|
75
75
|
"@cspotcode/source-map-support": "0.8.1",
|
76
76
|
"@iarna/toml": "^3.0.0",
|
77
77
|
"@microsoft/api-extractor": "^7.47.0",
|
@@ -87,7 +87,7 @@
|
|
87
87
|
"@types/mime": "^3.0.4",
|
88
88
|
"@types/minimatch": "^5.1.2",
|
89
89
|
"@types/prompts": "^2.0.14",
|
90
|
-
"@types/react": "^18.
|
90
|
+
"@types/react": "^18.3.3",
|
91
91
|
"@types/resolve": "^1.20.6",
|
92
92
|
"@types/serve-static": "^1.13.10",
|
93
93
|
"@types/shell-quote": "^1.7.2",
|
@@ -132,7 +132,7 @@
|
|
132
132
|
"pretty-bytes": "^6.0.0",
|
133
133
|
"prompts": "^2.4.2",
|
134
134
|
"ps-list": "^8.1.1",
|
135
|
-
"react": "^18.
|
135
|
+
"react": "^18.3.1",
|
136
136
|
"react-error-boundary": "^3.1.4",
|
137
137
|
"semiver": "^1.1.0",
|
138
138
|
"serve-static": "^1.15.0",
|
@@ -152,13 +152,13 @@
|
|
152
152
|
"xdg-app-paths": "^8.3.0",
|
153
153
|
"yargs": "^17.7.2",
|
154
154
|
"yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
|
155
|
-
"@cloudflare/pages-shared": "^0.11.50",
|
156
155
|
"@cloudflare/cli": "1.1.1",
|
157
156
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
158
|
-
"@cloudflare/workers-tsconfig": "0.0.0"
|
157
|
+
"@cloudflare/workers-tsconfig": "0.0.0",
|
158
|
+
"@cloudflare/pages-shared": "^0.11.51"
|
159
159
|
},
|
160
160
|
"peerDependencies": {
|
161
|
-
"@cloudflare/workers-types": "^4.
|
161
|
+
"@cloudflare/workers-types": "^4.20240806.0"
|
162
162
|
},
|
163
163
|
"peerDependenciesMeta": {
|
164
164
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -1406,6 +1406,8 @@ declare type Entry = {
|
|
1406
1406
|
format: CfScriptFormat;
|
1407
1407
|
/** The directory that contains all of a `--no-bundle` worker's modules. Usually `${directory}/src`. Defaults to path.dirname(file) */
|
1408
1408
|
moduleRoot: string;
|
1409
|
+
/** Whether this is a no-op worker that will not ultimately be uploaded e.g. for assets*/
|
1410
|
+
staticAssetsOnly?: boolean;
|
1409
1411
|
/**
|
1410
1412
|
* A worker's name
|
1411
1413
|
*/
|
@@ -2268,6 +2270,7 @@ declare class ExecutionContext {
|
|
2268
2270
|
}
|
2269
2271
|
|
2270
2272
|
declare type ExperimentalAssets = {
|
2273
|
+
/** Absolute path to assets directory */
|
2271
2274
|
directory: string;
|
2272
2275
|
binding?: string;
|
2273
2276
|
};
|