Skip to content

Commit

Permalink
chore(scripts): use shorter arg aliases; remove debugging args from jest
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Mar 15, 2022
1 parent 80532fa commit ac15f3b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
"node": ">=12.0.0"
},
"scripts": {
"jest": "jest --detectOpenHandles --runInBand",
"jest:coverage": "jest --coverage --runInBand",
"jest": "jest",
"jest:coverage": "jest --coverage",
"lint": "eslint . --cache --ext js,jsx --ignore-path .gitignore",
"lint:licenses": "license-checker --direct --onlyAllow=\"0BSD;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;MIT;Unlicense\" --production --summary",
"lint:prettier": "prettier . --write --ignore-unknown",
"lint:prettier:ci": "prettier . --check --ignore-unknown",
"lint:prettier": "prettier . -w -u",
"lint:prettier:ci": "prettier . -c -u",
"prepare": "husky install",
"test": "npm run lint && npm run jest"
},
Expand Down

0 comments on commit ac15f3b

Please sign in to comment.