wrangler 3.80.3 → 3.80.4
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 +9 -9
- package/wrangler-dist/cli.js +5 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "3.80.
|
3
|
+
"version": "3.80.4",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -62,15 +62,15 @@
|
|
62
62
|
"selfsigned": "^2.0.1",
|
63
63
|
"source-map": "^0.6.1",
|
64
64
|
"unenv": "npm:unenv-nightly@2.0.0-20241009-125958-e8ea22f",
|
65
|
-
"workerd": "1.
|
65
|
+
"workerd": "1.20241004.0",
|
66
66
|
"xxhash-wasm": "^1.0.1",
|
67
67
|
"@cloudflare/kv-asset-handler": "0.3.4",
|
68
|
-
"@cloudflare/workers-shared": "0.
|
69
|
-
"miniflare": "3.
|
68
|
+
"@cloudflare/workers-shared": "0.6.0",
|
69
|
+
"miniflare": "3.20241004.0"
|
70
70
|
},
|
71
71
|
"devDependencies": {
|
72
72
|
"@cloudflare/types": "^6.18.4",
|
73
|
-
"@cloudflare/workers-types": "^4.
|
73
|
+
"@cloudflare/workers-types": "^4.20241004.0",
|
74
74
|
"@cspotcode/source-map-support": "0.8.1",
|
75
75
|
"@iarna/toml": "^3.0.0",
|
76
76
|
"@microsoft/api-extractor": "^7.47.0",
|
@@ -152,12 +152,12 @@
|
|
152
152
|
"yargs": "^17.7.2",
|
153
153
|
"yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
|
154
154
|
"@cloudflare/cli": "1.1.1",
|
155
|
-
"@cloudflare/
|
156
|
-
"@cloudflare/
|
157
|
-
"@cloudflare/
|
155
|
+
"@cloudflare/eslint-config-worker": "1.1.0",
|
156
|
+
"@cloudflare/pages-shared": "^0.11.64",
|
157
|
+
"@cloudflare/workers-tsconfig": "0.0.0"
|
158
158
|
},
|
159
159
|
"peerDependencies": {
|
160
|
-
"@cloudflare/workers-types": "^4.
|
160
|
+
"@cloudflare/workers-types": "^4.20241004.0"
|
161
161
|
},
|
162
162
|
"peerDependenciesMeta": {
|
163
163
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.js
CHANGED
@@ -157966,7 +157966,7 @@ var import_undici3 = __toESM(require_undici());
|
|
157966
157966
|
|
157967
157967
|
// package.json
|
157968
157968
|
var name = "wrangler";
|
157969
|
-
var version = "3.80.
|
157969
|
+
var version = "3.80.4";
|
157970
157970
|
|
157971
157971
|
// src/user/index.ts
|
157972
157972
|
init_import_meta_url();
|
@@ -192116,7 +192116,7 @@ __name(getValidBindingName, "getValidBindingName");
|
|
192116
192116
|
|
192117
192117
|
// src/kv/index.ts
|
192118
192118
|
function registerKvSubcommands(kvYargs, subHelp) {
|
192119
|
-
return kvYargs.command(
|
192119
|
+
return kvYargs.command(subHelp).command(
|
192120
192120
|
"namespace",
|
192121
192121
|
`Interact with your Workers KV Namespaces`,
|
192122
192122
|
(namespaceYargs) => {
|
@@ -192138,7 +192138,7 @@ function registerKvSubcommands(kvYargs, subHelp) {
|
|
192138
192138
|
}
|
192139
192139
|
__name(registerKvSubcommands, "registerKvSubcommands");
|
192140
192140
|
function kvNamespace(kvYargs) {
|
192141
|
-
return kvYargs.command(
|
192141
|
+
return kvYargs.demandCommand().command(
|
192142
192142
|
"create <namespace>",
|
192143
192143
|
"Create a new namespace",
|
192144
192144
|
(yargs) => {
|
@@ -192233,7 +192233,7 @@ function kvNamespace(kvYargs) {
|
|
192233
192233
|
}
|
192234
192234
|
__name(kvNamespace, "kvNamespace");
|
192235
192235
|
var kvKey = /* @__PURE__ */ __name((kvYargs) => {
|
192236
|
-
return kvYargs.command(
|
192236
|
+
return kvYargs.demandCommand().command(
|
192237
192237
|
"put <key> [value]",
|
192238
192238
|
"Write a single key/value pair to the given namespace",
|
192239
192239
|
(yargs) => {
|
@@ -192508,7 +192508,7 @@ var kvKey = /* @__PURE__ */ __name((kvYargs) => {
|
|
192508
192508
|
);
|
192509
192509
|
}, "kvKey");
|
192510
192510
|
var kvBulk = /* @__PURE__ */ __name((kvYargs) => {
|
192511
|
-
return kvYargs.command(
|
192511
|
+
return kvYargs.demandCommand().command(
|
192512
192512
|
"put <filename>",
|
192513
192513
|
"Upload multiple key-value pairs to a namespace",
|
192514
192514
|
(yargs) => {
|