wrangler 3.88.0 → 3.90.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "3.88.0",
3
+ "version": "3.90.0",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -66,9 +66,9 @@
66
66
  "unenv": "npm:unenv-nightly@2.0.0-20241111-080453-894aa31",
67
67
  "workerd": "1.20241106.1",
68
68
  "xxhash-wasm": "^1.0.1",
69
- "@cloudflare/workers-shared": "0.7.1",
70
- "miniflare": "3.20241106.0",
71
- "@cloudflare/kv-asset-handler": "0.3.4"
69
+ "@cloudflare/kv-asset-handler": "0.3.4",
70
+ "miniflare": "3.20241106.1",
71
+ "@cloudflare/workers-shared": "0.8.0"
72
72
  },
73
73
  "devDependencies": {
74
74
  "@cloudflare/types": "6.18.4",
@@ -141,7 +141,7 @@
141
141
  "yargs": "^17.7.2",
142
142
  "@cloudflare/eslint-config-worker": "1.1.0",
143
143
  "@cloudflare/cli": "1.1.1",
144
- "@cloudflare/pages-shared": "^0.11.68",
144
+ "@cloudflare/pages-shared": "^0.11.69",
145
145
  "@cloudflare/workers-tsconfig": "0.0.0"
146
146
  },
147
147
  "peerDependencies": {
@@ -1469,7 +1469,7 @@ declare type Entry = {
1469
1469
  /** A worker's entrypoint */
1470
1470
  file: string;
1471
1471
  /** A worker's directory. Usually where the wrangler.toml file is located */
1472
- directory: string;
1472
+ projectRoot: string;
1473
1473
  /** Is this a module worker or a service worker? */
1474
1474
  format: CfScriptFormat;
1475
1475
  /** The directory that contains all of a `--no-bundle` worker's modules. Usually `${directory}/src`. Defaults to path.dirname(file) */
@@ -26059,7 +26059,7 @@ declare interface StartDevWorkerInput {
26059
26059
 
26060
26060
  declare type StartDevWorkerOptions = Omit<StartDevWorkerInput, "assets"> & {
26061
26061
  /** A worker's directory. Usually where the wrangler.toml file is located */
26062
- directory: string;
26062
+ projectRoot: string;
26063
26063
  build: StartDevWorkerInput["build"] & {
26064
26064
  nodejsCompatMode: NodeJSCompatMode;
26065
26065
  format: CfScriptFormat;