Skip to content

Commit

Permalink
Remove prepublish and push hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
dherault committed May 5, 2020
1 parent 910f634 commit 5b61858
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .huskyrc.js
Expand Up @@ -3,6 +3,6 @@
module.exports = {
hooks: {
'pre-commit': 'npm run lint',
'pre-push': 'npm run lint && npm build && npm test',
// 'pre-push': 'npm run lint && npm build && npm test',
},
}
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -11,7 +11,7 @@
"lint": "eslint .",
"list-contributors": "echo 'clone https://github.com/mgechev/github-contributors-list.git first, then run npm install' && cd ../github-contributors-list && node bin/githubcontrib --owner dherault --repo serverless-offline --sortBy contributions --showlogin true --sortOrder desc > contributors.md",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run build && npm test",
"prepublishOnly": "npm run lint && npm run build",
"test": "npm run build && jest --verbose --silent --runInBand",
"test:cov": "npm run build && jest --coverage --silent --runInBand --collectCoverageFrom=src/**/*.js",
"test:log": "npm run build && jest --verbose"
Expand Down

0 comments on commit 5b61858

Please sign in to comment.