wrangler 4.5.0 → 4.5.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/config-schema.json +1 -2
- package/package.json +4 -4
- package/wrangler-dist/cli.d.ts +2 -2
- package/wrangler-dist/cli.js +3 -5
package/config-schema.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "4.5.
|
3
|
+
"version": "4.5.1",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -57,7 +57,7 @@
|
|
57
57
|
"unenv": "2.0.0-rc.15",
|
58
58
|
"workerd": "1.20250321.0",
|
59
59
|
"@cloudflare/kv-asset-handler": "0.4.0",
|
60
|
-
"miniflare": "4.20250321.
|
60
|
+
"miniflare": "4.20250321.1"
|
61
61
|
},
|
62
62
|
"devDependencies": {
|
63
63
|
"@aws-sdk/client-s3": "^3.721.0",
|
@@ -135,9 +135,9 @@
|
|
135
135
|
"xdg-app-paths": "^8.3.0",
|
136
136
|
"xxhash-wasm": "^1.0.1",
|
137
137
|
"yargs": "^17.7.2",
|
138
|
-
"@cloudflare/cli": "1.1.1",
|
139
138
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
140
|
-
"@cloudflare/
|
139
|
+
"@cloudflare/cli": "1.1.1",
|
140
|
+
"@cloudflare/pages-shared": "^0.13.20",
|
141
141
|
"@cloudflare/workers-shared": "0.17.1",
|
142
142
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
143
143
|
},
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -668,7 +668,7 @@ declare interface CfModule {
|
|
668
668
|
/**
|
669
669
|
* A module type.
|
670
670
|
*/
|
671
|
-
declare type CfModuleType = "esm" | "commonjs" | "compiled-wasm" | "text" | "buffer" | "python" | "python-requirement"
|
671
|
+
declare type CfModuleType = "esm" | "commonjs" | "compiled-wasm" | "text" | "buffer" | "python" | "python-requirement";
|
672
672
|
|
673
673
|
declare interface CfMTlsCertificate {
|
674
674
|
binding: string;
|
@@ -1019,7 +1019,7 @@ declare interface ConfigFields<Dev extends RawDevConfig> {
|
|
1019
1019
|
/**
|
1020
1020
|
* The possible types for a `Rule`.
|
1021
1021
|
*/
|
1022
|
-
declare type ConfigModuleRuleType = "ESModule" | "CommonJS" | "CompiledWasm" | "Text" | "Data" | "PythonModule" | "PythonRequirement"
|
1022
|
+
declare type ConfigModuleRuleType = "ESModule" | "CommonJS" | "CompiledWasm" | "Text" | "Data" | "PythonModule" | "PythonRequirement";
|
1023
1023
|
|
1024
1024
|
declare type ConfigUpdateEvent = {
|
1025
1025
|
type: "configUpdate";
|
package/wrangler-dist/cli.js
CHANGED
@@ -81185,7 +81185,7 @@ var import_undici3 = __toESM(require_undici());
|
|
81185
81185
|
|
81186
81186
|
// package.json
|
81187
81187
|
var name = "wrangler";
|
81188
|
-
var version = "4.5.
|
81188
|
+
var version = "4.5.1";
|
81189
81189
|
|
81190
81190
|
// src/environment-variables/misc-variables.ts
|
81191
81191
|
init_import_meta_url();
|
@@ -91539,8 +91539,7 @@ var RuleTypeToModuleType = {
|
|
91539
91539
|
Data: "buffer",
|
91540
91540
|
Text: "text",
|
91541
91541
|
PythonModule: "python",
|
91542
|
-
PythonRequirement: "python-requirement"
|
91543
|
-
NodeJsCompatModule: "nodejs-compat-module"
|
91542
|
+
PythonRequirement: "python-requirement"
|
91544
91543
|
};
|
91545
91544
|
var ModuleTypeToRuleType = flipObject(RuleTypeToModuleType);
|
91546
91545
|
var modulesWatchRegexp = /^wrangler:modules-watch$/;
|
@@ -103714,8 +103713,7 @@ var moduleTypeMimeType = {
|
|
103714
103713
|
buffer: "application/octet-stream",
|
103715
103714
|
text: "text/plain",
|
103716
103715
|
python: "text/x-python",
|
103717
|
-
"python-requirement": "text/x-python-requirement"
|
103718
|
-
"nodejs-compat-module": void 0
|
103716
|
+
"python-requirement": "text/x-python-requirement"
|
103719
103717
|
};
|
103720
103718
|
function toMimeType(type) {
|
103721
103719
|
const mimeType = moduleTypeMimeType[type];
|