From 80412914ce3e24d81830b6ea52dd28c021ecec5c Mon Sep 17 00:00:00 2001 From: royriojas Date: Sun, 12 Jul 2015 19:43:14 -0700 Subject: [PATCH] BLD: Automate generation of changelog and commit message for it --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 239d422..f5521ca 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "lint": "npm run beautify && npm run eslint && npm test", "check": "npm run beautify-check && npm run eslint && npm test", "changelog": "changelogx -f markdown -o ./changelog.md", + "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog'", "install-hooks": "prepush install && changelogx install-hook", "bump": "bumpery --versionType=patch && npm run changelog && git add changelog.md && git commit -m 'DOC: Generate changelog'" },