wrangler 0.0.0-ece06ea → 0.0.0-ecfbb0c
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/Cloudflare_CA.pem +18 -0
- package/README.md +33 -14
- package/bin/wrangler.js +123 -25
- package/kv-asset-handler.js +1 -0
- package/miniflare-dist/index.mjs +4893 -0
- package/package.json +157 -116
- package/src/__tests__/config-cache.test.ts +36 -0
- package/src/__tests__/configuration.test.ts +3829 -0
- package/src/__tests__/dev.test.tsx +1159 -0
- package/src/__tests__/guess-worker-format.test.ts +85 -0
- package/src/__tests__/{clipboardy-mock.js → helpers/clipboardy-mock.js} +0 -0
- package/src/__tests__/helpers/cmd-shim.d.ts +11 -0
- package/src/__tests__/helpers/faye-websocket.d.ts +6 -0
- package/src/__tests__/helpers/mock-account-id.ts +48 -0
- package/src/__tests__/helpers/mock-bin.ts +36 -0
- package/src/__tests__/helpers/mock-cfetch.ts +211 -0
- package/src/__tests__/helpers/mock-console.ts +97 -0
- package/src/__tests__/helpers/mock-dialogs.ts +153 -0
- package/src/__tests__/helpers/mock-http-server.ts +46 -0
- package/src/__tests__/helpers/mock-istty.ts +74 -0
- package/src/__tests__/helpers/mock-kv.ts +33 -0
- package/src/__tests__/helpers/mock-oauth-flow.ts +250 -0
- package/src/__tests__/helpers/mock-process.ts +39 -0
- package/src/__tests__/helpers/mock-stdin.ts +108 -0
- package/src/__tests__/helpers/mock-web-socket.ts +29 -0
- package/src/__tests__/helpers/run-in-tmp.ts +39 -0
- package/src/__tests__/helpers/run-wrangler.ts +16 -0
- package/src/__tests__/helpers/write-worker-source.ts +31 -0
- package/src/__tests__/helpers/write-wrangler-toml.ts +17 -0
- package/src/__tests__/https-options.test.ts +130 -0
- package/src/__tests__/index.test.ts +255 -148
- package/src/__tests__/init.test.ts +1992 -0
- package/src/__tests__/jest.setup.ts +107 -0
- package/src/__tests__/kv.test.ts +1619 -0
- package/src/__tests__/logger.test.ts +141 -0
- package/src/__tests__/package-manager.test.ts +353 -0
- package/src/__tests__/pages.test.ts +1254 -0
- package/src/__tests__/parse.test.ts +330 -0
- package/src/__tests__/publish.test.ts +6513 -0
- package/src/__tests__/pubsub.test.ts +276 -0
- package/src/__tests__/r2.test.ts +233 -0
- package/src/__tests__/route.test.ts +45 -0
- package/src/__tests__/secret.test.ts +486 -0
- package/src/__tests__/tail.test.ts +690 -0
- package/src/__tests__/user.test.ts +143 -0
- package/src/__tests__/whoami.test.tsx +220 -0
- package/src/abort.d.ts +3 -0
- package/src/api/dev.ts +39 -0
- package/src/api/index.ts +1 -0
- package/src/bundle-reporter.tsx +29 -0
- package/src/bundle.ts +212 -0
- package/src/cfetch/index.ts +121 -0
- package/src/cfetch/internal.ts +149 -0
- package/src/cli.ts +25 -8
- package/src/config/README.md +107 -0
- package/src/config/config.ts +243 -0
- package/src/config/diagnostics.ts +80 -0
- package/src/config/environment.ts +430 -0
- package/src/config/index.ts +225 -0
- package/src/config/validation-helpers.ts +584 -0
- package/src/config/validation.ts +1693 -0
- package/src/config-cache.ts +44 -0
- package/src/create-worker-preview.ts +199 -0
- package/src/create-worker-upload-form.ts +254 -0
- package/src/dev/dev-vars.ts +36 -0
- package/src/dev/dev.tsx +417 -0
- package/src/dev/local.tsx +350 -0
- package/src/dev/remote.tsx +294 -0
- package/src/dev/use-esbuild.ts +150 -0
- package/src/dev.tsx +517 -727
- package/src/dialogs.tsx +116 -66
- package/src/durable.ts +102 -0
- package/src/entry.ts +328 -0
- package/src/environment-variables.ts +35 -0
- package/src/errors.ts +11 -0
- package/src/generate.ts +33 -0
- package/src/git-client.ts +42 -0
- package/src/https-options.ts +123 -0
- package/src/index.tsx +1845 -1828
- package/src/init.ts +549 -0
- package/src/inspect.ts +662 -0
- package/src/intl-polyfill.d.ts +139 -0
- package/src/kv.ts +408 -0
- package/src/logger.ts +73 -0
- package/src/miniflare-cli/README.md +30 -0
- package/src/miniflare-cli/enum-keys.ts +17 -0
- package/src/miniflare-cli/index.ts +52 -0
- package/src/miniflare-cli/request-context.ts +40 -0
- package/src/module-collection.ts +258 -0
- package/src/open-in-browser.ts +17 -0
- package/src/package-manager.ts +174 -0
- package/src/pages/build.tsx +202 -0
- package/src/pages/constants.ts +7 -0
- package/src/pages/deployments.tsx +101 -0
- package/src/pages/dev.tsx +964 -0
- package/src/pages/functions/buildPlugin.ts +105 -0
- package/src/pages/functions/buildWorker.ts +151 -0
- package/src/pages/functions/filepath-routing.test.ts +234 -0
- package/src/pages/functions/filepath-routing.ts +189 -0
- package/src/pages/functions/identifiers.ts +78 -0
- package/src/pages/functions/routes.ts +151 -0
- package/src/pages/index.tsx +84 -0
- package/src/pages/projects.tsx +157 -0
- package/src/pages/publish.tsx +335 -0
- package/src/pages/types.ts +40 -0
- package/src/pages/upload.tsx +384 -0
- package/src/pages/utils.ts +12 -0
- package/src/parse.ts +286 -0
- package/src/paths.ts +26 -0
- package/src/preview.ts +31 -0
- package/src/proxy.ts +476 -0
- package/src/publish.ts +755 -343
- package/src/pubsub/index.ts +286 -0
- package/src/pubsub/pubsub-commands.tsx +594 -0
- package/src/r2.ts +50 -0
- package/src/selfsigned.d.ts +29 -0
- package/src/sites.tsx +357 -100
- package/src/tail/filters.ts +279 -0
- package/src/tail/index.ts +299 -0
- package/src/tail/printing.ts +67 -0
- package/src/update-check.ts +19 -0
- package/src/user/choose-account.tsx +60 -0
- package/src/user/env-vars.ts +46 -0
- package/src/user/generate-auth-url.ts +33 -0
- package/src/user/generate-random-state.ts +16 -0
- package/src/user/index.ts +3 -0
- package/src/user/user.tsx +1130 -0
- package/src/whoami.tsx +90 -0
- package/src/worker.ts +185 -0
- package/src/zones.ts +76 -0
- package/templates/checked-fetch.js +17 -0
- package/templates/gitignore +171 -0
- package/templates/new-worker-scheduled.js +17 -0
- package/templates/new-worker-scheduled.ts +32 -0
- package/templates/new-worker.js +15 -0
- package/templates/new-worker.ts +30 -0
- package/templates/no-op-worker.js +10 -0
- package/templates/pages-template-plugin.ts +155 -0
- package/templates/pages-template-worker.ts +161 -0
- package/templates/static-asset-facade.js +43 -0
- package/templates/tsconfig.json +105 -0
- package/wrangler-dist/cli.js +104118 -113381
- package/src/__tests__/fixtures/init/.gitkeep +0 -0
- package/src/__tests__/mock-cfetch.js +0 -46
- package/src/api/form_data.ts +0 -158
- package/src/api/inspect.ts +0 -441
- package/src/api/preview.ts +0 -123
- package/src/api/worker.ts +0 -161
- package/src/cfetch.ts +0 -72
- package/src/config.ts +0 -124
- package/src/kv.tsx +0 -211
- package/src/pages.tsx +0 -344
- package/src/tail.tsx +0 -71
- package/src/user.tsx +0 -1029
- package/src/util/fetch.ts +0 -74
- package/static-asset-facade.js +0 -47
- package/vendor/@cloudflare/kv-asset-handler/CHANGELOG.md +0 -332
- package/vendor/@cloudflare/kv-asset-handler/LICENSE_APACHE +0 -176
- package/vendor/@cloudflare/kv-asset-handler/LICENSE_MIT +0 -25
- package/vendor/@cloudflare/kv-asset-handler/README.md +0 -245
- package/vendor/@cloudflare/kv-asset-handler/dist/index.d.ts +0 -32
- package/vendor/@cloudflare/kv-asset-handler/dist/index.js +0 -354
- package/vendor/@cloudflare/kv-asset-handler/dist/mocks.d.ts +0 -13
- package/vendor/@cloudflare/kv-asset-handler/dist/mocks.js +0 -148
- package/vendor/@cloudflare/kv-asset-handler/dist/test/getAssetFromKV.d.ts +0 -1
- package/vendor/@cloudflare/kv-asset-handler/dist/test/getAssetFromKV.js +0 -436
- package/vendor/@cloudflare/kv-asset-handler/dist/test/mapRequestToAsset.d.ts +0 -1
- package/vendor/@cloudflare/kv-asset-handler/dist/test/mapRequestToAsset.js +0 -40
- package/vendor/@cloudflare/kv-asset-handler/dist/test/serveSinglePageApp.d.ts +0 -1
- package/vendor/@cloudflare/kv-asset-handler/dist/test/serveSinglePageApp.js +0 -42
- package/vendor/@cloudflare/kv-asset-handler/dist/types.d.ts +0 -26
- package/vendor/@cloudflare/kv-asset-handler/dist/types.js +0 -31
- package/vendor/@cloudflare/kv-asset-handler/package.json +0 -52
- package/vendor/@cloudflare/kv-asset-handler/src/index.ts +0 -296
- package/vendor/@cloudflare/kv-asset-handler/src/mocks.ts +0 -136
- package/vendor/@cloudflare/kv-asset-handler/src/test/getAssetFromKV.ts +0 -464
- package/vendor/@cloudflare/kv-asset-handler/src/test/mapRequestToAsset.ts +0 -33
- package/vendor/@cloudflare/kv-asset-handler/src/test/serveSinglePageApp.ts +0 -42
- package/vendor/@cloudflare/kv-asset-handler/src/types.ts +0 -39
- package/vendor/wrangler-mime/CHANGELOG.md +0 -289
- package/vendor/wrangler-mime/LICENSE +0 -21
- package/vendor/wrangler-mime/Mime.js +0 -97
- package/vendor/wrangler-mime/README.md +0 -187
- package/vendor/wrangler-mime/cli.js +0 -46
- package/vendor/wrangler-mime/index.js +0 -4
- package/vendor/wrangler-mime/lite.js +0 -4
- package/vendor/wrangler-mime/package.json +0 -52
- package/vendor/wrangler-mime/types/other.js +0 -1
- package/vendor/wrangler-mime/types/standard.js +0 -1
- package/wrangler-dist/cli.js.map +0 -7
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
|
2
|
+
MIIC6zCCAkygAwIBAgIUI7b68p0pPrCBoW4ptlyvVcPItscwCgYIKoZIzj0EAwQw
|
|
3
|
+
gY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T
|
|
4
|
+
YW4gRnJhbmNpc2NvMRgwFgYDVQQKEw9DbG91ZGZsYXJlLCBJbmMxNzA1BgNVBAMT
|
|
5
|
+
LkNsb3VkZmxhcmUgZm9yIFRlYW1zIEVDQyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkw
|
|
6
|
+
HhcNMjAwMjA0MTYwNTAwWhcNMjUwMjAyMTYwNTAwWjCBjTELMAkGA1UEBhMCVVMx
|
|
7
|
+
EzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lzY28xGDAW
|
|
8
|
+
BgNVBAoTD0Nsb3VkZmxhcmUsIEluYzE3MDUGA1UEAxMuQ2xvdWRmbGFyZSBmb3Ig
|
|
9
|
+
VGVhbXMgRUNDIENlcnRpZmljYXRlIEF1dGhvcml0eTCBmzAQBgcqhkjOPQIBBgUr
|
|
10
|
+
gQQAIwOBhgAEAVdXsX8tpA9NAQeEQalvUIcVaFNDvGsR69ysZxOraRWNGHLfq1mi
|
|
11
|
+
P6o3wtmtx/C2OXG01Cw7UFJbKl5MEDxnT2KoAdFSynSJOF2NDoe5LoZHbUW+yR3X
|
|
12
|
+
FDl+MF6JzZ590VLGo6dPBf06UsXbH7PvHH2XKtFt8bBXVNMa5a21RdmpD0Pho0Uw
|
|
13
|
+
QzAOBgNVHQ8BAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBAjAdBgNVHQ4EFgQU
|
|
14
|
+
YBcQng1AEMMNteuRDAMG0/vgFe0wCgYIKoZIzj0EAwQDgYwAMIGIAkIBQU5OTA2h
|
|
15
|
+
YqmFk8paan5ezHVLcmcucsfYw4L/wmeEjCkczRmCVNm6L86LjhWU0v0wER0e+lHO
|
|
16
|
+
3efvjbsu8gIGSagCQgEBnyYMP9gwg8l96QnQ1khFA1ljFlnqc2XgJHDSaAJC0gdz
|
|
17
|
+
+NV3JMeWaD2Rb32jc9r6/a7xY0u0ByqxBQ1OQ0dt7A==
|
|
18
|
+
-----END CERTIFICATE-----
|
package/README.md
CHANGED
|
@@ -1,47 +1,62 @@
|
|
|
1
|
-
|
|
1
|
+
<h1 align="center"> ⛅️ wrangler </h1>
|
|
2
|
+
<section align="center" id="shieldio-badges">
|
|
3
|
+
<a href="https://www.npmjs.com/package/wrangler"><img alt="npm" src="https://img.shields.io/npm/dw/wrangler?style=flat-square"></a>
|
|
4
|
+
<img alt="GitHub contributors" src="https://img.shields.io/github/contributors/cloudflare/wrangler2?style=flat-square">
|
|
5
|
+
<img alt="GitHub commit activity (branch)" src="https://img.shields.io/github/commit-activity/w/cloudflare/wrangler2/main?style=flat-square">
|
|
6
|
+
<a href="https://discord.gg/CloudflareDev"><img alt="Discord" src="https://img.shields.io/discord/595317990191398933?color=%23F48120&style=flat-square"></a>
|
|
7
|
+
</section>
|
|
2
8
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
[(Read the full stack week launch blog post.)](https://blog.cloudflare.com/wrangler-v2-beta/)
|
|
9
|
+
> This package is for wrangler v2.x, released first in May 2022. If you're looking for v1.x of the `@cloudflare/wrangler` package, visit https://www.npmjs.com/package/@cloudflare/wrangler / https://github.com/cloudflare/wrangler.
|
|
6
10
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Further, we will NOT do a general release until we are both feature complete, and have a full backward compatibility and incremental migration plan in place. For more details, follow the [parent roadmap issue](https://github.com/cloudflare/wrangler2/issues/12).
|
|
11
|
+
`wrangler` is a command line tool for building [Cloudflare Workers](https://workers.cloudflare.com/).
|
|
10
12
|
|
|
11
13
|
## Quick Start
|
|
12
14
|
|
|
13
15
|
```bash
|
|
14
16
|
# Make a javascript file
|
|
15
|
-
|
|
17
|
+
echo "export default { fetch() { return new Response('hello world') } }" > index.js
|
|
16
18
|
# try it out
|
|
17
|
-
|
|
19
|
+
npx wrangler dev index.js
|
|
18
20
|
# and then publish it
|
|
19
|
-
|
|
21
|
+
npx wrangler publish index.js --name my-worker
|
|
20
22
|
# visit https://my-worker.<your workers subdomain>.workers.dev
|
|
21
23
|
```
|
|
22
24
|
|
|
25
|
+
## Create a Project
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
# Generate a new project
|
|
29
|
+
npx wrangler init my-worker
|
|
30
|
+
# try it out
|
|
31
|
+
cd my-worker && npm run start
|
|
32
|
+
# and then publish it
|
|
33
|
+
npm run deploy
|
|
34
|
+
```
|
|
35
|
+
|
|
23
36
|
## Installation:
|
|
24
37
|
|
|
25
38
|
```bash
|
|
26
|
-
$ npm install wrangler
|
|
39
|
+
$ npm install wrangler --save-dev
|
|
27
40
|
```
|
|
28
41
|
|
|
29
42
|
## Commands
|
|
30
43
|
|
|
31
44
|
### `wrangler init [name]`
|
|
32
45
|
|
|
33
|
-
Creates a
|
|
46
|
+
Creates a Worker project. For details on configuration keys and values, refer to the [documentation](https://developers.cloudflare.com/workers/cli-wrangler/configuration).
|
|
34
47
|
|
|
35
|
-
### `wrangler dev
|
|
48
|
+
### `wrangler dev`
|
|
36
49
|
|
|
37
50
|
Start a local development server, with live reloading and devtools.
|
|
38
51
|
|
|
39
|
-
### `wrangler publish
|
|
52
|
+
### `wrangler publish`
|
|
40
53
|
|
|
41
54
|
Publish the given script to the worldwide Cloudflare network.
|
|
42
55
|
|
|
43
56
|
For more commands and options, refer to the [documentation](https://developers.cloudflare.com/workers/cli-wrangler/commands).
|
|
44
57
|
|
|
58
|
+
## Pages
|
|
59
|
+
|
|
45
60
|
### `wrangler pages dev [directory] [-- command]`
|
|
46
61
|
|
|
47
62
|
Either serves a static build asset directory, or proxies itself in front of a command.
|
|
@@ -49,3 +64,7 @@ Either serves a static build asset directory, or proxies itself in front of a co
|
|
|
49
64
|
Builds and runs functions from a `./functions` directory or uses a `_worker.js` file inside the static build asset directory.
|
|
50
65
|
|
|
51
66
|
For more commands and options, refer to the [documentation](https://developers.cloudflare.com/pages/platform/functions#develop-and-preview-locally) or run `wrangler pages dev --help`.
|
|
67
|
+
|
|
68
|
+
## Documentation
|
|
69
|
+
|
|
70
|
+
For the latest Wrangler documentation, [click here](https://6b05b6e1.cloudflare-docs-7ou.pages.dev/workers/wrangler/).
|
package/bin/wrangler.js
CHANGED
|
@@ -1,36 +1,134 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
const { spawn } = require("child_process");
|
|
3
|
-
const
|
|
3
|
+
const path = require("path");
|
|
4
|
+
const fs = require("fs");
|
|
5
|
+
const os = require("os");
|
|
4
6
|
const semiver = require("semiver");
|
|
5
7
|
|
|
6
8
|
const MIN_NODE_VERSION = "16.7.0";
|
|
7
9
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
let wranglerProcess;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Executes ../wrangler-dist/cli.js
|
|
14
|
+
*/
|
|
15
|
+
function runWrangler() {
|
|
16
|
+
if (semiver(process.versions.node, MIN_NODE_VERSION) < 0) {
|
|
17
|
+
// Note Volta and nvm are also recommended in the official docs:
|
|
18
|
+
// https://developers.cloudflare.com/workers/get-started/guide#2-install-the-workers-cli
|
|
19
|
+
console.error(
|
|
20
|
+
`Wrangler requires at least Node.js v${MIN_NODE_VERSION}. You are using v${process.versions.node}.
|
|
14
21
|
You should use the latest Node.js version if possible, as Cloudflare Workers use a very up-to-date version of V8.
|
|
15
22
|
Consider using a Node.js version manager such as https://volta.sh/ or https://github.com/nvm-sh/nvm.`
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
23
|
+
);
|
|
24
|
+
process.exitCode = 1;
|
|
25
|
+
return;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
let pathToCACerts = process.env.NODE_EXTRA_CA_CERTS;
|
|
29
|
+
if (pathToCACerts) {
|
|
30
|
+
// TODO:
|
|
31
|
+
// - should we log a warning here?
|
|
32
|
+
// - maybe we can generate a certificate that concatenates with ours?
|
|
33
|
+
//
|
|
34
|
+
// I do think it'll be rare that someone wants to add a cert AND
|
|
35
|
+
// use cloudflare WARP, but let's wait till the situation actually
|
|
36
|
+
// arises before we do anything about it
|
|
37
|
+
} else {
|
|
38
|
+
const osTempDir = os.tmpdir();
|
|
39
|
+
const certDir = path.join(osTempDir, "wrangler-cert");
|
|
40
|
+
const certPath = path.join(certDir, "Cloudflare_CA.pem");
|
|
41
|
+
// copy cert to the system temp dir if needed
|
|
42
|
+
if (!fs.existsSync(certPath)) {
|
|
43
|
+
fs.mkdirSync(certDir, { recursive: true });
|
|
44
|
+
fs.writeFileSync(
|
|
45
|
+
certPath,
|
|
46
|
+
fs.readFileSync(path.join(__dirname, "../Cloudflare_CA.pem"), "utf-8")
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
pathToCACerts = certPath;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
return spawn(
|
|
53
|
+
process.execPath,
|
|
54
|
+
[
|
|
55
|
+
"--no-warnings",
|
|
56
|
+
"--experimental-vm-modules",
|
|
57
|
+
...process.execArgv,
|
|
58
|
+
path.join(__dirname, "../wrangler-dist/cli.js"),
|
|
59
|
+
...process.argv.slice(2),
|
|
60
|
+
],
|
|
61
|
+
{
|
|
62
|
+
stdio: "inherit",
|
|
63
|
+
env: {
|
|
64
|
+
...process.env,
|
|
65
|
+
NODE_EXTRA_CA_CERTS: pathToCACerts,
|
|
66
|
+
},
|
|
67
|
+
}
|
|
68
|
+
).on("exit", (code) =>
|
|
69
|
+
process.exit(code === undefined || code === null ? 0 : code)
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Runs a locally-installed version of wrangler, delegating from this version.
|
|
75
|
+
* @throws {MODULE_NOT_FOUND} if there isn't a locally installed version of wrangler.
|
|
76
|
+
*/
|
|
77
|
+
function runDelegatedWrangler() {
|
|
78
|
+
const packageJsonPath = require.resolve("wrangler/package.json", {
|
|
79
|
+
paths: [process.cwd()],
|
|
80
|
+
});
|
|
81
|
+
const {
|
|
82
|
+
bin: { wrangler: binaryPath },
|
|
83
|
+
version,
|
|
84
|
+
} = JSON.parse(fs.readFileSync(packageJsonPath));
|
|
85
|
+
const resolvedBinaryPath = path.resolve(packageJsonPath, "..", binaryPath);
|
|
86
|
+
|
|
87
|
+
console.log(
|
|
88
|
+
`Delegating to locally-installed version of wrangler @ v${version}`
|
|
89
|
+
);
|
|
90
|
+
// this call to `spawn` is simpler because the delegated version will do all
|
|
91
|
+
// of the other work.
|
|
92
|
+
return spawn(
|
|
93
|
+
process.execPath,
|
|
94
|
+
[resolvedBinaryPath, ...process.argv.slice(2)],
|
|
95
|
+
{
|
|
96
|
+
stdio: "inherit",
|
|
97
|
+
}
|
|
98
|
+
).on("exit", (code) =>
|
|
99
|
+
process.exit(code === undefined || code === null ? 0 : code)
|
|
100
|
+
);
|
|
34
101
|
}
|
|
35
102
|
|
|
103
|
+
/**
|
|
104
|
+
* Indicates if this invocation of `wrangler` should delegate
|
|
105
|
+
* to a locally-installed version.
|
|
106
|
+
*/
|
|
107
|
+
function shouldDelegate() {
|
|
108
|
+
try {
|
|
109
|
+
// `require.resolve` will throw if it can't find
|
|
110
|
+
// a locally-installed version of `wrangler`
|
|
111
|
+
const delegatedPackageJson = require.resolve("wrangler/package.json", {
|
|
112
|
+
paths: [process.cwd()],
|
|
113
|
+
});
|
|
114
|
+
const thisPackageJson = path.resolve(__dirname, "..", "package.json");
|
|
115
|
+
// if it's the same path, then we're already a local install -- no need to delegate
|
|
116
|
+
return thisPackageJson !== delegatedPackageJson;
|
|
117
|
+
} catch (e) {
|
|
118
|
+
// there's no local version to delegate to -- `require.resolve` threw
|
|
119
|
+
return false;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
async function main() {
|
|
124
|
+
wranglerProcess = shouldDelegate() ? runDelegatedWrangler() : runWrangler();
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
process.on("SIGINT", () => {
|
|
128
|
+
wranglerProcess?.kill();
|
|
129
|
+
});
|
|
130
|
+
process.on("SIGTERM", () => {
|
|
131
|
+
wranglerProcess?.kill();
|
|
132
|
+
});
|
|
133
|
+
|
|
36
134
|
void main();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@cloudflare/kv-asset-handler";
|