Skip to content

Commit

Permalink
fix: use concurrently instead of npm-run-all
Browse files Browse the repository at this point in the history
npm-run-all seems not to be maintained anymore. Additionally, concurrently better forwards signals to child processes.
  • Loading branch information
matthieusieben committed Feb 23, 2024
1 parent 5bd35f4 commit 8b991f8
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 108 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"lint": "eslint . --ext .ts,.js",
"style:fix": "prettier --write .",
"style": "prettier --check .",
"verify": "npm-run-all -p verify:*",
"verify": "concurrently 'pnpm run verify:lint' 'pnpm run verify:style' 'pnpm run verify:types'",
"verify:style": "pnpm run style",
"verify:lint": "pnpm lint",
"verify:types": "tsc --build tsconfig.json",
"format": "npm-run-all *:fix",
"format": "pnpm run lint:fix && pnpm run style:fix",
"build": "pnpm -r --stream build",
"dev": "npm-run-all -p dev:*",
"dev": "concurrently --kill-others -n tsc,packages 'pnpm run dev:tsc' 'pnpm run dev:packages'",
"dev:tsc": "tsc --build tsconfig.json --watch",
"dev:all": "pnpm -r --stream dev",
"dev:packages": "pnpm -r --stream dev",
"test": "LOG_ENABLED=false ./packages/dev-infra/with-test-redis-and-db.sh pnpm --stream -r test",
"test:withFlags": "LOG_ENABLED=false ./packages/dev-infra/with-test-redis-and-db.sh pnpm --stream -r test --",
"changeset": "changeset",
Expand All @@ -41,13 +41,13 @@
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"babel-eslint": "^10.1.0",
"concurrently": "^8.2.2",
"dotenv": "^16.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"node-gyp": "^9.3.1",
"npm-run-all": "^4.1.5",
"pino-pretty": "^9.1.0",
"prettier": "^2.7.1",
"prettier-config-standard": "^5.0.0",
Expand Down
142 changes: 39 additions & 103 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8b991f8

Please sign in to comment.