Skip to content

Commit

Permalink
fix(standard-version): add --no-verify option (#330)
Browse files Browse the repository at this point in the history
Why? - Because `pre-commit` hook does many things now, which are unnecessary for the release task.
  • Loading branch information
ybiquitous committed Jan 31, 2019
1 parent 77127ee commit b9ecf57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"format": "npm-run-all --print-label --parallel lint:*:fix prettier:write",
"release": "standard-version --sign",
"release": "standard-version --sign --no-verify",
"release:dry-run": "npm run release -- --dry-run"
},
"husky": {
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/package-empty_expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"format": "npm-run-all --print-label --parallel lint:*:fix prettier:write",
"release": "standard-version --sign",
"release": "standard-version --sign --no-verify",
"release:dry-run": "npm run release -- --dry-run"
},
"husky": {
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/package-normal_expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"format": "npm-run-all --print-label --parallel lint:*:fix prettier:write",
"release": "standard-version --sign",
"release": "standard-version --sign --no-verify",
"release:dry-run": "npm run release -- --dry-run"
},
"husky": {
Expand Down

0 comments on commit b9ecf57

Please sign in to comment.