From 47f0914de4b6b15abec220758dfc692a45d64ce2 Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Wed, 16 Mar 2022 13:52:12 +0100 Subject: [PATCH] fix: lint sequentially to catch errors (#45441) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index de3492e6fb..d8d54ca68e 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "lint": "npm-run-all create:config -p lint:*", "lint:challenges": "cd ./curriculum && npm run lint", "lint:js": "eslint --max-warnings 0 .", - "lint:ts": "tsc & tsc -p config & tsc -p tools/ui-components", + "lint:ts": "tsc && tsc -p config && tsc -p tools/ui-components", "lint:prettier": "prettier --list-different .", "seed": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedAuthUser", "seed:certified-user": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedAuthUser certUser",