wrangler 4.73.0 → 4.74.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 +6 -6
- package/wrangler-dist/cli.d.ts +4 -1
- package/wrangler-dist/cli.js +824 -401
- package/wrangler-dist/metafile-cjs.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.74.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"workerd": "1.20260312.1",
|
|
58
58
|
"@cloudflare/kv-asset-handler": "0.4.2",
|
|
59
59
|
"@cloudflare/unenv-preset": "2.15.0",
|
|
60
|
-
"miniflare": "4.20260312.
|
|
60
|
+
"miniflare": "4.20260312.1"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@aws-sdk/client-s3": "^3.721.0",
|
|
@@ -148,13 +148,13 @@
|
|
|
148
148
|
"yaml": "^2.8.1",
|
|
149
149
|
"yargs": "^17.7.2",
|
|
150
150
|
"@cloudflare/cli": "1.2.1",
|
|
151
|
-
"@cloudflare/containers-shared": "0.
|
|
152
|
-
"@cloudflare/
|
|
153
|
-
"@cloudflare/pages-shared": "^0.13.114",
|
|
151
|
+
"@cloudflare/containers-shared": "0.12.0",
|
|
152
|
+
"@cloudflare/pages-shared": "^0.13.115",
|
|
154
153
|
"@cloudflare/workers-shared": "0.19.1",
|
|
155
154
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
156
155
|
"@cloudflare/workers-utils": "0.12.0",
|
|
157
|
-
"@cloudflare/workflows-shared": "0.6.0"
|
|
156
|
+
"@cloudflare/workflows-shared": "0.6.0",
|
|
157
|
+
"@cloudflare/eslint-config-shared": "1.2.1"
|
|
158
158
|
},
|
|
159
159
|
"peerDependencies": {
|
|
160
160
|
"@cloudflare/workers-types": "^4.20260312.1"
|
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -169,8 +169,8 @@ interface PagesDeployOptions {
|
|
|
169
169
|
*/
|
|
170
170
|
declare function deploy({ directory, accountId, projectName, branch, skipCaching, commitMessage, commitHash, commitDirty, functionsDirectory: customFunctionsDirectory, bundle, sourceMaps, args, }: PagesDeployOptions): Promise<{
|
|
171
171
|
deploymentResponse: {
|
|
172
|
-
id: string;
|
|
173
172
|
url: string;
|
|
173
|
+
id: string;
|
|
174
174
|
environment: "production" | "preview";
|
|
175
175
|
build_config: {
|
|
176
176
|
build_command: string;
|
|
@@ -2442,6 +2442,7 @@ type ConfigurationOptions = {
|
|
|
2442
2442
|
workerName: string;
|
|
2443
2443
|
dryRun: boolean;
|
|
2444
2444
|
packageManager: PackageManager;
|
|
2445
|
+
isWorkspaceRoot: boolean;
|
|
2445
2446
|
};
|
|
2446
2447
|
type PackageJsonScriptsOverrides = {
|
|
2447
2448
|
preview?: string;
|
|
@@ -2483,6 +2484,8 @@ type AutoConfigDetailsBase = {
|
|
|
2483
2484
|
outputDir: string;
|
|
2484
2485
|
/** The detected package manager for the project */
|
|
2485
2486
|
packageManager: PackageManager;
|
|
2487
|
+
/** Whether the current path is at the root of a workspace */
|
|
2488
|
+
isWorkspaceRoot?: boolean;
|
|
2486
2489
|
};
|
|
2487
2490
|
type AutoConfigDetailsForConfiguredProject = Optional<AutoConfigDetailsBase, "framework" | "outputDir"> & {
|
|
2488
2491
|
configured: true;
|