Skip to content

Commit 8266927

Browse files
authored
Merge pull request #45 from gitKrystan/concurrently
Switch from npm-run-all to concurrently
2 parents 551ceda + 1c9dd58 commit 8266927

2 files changed

Lines changed: 42 additions & 123 deletions

File tree

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
"build": "tsc && vite build",
3333
"example": "vite build && ./node_modules/.bin/prettier --plugin . --write examples/example.gjs",
3434
"example-ts": "vite build && ./node_modules/.bin/prettier --plugin . --write examples/example.gts",
35-
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
36-
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
35+
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
36+
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"",
3737
"lint:eslint": "eslint . --cache",
3838
"lint:eslint:fix": "eslint . --fix",
3939
"lint:prettier": "prettier --check .",
@@ -61,6 +61,7 @@
6161
"@typescript-eslint/eslint-plugin": "^5.50.0",
6262
"@typescript-eslint/parser": "^5.50.0",
6363
"@vitest/ui": "^0.28.3",
64+
"concurrently": "^7.6.0",
6465
"eslint": "^8.33.0",
6566
"eslint-config-prettier": "^8.6.0",
6667
"eslint-import-resolver-typescript": "^3.5.3",
@@ -69,7 +70,6 @@
6970
"eslint-plugin-jsdoc": "^39.7.5",
7071
"eslint-plugin-unicorn": "^45.0.2",
7172
"eslint-plugin-vitest": "^0.0.32",
72-
"npm-run-all": "^4.1.5",
7373
"prettier-plugin-jsdoc": "^0.4.2",
7474
"release-it": "^15.6.0",
7575
"typescript": "^4.9.5",

pnpm-lock.yaml

Lines changed: 39 additions & 120 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)