Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V3.x #453

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft

V3.x #453

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(hooks): remove ghooks in favor of husky
This replaces ghooks with husky. ghooks is deprecated in favor of husky. Contributors may need to

For commitizen developers, you need to do the following:

1. rm -rf .git/hooks
2. rm -rf node_modules
3. run npm install.

Closes #410
  • Loading branch information
jimthedev committed Jan 9, 2017
commit bc2b6cbb871c00e445c5706fb191a8bb7281a59e
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"commit": "node bin/git-cz",
"build": "babel src --out-dir dist",
"build:watch": "babel --watch src --out-dir dist",
"precommit": "npm run lint && npm run test && npm run check-coverage",
"prepublish": "not-in-install && npm run build || true",
"report-coverage": "nyc report --reporter=lcov | codecov",
"write-coverage": "nyc report --reporter=lcov",
Expand All @@ -21,9 +22,6 @@
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint && npm run test && npm run check-coverage"
}
},
"homepage": "https://github.com/commitizen/cz-cli",
Expand Down Expand Up @@ -60,7 +58,7 @@
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-standard": "2.0.1",
"ghooks": "1.3.2",
"husky": "0.12.0",
"in-publish": "^2.0.0",
"mocha": "3.1.2",
"node-uuid": "1.4.7",
Expand Down