wrangler 3.9.0 → 3.9.1
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 +3 -3
- package/wrangler-dist/cli.d.ts +6 -0
- package/wrangler-dist/cli.js +2082 -1941
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.1",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"blake3-wasm": "^2.1.5",
|
|
90
90
|
"chokidar": "^3.5.3",
|
|
91
91
|
"esbuild": "0.17.19",
|
|
92
|
-
"miniflare": "3.
|
|
92
|
+
"miniflare": "3.20230922.0",
|
|
93
93
|
"nanoid": "^3.3.3",
|
|
94
94
|
"path-to-regexp": "^6.2.0",
|
|
95
95
|
"selfsigned": "^2.0.1",
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
"update-check": "^1.5.4",
|
|
177
177
|
"vitest": "^0.34.4",
|
|
178
178
|
"ws": "^8.5.0",
|
|
179
|
-
"xdg-app-paths": "^
|
|
179
|
+
"xdg-app-paths": "^8.3.0",
|
|
180
180
|
"yargs": "^17.4.1",
|
|
181
181
|
"yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
|
|
182
182
|
"@cloudflare/pages-shared": "^0.9.0",
|
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -1049,6 +1049,12 @@ declare interface EnvironmentNonInheritable {
|
|
|
1049
1049
|
browser: {
|
|
1050
1050
|
binding: string;
|
|
1051
1051
|
} | undefined;
|
|
1052
|
+
/**
|
|
1053
|
+
* Binding to the AI project.
|
|
1054
|
+
*/
|
|
1055
|
+
ai: {
|
|
1056
|
+
binding: string;
|
|
1057
|
+
} | undefined;
|
|
1052
1058
|
/**
|
|
1053
1059
|
* "Unsafe" tables for features that aren't directly supported by wrangler.
|
|
1054
1060
|
*
|