From c85755fa9cf957d14a9c0ecd30f5239b1cea0b39 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Wed, 1 May 2024 16:32:05 +0200 Subject: [PATCH] Reverse lint/typecheck order - typecheck should be first, as it points out more important issues --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5df459f..72cfda0 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "typecheck:front": "tsc --noEmit --target es6 --lib es2015,dom -p tsconfig-front.json", "typecheck": "npm run typecheck:back && npm run typecheck:front", "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", "reset-db": "docker-compose down && docker-compose up -d", "install-test-deps": "npx playwright install firefox",