Skip to content

Commit 6c1ada1

Browse files
committed
chore(package): Add generate-changelog
1 parent f9256c3 commit 6c1ada1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88
"test": "mocha --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul",
99
"posttest": "istanbul report text-summary lcov",
1010
"coveralls": "coveralls < coverage/lcov.info",
11-
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
11+
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
12+
"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",
13+
"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",
14+
"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"
1215
},
1316
"engines": {
1417
"node": ">=4"
@@ -42,6 +45,7 @@
4245
"coffee-script": "^1.10.0",
4346
"coffeelint": "^1.15.7",
4447
"coveralls": "^2.11.9",
48+
"generate-changelog": "^1.0.2",
4549
"hubot-test-helper": "^1.4.4",
4650
"istanbul": "^0.4.3",
4751
"mocha": "^2.5.3",

0 commit comments

Comments
 (0)