Upgrade to Wrangler 2

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-10-29 18:31:26 +02:00 committed by Roman Tsisyk
parent feb0f468ef
commit 7c3947d978
6 changed files with 2188 additions and 2025 deletions

View file

@ -10,7 +10,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: wrangler publish - name: wrangler publish
uses: cloudflare/wrangler-action@1.3.0 uses: cloudflare/wrangler-action@2.0.0
with: with:
apiToken: ${{ secrets.CF_API_TOKEN }} apiToken: ${{ secrets.CF_API_TOKEN }}
environment: prod environment: prod

View file

@ -12,22 +12,38 @@ npm i
## Development ## Development
Use `npx wrangler dev` for localhost development. Use `npx wrangler dev --local` for localhost development.
Use `npx wrangler dev` to test local changes using Cloudflare dev tools.
## Update node dependencies to their major versions
```bash
npm run upgrade
```
## Preview on workers.dev ## Preview on workers.dev
Use `npx wrangler preview` to open and test deployed worker in browser. Use `npx wrangler publish` to open and test deployed worker in browser at https://meta-dev.omaps.workers.dev
## Monitor Worker logs
For dev: `npx wrangler tail [--format json]`
For production: `npx wrangler tail --env prod [--format json]`
## Deployment ## Deployment
All pushes to master automatically deploy dev version to https://meta.omaps.workers.dev/ All pushes to master automatically deploy prod version to https://meta.omaps.workers.dev/ and https://meta.omaps.app/
Deploy to prod manually using `npx wrangler publish --env prod` or this Deploy to prod manually using `npx wrangler publish --env prod` or this
[action](https://github.com/organicmaps/meta/actions/workflows/deploy-master-to-prod.yml). [action](https://github.com/organicmaps/meta/actions/workflows/deploy-master-to-prod.yml).
Deploy to test dev version live at https://meta-dev.omaps.workers.dev/ manually using `npx wrangler publish`.
## Known issues ## Known issues
- Cloudflare's free Flexible SSL certificates does not support 4-th level - Cloudflare's free Flexible SSL certificates do not support 4-th level
subdomains like a.b.example.com, so you can see strange SSL errors. subdomains like a.b.example.com, so you can see strange SSL errors.
- HTTPS `fetch` requests from Workers are converted to HTTP ones if the target - HTTPS `fetch` requests from Workers are converted to HTTP ones if the target
host is in the same Cloudflare zone, see [here](https://community.cloudflare.com/t/does-cloudflare-worker-allow-secure-https-connection-to-fetch-even-on-flexible-ssl/68051/12) host is in the same Cloudflare zone, see [here](https://community.cloudflare.com/t/does-cloudflare-worker-allow-secure-https-connection-to-fetch-even-on-flexible-ssl/68051/12)

4151
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -16,20 +16,19 @@
"author": "Alexander Borsuk <me@alex.bio>", "author": "Alexander Borsuk <me@alex.bio>",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@cloudflare/workers-types": "^3.16.0", "@cloudflare/workers-types": "^4.20221111.1",
"@cloudflare/wrangler": "^1.19.13", "@types/jest": "^29.2.3",
"@types/jest": "^29.0.3", "@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/eslint-plugin": "^5.38.0", "@typescript-eslint/parser": "^5.43.0",
"@typescript-eslint/parser": "^5.38.0", "esbuild": "^0.15.15",
"esbuild": "^0.15.9", "eslint": "^8.28.0",
"eslint": "^8.24.0", "jest": "^29.3.1",
"jest": "^29.0.3", "jest-environment-miniflare": "^2.11.0",
"jest-environment-miniflare": "^2.9.0", "miniflare": "^2.11.0",
"miniflare": "^2.9.0",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"prettier-plugin-toml": "^0.3.1", "prettier-plugin-toml": "^0.3.1",
"ts-jest": "^29.0.2", "ts-jest": "^29.0.3",
"typescript": "^4.8.3", "typescript": "^4.9.3",
"wrangler": "^2.1.6" "wrangler": "^2.4.2"
} }
} }

View file

@ -5,7 +5,7 @@
"module": "ES6", "module": "ES6",
"moduleResolution": "node", "moduleResolution": "node",
"target": "ESNext", "target": "ESNext",
"lib": ["ESNext", "webworker"], "lib": ["ESNext"],
"alwaysStrict": true, "alwaysStrict": true,
"strict": true, "strict": true,
"preserveConstEnums": true, "preserveConstEnums": true,

View file

@ -1,14 +1,15 @@
# Default worker is for dev only. # Default worker is for dev only.
# See omaps and organicmaps environments below for production. # See omaps and organicmaps environments below for production.
name = 'meta-dev' name = 'meta-dev'
type = 'javascript' main = 'src/index.ts'
compatibility_date = '2021-11-11' compatibility_date = '2022-11-21'
# Organic Maps CF Account ID. # Organic Maps CF Account ID.
account_id = '462f578f0939f041e2c24ec99adce458' account_id = '462f578f0939f041e2c24ec99adce458'
workers_dev = true workers_dev = true
# Whether Wrangler should send usage metrics to Cloudflare for this project.
send_metrics = false
[build] [build]
upload.format = 'service-worker'
command = 'npm ci --prefer-offline --no-audit && npm run build' command = 'npm ci --prefer-offline --no-audit && npm run build'
[vars] [vars]
@ -17,8 +18,6 @@ DEBUG = true
[env.prod] [env.prod]
name = 'meta' name = 'meta'
workers_dev = false workers_dev = false
# omaps.app CF zone ID.
zone_id = '3fce06554abc3899504e11d928be0ee7'
# See the full list of handled paths in the code. # See the full list of handled paths in the code.
route = 'meta.omaps.app/*' route = 'meta.omaps.app/*'