Skip to content

Commit

Permalink
ci: added generate-changelog as dev. dependency + related scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
vsimko committed Oct 13, 2017
1 parent e26ac2a commit a2ffca3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@
"description": "A pure javascript implementation of Phil Harvey's excellent exiftool. This extends work started by Jacob Seidelin and aims to support parsing of all the tags that exiftool is capable of.",
"main": "exiftool.js",
"devDependencies": {
"mocha": "2.2.1"
"mocha": "2.2.1",
"generate-changelog": "^1.5.0"
},
"scripts": {
"test": "mocha"
"test": "mocha",
"release:major": "generate-changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version major && git push origin && git push origin --tags",
"release:minor": "generate-changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version minor && git push origin && git push origin --tags",
"release:patch": "generate-changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version patch && git push origin && git push origin --tags"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit a2ffca3

Please sign in to comment.