wrangler 3.97.0 → 3.99.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 +9 -9
- package/wrangler-dist/cli.d.ts +12 -5
- package/wrangler-dist/cli.js +3816 -3750
- 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.
|
3
|
+
"version": "3.99.0",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -62,15 +62,15 @@
|
|
62
62
|
"resolve": "^1.22.8",
|
63
63
|
"selfsigned": "^2.0.1",
|
64
64
|
"source-map": "^0.6.1",
|
65
|
-
"unenv": "npm:unenv-nightly@2.0.0-
|
66
|
-
"workerd": "1.
|
65
|
+
"unenv": "npm:unenv-nightly@2.0.0-20241204-140205-a5d5190",
|
66
|
+
"workerd": "1.20241218.0",
|
67
67
|
"xxhash-wasm": "^1.0.1",
|
68
68
|
"@cloudflare/kv-asset-handler": "0.3.4",
|
69
|
-
"miniflare": "3.
|
69
|
+
"miniflare": "3.20241218.0"
|
70
70
|
},
|
71
71
|
"devDependencies": {
|
72
72
|
"@cloudflare/types": "6.18.4",
|
73
|
-
"@cloudflare/workers-types": "^4.
|
73
|
+
"@cloudflare/workers-types": "^4.20241218.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",
|
@@ -137,14 +137,14 @@
|
|
137
137
|
"ws": "^8.18.0",
|
138
138
|
"xdg-app-paths": "^8.3.0",
|
139
139
|
"yargs": "^17.7.2",
|
140
|
-
"@cloudflare/cli": "1.1.1",
|
141
140
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
142
|
-
"@cloudflare/
|
143
|
-
"@cloudflare/
|
141
|
+
"@cloudflare/cli": "1.1.1",
|
142
|
+
"@cloudflare/pages-shared": "^0.12.0",
|
143
|
+
"@cloudflare/workers-shared": "0.11.1",
|
144
144
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
145
145
|
},
|
146
146
|
"peerDependencies": {
|
147
|
-
"@cloudflare/workers-types": "^4.
|
147
|
+
"@cloudflare/workers-types": "^4.20241218.0"
|
148
148
|
},
|
149
149
|
"peerDependenciesMeta": {
|
150
150
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -1022,13 +1022,13 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
|
|
1022
1022
|
type: string;
|
1023
1023
|
};
|
1024
1024
|
latest_stage: {
|
1025
|
-
status: "
|
1025
|
+
status: "canceled" | "active" | "idle" | "success" | "failure" | "skipped";
|
1026
1026
|
name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
|
1027
1027
|
started_on: string | null;
|
1028
1028
|
ended_on: string | null;
|
1029
1029
|
};
|
1030
1030
|
stages: {
|
1031
|
-
status: "
|
1031
|
+
status: "canceled" | "active" | "idle" | "success" | "failure" | "skipped";
|
1032
1032
|
name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
|
1033
1033
|
started_on: string | null;
|
1034
1034
|
ended_on: string | null;
|
@@ -1046,7 +1046,7 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
|
|
1046
1046
|
pr_comments_enabled?: boolean | undefined;
|
1047
1047
|
deployments_enabled?: boolean | undefined;
|
1048
1048
|
production_deployments_enabled?: boolean | undefined;
|
1049
|
-
preview_deployment_setting?: "none" | "
|
1049
|
+
preview_deployment_setting?: "none" | "custom" | "all" | undefined;
|
1050
1050
|
preview_branch_includes?: string[] | undefined;
|
1051
1051
|
preview_branch_excludes?: string[] | undefined;
|
1052
1052
|
};
|
@@ -2474,6 +2474,13 @@ declare class ExecutionContext {
|
|
2474
2474
|
passThroughOnException(): void;
|
2475
2475
|
}
|
2476
2476
|
|
2477
|
+
export declare const experimental_patchConfig: (configPath: string, patch: Unstable_RawConfig, isArrayInsertion?: boolean) => string;
|
2478
|
+
|
2479
|
+
export declare const experimental_readRawConfig: (args: ReadConfigCommandArgs) => {
|
2480
|
+
rawConfig: Unstable_RawConfig;
|
2481
|
+
configPath: string | undefined;
|
2482
|
+
};
|
2483
|
+
|
2477
2484
|
declare function fetch_2 (
|
2478
2485
|
input: RequestInfo,
|
2479
2486
|
init?: RequestInit_2
|
@@ -2792,8 +2799,8 @@ declare class Logger {
|
|
2792
2799
|
#private;
|
2793
2800
|
constructor();
|
2794
2801
|
private overrideLoggerLevel?;
|
2795
|
-
get loggerLevel(): "
|
2796
|
-
set loggerLevel(val: "
|
2802
|
+
get loggerLevel(): "log" | "error" | "none" | "debug" | "info" | "warn";
|
2803
|
+
set loggerLevel(val: "log" | "error" | "none" | "debug" | "info" | "warn");
|
2797
2804
|
columns: number;
|
2798
2805
|
debug: (...args: unknown[]) => void;
|
2799
2806
|
debugWithSanitization: (label: string, ...args: unknown[]) => void;
|