wrangler 2.20.1 → 2.20.2
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 +2 -2
- package/src/__tests__/api-devregistry.test.ts +1 -1
- package/src/__tests__/tsconfig.tsbuildinfo +1 -1
- package/src/dev/local.tsx +1 -1
- package/src/dev-registry.ts +7 -7
- package/src/inspect.ts +49 -4
- package/src/pages/functions/tsconfig.tsbuildinfo +1 -1
- package/wrangler-dist/cli.js +86 -40
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "2.20.
|
|
3
|
+
"version": "2.20.2",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"@cloudflare/workers-types": "^4.20221111.1",
|
|
121
121
|
"@iarna/toml": "^3.0.0",
|
|
122
122
|
"@microsoft/api-extractor": "^7.28.3",
|
|
123
|
-
"@miniflare/tre": "3.0.0-next.
|
|
123
|
+
"@miniflare/tre": "3.0.0-next.14",
|
|
124
124
|
"@types/better-sqlite3": "^7.6.0",
|
|
125
125
|
"@types/busboy": "^1.5.0",
|
|
126
126
|
"@types/command-exists": "^1.2.0",
|
|
@@ -40,7 +40,7 @@ describe("multi-worker testing", () => {
|
|
|
40
40
|
});
|
|
41
41
|
|
|
42
42
|
it("parentWorker and childWorker should be added devRegistry", async () => {
|
|
43
|
-
const resp = await fetch("http://
|
|
43
|
+
const resp = await fetch("http://127.0.0.1:6284/workers");
|
|
44
44
|
if (resp) {
|
|
45
45
|
const parsedResp = (await resp.json()) as {
|
|
46
46
|
parent: unknown;
|