diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:46:56 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:48:34 +0900 |
| commit | 13e9a10c1964bc40c698efa7bc8e47acc5cb25b4 (patch) | |
| tree | 4bb294331cac82e1e3095620f4ffeb02a46e4fc6 | |
| parent | 6b600ca0ca50c9322a95858bd7d4b6813a7ba2d5 (diff) | |
| download | iosdc-japan-2024-albatross-13e9a10c1964bc40c698efa7bc8e47acc5cb25b4.tar.gz iosdc-japan-2024-albatross-13e9a10c1964bc40c698efa7bc8e47acc5cb25b4.tar.zst iosdc-japan-2024-albatross-13e9a10c1964bc40c698efa7bc8e47acc5cb25b4.zip | |
chore(frontend): add `npm run check`
| -rw-r--r-- | frontend/package.json | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/frontend/package.json b/frontend/package.json index d54b3e0..30d385a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -5,12 +5,13 @@ "type": "module", "scripts": { "build": "remix vite:build", - "check": "biome check --write", + "check": "npm run check:biome && npm run check:ts && npm run check:eslint", + "check:biome": "biome check --write", + "check:eslint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .", + "check:ts": "tsc", "dev": "remix vite:dev", - "lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .", "openapi-typescript": "openapi-typescript --output ./app/.server/api/schema.d.ts ../openapi.yaml", - "start": "remix-serve ./build/server/index.js", - "typecheck": "tsc" + "start": "remix-serve ./build/server/index.js" }, "dependencies": { "@remix-run/node": "^2.10.3", |
