Reverse lint/typecheck order - typecheck should be first, as it points out more important issues

This commit is contained in:
Kuba Orlik 2024-05-01 16:32:05 +02:00
parent f60cac2d77
commit c85755fa9c

View File

@ -11,7 +11,7 @@
"typecheck:front": "tsc --noEmit --target es6 --lib es2015,dom -p tsconfig-front.json", "typecheck:front": "tsc --noEmit --target es6 --lib es2015,dom -p tsconfig-front.json",
"typecheck": "npm run typecheck:back && npm run typecheck:front", "typecheck": "npm run typecheck:back && npm run typecheck:front",
"prewatch": "rm -rf dist/* && npm run build", "prewatch": "rm -rf dist/* && npm run build",
"build": "rm -rf dist && sealgen build && npm run lint && npm run typecheck", "build": "rm -rf dist && sealgen build && npm run typecheck && npm run lint",
"watch": "multiple-scripts-tmux -p watch", "watch": "multiple-scripts-tmux -p watch",
"reset-db": "docker-compose down && docker-compose up -d", "reset-db": "docker-compose down && docker-compose up -d",
"install-test-deps": "npx playwright install firefox", "install-test-deps": "npx playwright install firefox",