wrangler 3.114.6 → 3.114.8
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 +6 -6
- package/wrangler-dist/cli.d.ts +2 -0
- package/wrangler-dist/cli.js +302 -260
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "3.114.
|
3
|
+
"version": "3.114.8",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -58,8 +58,8 @@
|
|
58
58
|
"path-to-regexp": "6.3.0",
|
59
59
|
"unenv": "2.0.0-rc.14",
|
60
60
|
"workerd": "1.20250408.0",
|
61
|
-
"
|
62
|
-
"
|
61
|
+
"@cloudflare/kv-asset-handler": "0.3.4",
|
62
|
+
"miniflare": "3.20250408.1"
|
63
63
|
},
|
64
64
|
"devDependencies": {
|
65
65
|
"@aws-sdk/client-s3": "^3.721.0",
|
@@ -137,10 +137,10 @@
|
|
137
137
|
"xdg-app-paths": "^8.3.0",
|
138
138
|
"xxhash-wasm": "^1.0.1",
|
139
139
|
"yargs": "^17.7.2",
|
140
|
-
"@cloudflare/eslint-config-worker": "1.1.0",
|
141
140
|
"@cloudflare/cli": "1.1.1",
|
142
|
-
"@cloudflare/
|
143
|
-
"@cloudflare/pages-shared": "0.13.
|
141
|
+
"@cloudflare/eslint-config-worker": "1.1.0",
|
142
|
+
"@cloudflare/pages-shared": "0.13.17",
|
143
|
+
"@cloudflare/workers-shared": "0.15.1",
|
144
144
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
145
145
|
},
|
146
146
|
"peerDependencies": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -1649,6 +1649,8 @@ declare type Entry = {
|
|
1649
1649
|
file: string;
|
1650
1650
|
/** A worker's directory. Usually where the Wrangler configuration file is located */
|
1651
1651
|
projectRoot: string;
|
1652
|
+
/** The path to the config file, if it exists. */
|
1653
|
+
configPath: string | undefined;
|
1652
1654
|
/** Is this a module worker or a service worker? */
|
1653
1655
|
format: CfScriptFormat;
|
1654
1656
|
/** The directory that contains all of a `--no-bundle` worker's modules. Usually `${directory}/src`. Defaults to path.dirname(file) */
|