From 4767f6194efecaec2ab20301df0103d24af6dd34 Mon Sep 17 00:00:00 2001 From: Stoyan Merdzhanov Date: Fri, 5 Jun 2020 03:22:58 +0300 Subject: [PATCH] fix(changelog): include all commit types in `CHANGELOG.md` 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. --- .versionrc.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .versionrc.js diff --git a/.versionrc.js b/.versionrc.js new file mode 100644 index 0000000..c69a956 --- /dev/null +++ b/.versionrc.js @@ -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' } + ] +};