Skip to content

Commit

Permalink
chore: drop npm-run-all dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
cyco130 committed Jan 22, 2024
1 parent c53ac8f commit 1772a67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 305 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
run: pnpm install

- name: Run code quality checks and tests
run: pnpm run cq
run: pnpm run test:cq
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"prepack": "rimraf dist && pnpm build",
"build": "tsup",
"dev": "tsup --watch",
"cq": "pnpm run test:typecheck && pnpm run test:lint && pnpm run test:prettier",
"test": "run-p 'test:*'",
"test": "pnpm run /^test:/",
"test:cq": "pnpm run /^cq:/",
"test:unit": "vitest run",
"test:typecheck": "tsc -p tsconfig.json --noEmit",
"test:lint": "eslint src --max-warnings 0",
"test:prettier": "prettier --check test-files --ignore-unknown . '!pnpm-lock.yaml'",
"cq:typecheck": "tsc -p tsconfig.json --noEmit",
"cq:lint": "eslint src --max-warnings 0",
"cq:prettier": "prettier --check test-files --ignore-unknown . '!pnpm-lock.yaml'",
"format": "prettier . --write --ignore-path .gitignore --ignore-unknown . '!pnpm-lock.yaml'"
},
"files": [
Expand All @@ -41,7 +41,6 @@
"@types/babel__traverse": "^7.20.5",
"@types/node": "20.11.5",
"eslint": "^8.56.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
Expand Down
Loading

0 comments on commit 1772a67

Please sign in to comment.