Skip to content

Commit

Permalink
feat(dependencies): install commit releated npm package
Browse files Browse the repository at this point in the history
Initial a project with commit message check tools, and write
some npm scripts for git hook.
  • Loading branch information
cpselvis committed Mar 4, 2017
1 parent 077b8ea commit 7f947cb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.idea/
.DS_Store
/lib
node_modules
npm-debug.log
15 changes: 15 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "application-name",
"version": "0.1.0",
"scripts": {
"commitmsg": "validate-commit-msg",
"commit": "git-cz ",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"devDependencies": {
"commitizen": "^2.3.0",
"validate-commit-msg": "^2.11.1",
"conventional-changelog-cli": "^1.2.0",
"husky": "^0.13.1"
}
}

0 comments on commit 7f947cb

Please sign in to comment.