wrangler 3.15.0 → 3.17.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 +2804 -1500
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -89,18 +89,19 @@
|
|
|
89
89
|
"blake3-wasm": "^2.1.5",
|
|
90
90
|
"chokidar": "^3.5.3",
|
|
91
91
|
"esbuild": "0.17.19",
|
|
92
|
-
"miniflare": "3.20231025.0",
|
|
93
92
|
"nanoid": "^3.3.3",
|
|
94
93
|
"path-to-regexp": "^6.2.0",
|
|
95
94
|
"resolve.exports": "^2.0.2",
|
|
96
95
|
"selfsigned": "^2.0.1",
|
|
97
96
|
"source-map": "0.6.1",
|
|
98
97
|
"source-map-support": "0.5.21",
|
|
99
|
-
"xxhash-wasm": "^1.0.1"
|
|
98
|
+
"xxhash-wasm": "^1.0.1",
|
|
99
|
+
"miniflare": "3.20231030.1"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
102
|
"@cloudflare/eslint-config-worker": "*",
|
|
103
103
|
"@cloudflare/types": "^6.18.4",
|
|
104
|
+
"https-proxy-agent": "7.0.2",
|
|
104
105
|
"@cloudflare/workers-types": "^4.20230914.0",
|
|
105
106
|
"@iarna/toml": "^3.0.0",
|
|
106
107
|
"@microsoft/api-extractor": "^7.28.3",
|
|
@@ -176,13 +177,12 @@
|
|
|
176
177
|
"ts-dedent": "^2.2.0",
|
|
177
178
|
"undici": "5.20.0",
|
|
178
179
|
"update-check": "^1.5.4",
|
|
179
|
-
"vitest": "^0.34.4",
|
|
180
180
|
"ws": "^8.5.0",
|
|
181
181
|
"xdg-app-paths": "^8.3.0",
|
|
182
182
|
"yargs": "^17.7.2",
|
|
183
183
|
"yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
|
|
184
184
|
"@cloudflare/cli": "1.0.0",
|
|
185
|
-
"@cloudflare/pages-shared": "^0.
|
|
185
|
+
"@cloudflare/pages-shared": "^0.11.1",
|
|
186
186
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
|
187
187
|
},
|
|
188
188
|
"optionalDependencies": {
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
"test": "pnpm run assert-git-version && jest",
|
|
205
205
|
"test:ci": "pnpm run test --coverage",
|
|
206
206
|
"test:debug": "pnpm run test --silent=false --verbose=true",
|
|
207
|
-
"test:e2e": "vitest --test-timeout 240000 --single-thread --dir ./e2e run",
|
|
207
|
+
"test:e2e": "vitest --test-timeout 240000 --single-thread --dir ./e2e --retry 2 run",
|
|
208
208
|
"test:watch": "pnpm run test --runInBand --testTimeout=50000 --watch",
|
|
209
209
|
"type:tests": "tsc -p ./src/__tests__/tsconfig.json && tsc -p ./e2e/tsconfig.json"
|
|
210
210
|
}
|
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -273,12 +273,12 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
|
|
|
273
273
|
created_on: string;
|
|
274
274
|
production_branch: string;
|
|
275
275
|
deployment_trigger: {
|
|
276
|
-
type: string;
|
|
277
276
|
metadata: {
|
|
278
277
|
branch: string;
|
|
279
278
|
commit_hash: string;
|
|
280
279
|
commit_message: string;
|
|
281
280
|
};
|
|
281
|
+
type: string;
|
|
282
282
|
};
|
|
283
283
|
latest_stage: {
|
|
284
284
|
name: "build" | "deploy" | "queued" | "initialize" | "clone_repo";
|
|
@@ -1055,6 +1055,8 @@ declare interface EnvironmentNonInheritable {
|
|
|
1055
1055
|
binding: string;
|
|
1056
1056
|
/** The id of the database. */
|
|
1057
1057
|
id: string;
|
|
1058
|
+
/** The local database connection string for `wrangler dev` */
|
|
1059
|
+
localConnectionString?: string;
|
|
1058
1060
|
}[];
|
|
1059
1061
|
/**
|
|
1060
1062
|
* Specifies service bindings (worker-to-worker) that are bound to this Worker environment.
|
|
@@ -1695,6 +1697,7 @@ export declare interface UnstableDevOptions {
|
|
|
1695
1697
|
inspect?: boolean;
|
|
1696
1698
|
local?: boolean;
|
|
1697
1699
|
accountId?: string;
|
|
1700
|
+
updateCheck?: boolean;
|
|
1698
1701
|
experimental?: {
|
|
1699
1702
|
processEntrypoint?: boolean;
|
|
1700
1703
|
additionalModules?: CfModule[];
|