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

Commit 99496e6

Browse files
authored
fix(core): updating instructions on how to generate the changelog for releases (#1587)
1 parent fd154c7 commit 99496e6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Example implementation in file.js
5151
Fixes #82
5252
```
5353

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

8383
For those who will be generating releases:
8484
* Don't forget to update the changelog!
85-
* `conventional-changelog -r 1 | cat - CHANGELOG.md | tee CHANGELOG.md`
85+
* Install the changelog cli tool: `npm install conventional-changelog-cli`
86+
* 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`
87+
* Review, and commit changes

0 commit comments

Comments
 (0)