Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
fix(core): updating instructions on how to generate the changelog for…
Browse files Browse the repository at this point in the history
… releases (#1587)
  • Loading branch information
lirantal committed Oct 21, 2016
1 parent fd154c7 commit 99496e6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Expand Up @@ -51,7 +51,7 @@ Example implementation in file.js
Fixes #82
```

* Types:
* Types:
* feat - Features, Enhancements, and overall Improvements
* fix - Fixes, Bugs, HotFixs, etc...
* doc - Changes to the Documentation and doesn't actually touch any code.
Expand Down Expand Up @@ -82,4 +82,6 @@ The code for the documentation and the website are located in the meanjs/mean re

For those who will be generating releases:
* Don't forget to update the changelog!
* `conventional-changelog -r 1 | cat - CHANGELOG.md | tee CHANGELOG.md`
* Install the changelog cli tool: `npm install conventional-changelog-cli`
* Generate the updated changelog `node_modules/.bin/conventional-changelog -r 1 > /tmp/release && cat CHANGELOG.md >> /tmp/release && cat /tmp/release > CHANGELOG.md && rm /tmp/release`
* Review, and commit changes

0 comments on commit 99496e6

Please sign in to comment.