vsc-material-theme/.gulp/tasks/changelog.js
2017-02-04 14:56:29 +01: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('./'));
});