Skip to content

Commit

Permalink
Add generate-changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lgaticaq committed Jun 21, 2016
1 parent 3b84d52 commit 3c00546
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"pretest": "eslint .",
"test": "istanbul cover _mocha",
"coveralls": "coveralls < coverage/lcov.info",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish"
},
"engines": {
"node": ">=4"
Expand Down Expand Up @@ -38,6 +41,7 @@
"codeclimate-test-reporter": "^0.3.3",
"coveralls": "^2.11.9",
"eslint": "^2.13.1",
"generate-changelog": "^1.0.2",
"istanbul": "^0.4.4",
"mocha": "^2.5.3"
},
Expand Down

0 comments on commit 3c00546

Please sign in to comment.