Skip lint and typecheck before starting watch

This commit is contained in:
Kuba Orlik 2024-05-11 11:14:09 +02:00
parent 28ed9a626d
commit cd1260e390

View File

@ -10,8 +10,9 @@
"typecheck:back": "tsc --noEmit --target es6 --lib es2021,dom -p tsconfig-back.json", "typecheck:back": "tsc --noEmit --target es6 --lib es2021,dom -p tsconfig-back.json",
"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 --ignore-scripts",
"build": "rm -rf dist && sealgen build && npm run typecheck && npm run lint", "build": "rm -rf dist && sealgen build ",
"postbuild": "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",