vsc-material-theme/.gulp/tasks/changelog.js
2017-05-10 09:37:48 +02:00

18 lines
No EOL
315 B
JavaScript

'use strict';
/*
* > Changelog
*/
import Gulp from 'gulp';
import conventionalChangelog from 'gulp-conventional-changelog';
Gulp.task('changelog', () => {
return Gulp.src('CHANGELOG.md')
.pipe(conventionalChangelog({
preset: 'angular',
releaseCount: 0
}))
.pipe(Gulp.dest('./'));
});