vsc-material-theme/.gulp/tasks/changelog.js

18 lines
315 B
JavaScript
Raw Normal View History

2017-02-04 14:56:29 +01:00
'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('./'));
});