chore: 🔧 improve changelog

This commit is contained in:
AP 2020-06-23 11:01:26 +02:00
parent dffad10bf2
commit cfbbceb156
2 changed files with 15 additions and 16 deletions

View File

@ -1,16 +0,0 @@
{
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Improvements"
}
]
}

15
.versionrc.js Normal file
View File

@ -0,0 +1,15 @@
module.exports = {
types: [
{ type: 'feat', section: 'Features', hidden: false },
{ type: 'chore', section: 'Improvements', hidden: false },
{ type: 'fix', section: 'Bug Fixes', hidden: false },
{ type: 'refactor', section: 'Refactoring', hidden: false },
{ type: 'perf', section: 'Performance', hidden: false },
{ type: 'revert', section: 'Reverts', hidden: false },
{ type: 'docs', section: 'Docs', hidden: false },
{ type: 'style', section: 'Styling', hidden: false },
{ type: 'test', section: 'Tests', hidden: false },
{ type: 'build', section: 'Build', hidden: false },
{ type: 'ci', section: 'CI', hidden: false },
],
};