Add npm run logs

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-11-29 23:20:41 +01:00
parent e7ba263f54
commit e969d97dee
2 changed files with 4 additions and 1 deletions

View file

@ -31,6 +31,8 @@ Use `npx wrangler publish` to open and test deployed worker in browser at https:
For dev: `npx wrangler tail [--format json]`
For production: `npx wrangler tail --env prod [--format json]`
or
`npm run logs`
## Deployment

View file

@ -11,7 +11,8 @@
"lint:ci": "eslint --ext .tsx,.ts src/ --max-warnings 0",
"format": "prettier --write '{src,test}/**/*.{ts,tsx}' '*.json' '*.yml' '*.toml' '.github/**/*.yml'",
"format:ci": "prettier --check '{src,test}/**/*.{ts,tsx}' '*.json' '*.yml' '*.toml' '.github/**/*.yml'",
"upgrade": "npx npm-check-updates -u && npm install"
"upgrade": "npx npm-check-updates -u && npm install",
"logs": "npx wrangler tail --env prod --format json"
},
"author": "Alexander Borsuk <me@alex.bio>",
"license": "MIT",