I added design, animation and text as new commit types: see changes here
npm i https://github.com/ddennis/conventional-changelog-ddennis --save-dev
With gulp:
gulp.task('changelog', function () {
return gulp.src('CHANGELOG.md', {
buffer: false
})
.pipe(conventionalChangelog(
{
preset:'ddennis',
releaseCount:0
}
))
.pipe(gulp.dest('./'));
});