Skip to content

Commit

Permalink
ref(dev): Parallelize linting (#3243)
Browse files Browse the repository at this point in the history
  • Loading branch information
lobsterkatie authored Feb 17, 2021
1 parent 61572bc commit acee572
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"build": "node ./scripts/verify-packages-versions.js && lerna run --stream --concurrency 1 --sort build",
"build:es5": "lerna run --stream --concurrency 1 --sort build:es5",
"build:esm": "lerna run --stream --concurrency 1 --sort build:esm",
"build:watch": "lerna run build:watch --stream --no-sort --concurrency 9999",
"clean": "lerna run --stream clean && lerna clean --yes",
"fix": "lerna run --stream --concurrency 1 fix",
"build:watch": "lerna run --parallel build:watch",
"clean": "lerna run --parallel clean && lerna clean --yes",
"fix": "lerna run --parallel fix",
"link:yarn": "lerna run --stream --concurrency 1 link:yarn",
"lint": "lerna run --stream --concurrency 1 lint",
"lint": "lerna run --parallel lint",
"test": "lerna run --stream --concurrency 1 --sort test",
"codecov": "codecov",
"pack:changed": "lerna run pack --since",
Expand Down

0 comments on commit acee572

Please sign in to comment.