Skip to content

Commit c6f097d

Browse files
committed
Finish switch from npm-run-all to concurrently
1 parent 8e9f376 commit c6f097d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
"scripts": {
2626
"build:types": "tsc --project types.tsconfig.json",
2727
"build:js": "yarn babel --extensions '.ts' --presets @babel/preset-typescript addon-test-support --out-dir addon-test-support/ --ignore '**/*.d.ts'",
28-
"build": "npm-run-all --parallel build:*",
28+
"build": "concurrently \"npm:build:*\" --names \"build:\"",
2929
"prepack": "yarn build",
3030
"postpack": "rimraf addon-test-support/**/*.js",
3131
"clean": "git clean -x -f",
3232
"docs": "documentation build --document-exported \"addon-test-support/@ember/test-helpers/index.js\" --config documentation.yml --markdown-toc-max-depth 3 -f md -o API.md",
3333
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
3434
"lint:js": "eslint --cache .",
3535
"lint:ts": "tsc --noEmit && tsc --noEmit --project type-tests",
36-
"postpublish": "npm-run-all clean",
36+
"postpublish": "yarn clean",
3737
"release": "release-it",
3838
"start": "ember serve",
3939
"test": "concurrently \"npm:test:*\" --names \"test:\"",

0 commit comments

Comments
 (0)