Skip to content

Commit

Permalink
ci(lint): run lint scripts in series instead of parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
huafu committed Sep 19, 2018
1 parent a18e919 commit 70775f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -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",
Expand Down

0 comments on commit 70775f1

Please sign in to comment.