Skip to content
This repository has been archived by the owner on Jan 18, 2019. It is now read-only.

Commit

Permalink
correct changelog generation
Browse files Browse the repository at this point in the history
  • Loading branch information
hypery2k committed Nov 8, 2016
1 parent 7e2d443 commit 2d719f0
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
33 changes: 31 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<a name="0.4.0-dev"></a>
# [0.4.0-dev](https://github.com/holisticon/angular-common/compare/v0.3.0...v0.4.0-dev) (2016-10-27)
<a name="0.3.5"></a>
## [0.3.5](https://github.com/holisticon/angular-common/compare/v0.3.3...v0.3.5) (2016-10-27)


### Bug Fixes
Expand All @@ -10,3 +10,32 @@



<a name="0.3.2"></a>
## [0.3.2](https://github.com/holisticon/angular-common/compare/v0.3.1...v0.3.2) (2016-10-25)



<a name="0.3.0"></a>
# [0.3.0](https://github.com/holisticon/angular-common/compare/v0.2.1...v0.3.0) (2016-10-25)



<a name="0.2.1"></a>
## [0.2.1](https://github.com/holisticon/angular-common/compare/v0.2.0...v0.2.1) (2016-10-24)



<a name="0.2.0"></a>
# [0.2.0](https://github.com/holisticon/angular-common/compare/v0.1.1...v0.2.0) (2016-10-21)



<a name="0.1.1"></a>
## [0.1.1](https://github.com/holisticon/angular-common/compare/v0.1.0...v0.1.1) (2016-10-10)



<a name="0.1.0"></a>
# 0.1.0 (2016-10-10)


6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
"tslint": "tslint \"test/**/*.ts\" --exclude \"test/node_modules/**/*\"",
"tsc": "tsc",
"jsdoc": "jsdoc -c ./jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md ./etc",
"release": "npm run build && npm run test && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
"changelog":"conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:add":"git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:major": "npm run changelog && npm run changelog:add && npm version major && git push origin && git push origin --tags",
"release:minor": "npm run changelog && npm run changelog:add && npm version minor && git push origin && git push origin --tags",
"release:patch": "npm run changelog && npm run changelog:add && npm version patch && git push origin && git push origin --tags"
},
"dependencies": {
"@types/core-js": "0.9.34",
Expand Down

0 comments on commit 2d719f0

Please sign in to comment.