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' } + ] +};