Skip to content

Commit abf8eba

Browse files
test(package.json/check-all): run all checks in parallel
1 parent f04f443 commit abf8eba

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

bun.lockb

1.98 KB
Binary file not shown.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
],
3838
"scripts": {
3939
"build": "bun --bun tsup",
40-
"check-all": "bun run test && bun lint && bun type-check && bun format:check",
40+
"check-all": "concurrently --kill-others=failure 'bun run test' 'bun lint' 'bun type-check' 'bun format:check'",
4141
"test": "bun run build && bun test",
4242
"format": "bun format:base --write",
4343
"format:check": "bun format:base --check",
@@ -57,6 +57,7 @@
5757
"@types/bun": "^1.1.8",
5858
"@types/eslint__js": "^8.42.3",
5959
"@types/semver": "^7.5.8",
60+
"concurrently": "^9.0.0",
6061
"eslint": "^9.10.0",
6162
"eslint-config-prettier": "^9.1.0",
6263
"husky": "^9.1.5",

0 commit comments

Comments
 (0)