From 70775f1d0e6dd221cf205723376286c170b32d2b Mon Sep 17 00:00:00 2001 From: Huafu Gandon Date: Wed, 19 Sep 2018 17:23:17 +0200 Subject: [PATCH] ci(lint): run lint scripts in series instead of parallel --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e73edeb31b..3031974482 100644 --- a/package.json +++ b/package.json @@ -10,13 +10,13 @@ "build": "tsc -p tsconfig.build.json", "build:watch": "tsc -p tsconfig.build.json -w", "clean": "node scripts/clean.js", - "pretest": "run-p typecheck lint", + "pretest": "run-s typecheck lint", "test": "run-s -s test:e2e \"test:unit -- {@}\" --", "test:prepare": "npm run test:e2e -- --prepareOnly", "test:e2e": "node scripts/e2e.js", "test:unit": "jest", "test:external": "node scripts/test-external-project.js", - "lint": "run-p lint:ts lint:js", + "lint": "run-s lint:ts lint:js", "lint:js": "eslint . -f stylish", "lint:ts": "tslint -t stylish --project .", "lint:fix": "run-s lint:fix:ts lint:fix:js",