wrangler 3.72.1 → 3.72.3
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 +8 -8
- package/wrangler-dist/cli.d.ts +1 -1
- package/wrangler-dist/cli.js +189 -207
- package/wrangler-dist/cli.js.map +0 -7
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "3.72.
|
3
|
+
"version": "3.72.3",
|
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.20240821.1",
|
67
67
|
"xxhash-wasm": "^1.0.1",
|
68
|
-
"@cloudflare/workers-shared": "0.2.0",
|
69
68
|
"@cloudflare/kv-asset-handler": "0.3.4",
|
70
|
-
"
|
69
|
+
"@cloudflare/workers-shared": "0.4.0",
|
70
|
+
"miniflare": "3.20240821.0"
|
71
71
|
},
|
72
72
|
"devDependencies": {
|
73
73
|
"@cloudflare/types": "^6.18.4",
|
74
|
-
"@cloudflare/workers-types": "^4.
|
74
|
+
"@cloudflare/workers-types": "^4.20240821.1",
|
75
75
|
"@cspotcode/source-map-support": "0.8.1",
|
76
76
|
"@iarna/toml": "^3.0.0",
|
77
77
|
"@microsoft/api-extractor": "^7.47.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/cli": "1.1.1",
|
156
|
-
"@cloudflare/pages-shared": "^0.11.52",
|
157
155
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
156
|
+
"@cloudflare/cli": "1.1.1",
|
157
|
+
"@cloudflare/pages-shared": "^0.11.53",
|
158
158
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
159
159
|
},
|
160
160
|
"peerDependencies": {
|
161
|
-
"@cloudflare/workers-types": "^4.
|
161
|
+
"@cloudflare/workers-types": "^4.20240821.1"
|
162
162
|
},
|
163
163
|
"peerDependenciesMeta": {
|
164
164
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -975,6 +975,7 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
|
|
975
975
|
modified_on: string;
|
976
976
|
short_id: string;
|
977
977
|
build_image_major_version: number;
|
978
|
+
kv_namespaces?: any;
|
978
979
|
source?: {
|
979
980
|
type: "github" | "gitlab";
|
980
981
|
config: {
|
@@ -989,7 +990,6 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
|
|
989
990
|
preview_branch_excludes?: string[] | undefined;
|
990
991
|
};
|
991
992
|
} | undefined;
|
992
|
-
kv_namespaces?: any;
|
993
993
|
env_vars?: any;
|
994
994
|
durable_object_namespaces?: any;
|
995
995
|
is_skipped?: boolean | undefined;
|