Skip to content

Commit

Permalink
feat(init): add pretest script (#1142)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: `npm test` runs not only testing, but also linting.
  • Loading branch information
ybiquitous committed Dec 14, 2021
1 parent b2eef5b commit 0055333
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"typescript": "^4.5.4"
},
"scripts": {
"pretest": "npm run lint",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage && npm run test:types",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
Expand Down
2 changes: 2 additions & 0 deletions test/__snapshots__/init.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Object {
"lint:types:watch": "npm run lint:types -- --watch",
"prepare": "husky install",
"prerelease": "git switch main && git pull && npm ci && npm run clean && npm test && npm run lint && npm run clean",
"pretest": "npm run lint",
"prettier": "prettier --ignore-path .gitignore .",
"release": "standard-version",
"release:dry-run": "standard-version --dry-run",
Expand Down Expand Up @@ -117,6 +118,7 @@ Object {
"lint:types:watch": "npm run lint:types -- --watch",
"prepare": "husky install",
"prerelease": "git switch main && git pull && npm ci && npm run clean && npm test && npm run lint && npm run clean",
"pretest": "npm run lint",
"prettier": "prettier --ignore-path .gitignore .",
"release": "standard-version",
"release:dry-run": "standard-version --dry-run",
Expand Down

0 comments on commit 0055333

Please sign in to comment.