Skip to content

Commit

Permalink
fix(changelog): include all commit types in CHANGELOG.md
Browse files Browse the repository at this point in the history
By default only `feat` and `fix` commits are included in the changelog generation process.

With this change any type of commit will be included in the appropriate section in the changelog.
  • Loading branch information
SMerdzhanov committed Jun 5, 2020
1 parent 064bc53 commit 4767f61
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .versionrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
types: [
{ type: 'build', section: 'Build' },
{ type: 'chore', section: 'Chores' },
{ type: 'ci', section: 'CI' },
{ type: 'docs', section: 'Docs' },
{ type: 'feat', section: 'Features' },
{ type: 'fix', section: 'Bug Fixes' },
{ type: 'perf', section: 'Performance' },
{ type: 'refactor', section: 'Refactor' },
{ type: 'revert', section: 'Revert' },
{ type: 'style', section: 'Style' },
{ type: 'test', section: 'Test' }
]
};

0 comments on commit 4767f61

Please sign in to comment.