Skip to content

Commit

Permalink
chore(package): Add generate-changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lgaticaq committed May 30, 2016
1 parent c74827e commit afa6f93
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,7 +4,10 @@
"description": "Crea facilmente boleta de honorarios",
"main": "src",
"scripts": {
"prepublish": "eslint ."
"prepublish": "eslint .",
"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 All @@ -28,7 +31,8 @@
"request-promise": "^3.0.0"
},
"devDependencies": {
"eslint": "2.11.0"
"eslint": "2.11.0",
"generate-changelog": "^1.0.1"
},
"eslintConfig": {
"env": {
Expand Down

0 comments on commit afa6f93

Please sign in to comment.