From 539707c2f9e83248356223450d37f001c230daa2 Mon Sep 17 00:00:00 2001 From: nmccready Date: Thu, 12 Sep 2024 21:00:28 -0400 Subject: [PATCH] chore: build before lint --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index eb02dfa..c332e40 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "docs:api:markdown": "npx typedoc --theme markdown --exclude ./src/test --out ./docs/api ./src", "docs:api:website": "npx typedoc --exclude ./src/test --out docs ./src", "jest": "npx jest", - "lint": "eslint --ext .js,.ts,.tsx *.js src test --color", + "lint": "npm run build && eslint --ext .js,.ts,.tsx *.js src test --color", "mocha": "mocha", "prepare": "npx sort-package-json", "test": "npm run build && npm run jest",