From 53c21796efea73dd53733e4b995bb1dab39e7e0f Mon Sep 17 00:00:00 2001 From: devgioele Date: Thu, 21 Sep 2023 15:08:06 +0000 Subject: [PATCH] change order of steps of 'checks' script to enhance debugging (#292) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ac92b604..e21d7adf 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "test": "vitest run --passWithNoTests", "test:watch": "vitest watch --passWithNoTests", "typecheck": "tsc --project tsconfig.json --noEmit", - "checks": "npm run test && npm run lint && npm run typecheck", + "checks": "npm run typecheck && npm run lint && npm run test", "prepublishOnly": "npm run checks", "prepare": "npm run build", "preversion": "npm run checks",