wrangler 3.110.0 → 4.0.0-rc.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/README.md +8 -4
- package/bin/wrangler.js +1 -1
- package/config-schema.json +113 -1193
- package/package.json +6 -8
- package/wrangler-dist/InspectorProxyWorker.js +4 -8
- package/wrangler-dist/InspectorProxyWorker.js.map +1 -1
- package/wrangler-dist/ProxyWorker.js +3 -6
- package/wrangler-dist/ProxyWorker.js.map +1 -1
- package/wrangler-dist/cli.d.ts +2 -163
- package/wrangler-dist/cli.js +8443 -44303
- package/templates/middleware/middleware-serve-static-assets.d.ts +0 -6
- package/templates/middleware/middleware-serve-static-assets.ts +0 -56
- package/wrangler-dist/cli.js.map +0 -7
package/README.md
CHANGED
@@ -8,10 +8,6 @@
|
|
8
8
|
|
9
9
|
`wrangler` is a command line tool for building [Cloudflare Workers](https://workers.cloudflare.com/).
|
10
10
|
|
11
|
-
> [!WARNING]
|
12
|
-
>
|
13
|
-
> Wrangler v2 is **only receiving critical security updates.** We recommend you [migrate to Wrangler v3](https://developers.cloudflare.com/workers/wrangler/migration/update-v2-to-v3/) if you can.
|
14
|
-
|
15
11
|
## Quick Start
|
16
12
|
|
17
13
|
To get started quickly with a Hello World worker, run the command below:
|
@@ -22,6 +18,14 @@ npx wrangler init my-worker -y
|
|
22
18
|
|
23
19
|
For more info, visit our [Getting Started](https://developers.cloudflare.com/workers/get-started/guide/) guide.
|
24
20
|
|
21
|
+
<details><summary>Wrangler System Requirements</summary>
|
22
|
+
|
23
|
+
We support running the Wrangler CLI with the [Current, Active, and Maintenance](https://nodejs.org/en/about/previous-releases) versions of Node.js. Your Worker will always be executed in `workerd`, the open source Cloudflare Workers runtime.
|
24
|
+
|
25
|
+
Wrangler is only supported on macOS 13.5+, Windows 11, and Linux distros that support glib 2.35. This follows [`workerd`'s OS support policy](https://github.com/cloudflare/workerd?tab=readme-ov-file#running-workerd).
|
26
|
+
|
27
|
+
</details>
|
28
|
+
|
25
29
|
## Documentation
|
26
30
|
|
27
31
|
For the latest Wrangler documentation, [click here](https://developers.cloudflare.com/workers/wrangler/).
|