Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function createChangelog() {
return gulp.src('./CHANGELOG.md', {buffer: false})
.pipe(changelog({preset: 'angular'}))
.pipe(gulp.dest('./'));
}
gulp.task('changelog', function() {
return gulp.src('CHANGELOG.md', {
buffer: false
})
.pipe(changelog({
preset: 'angular'
}))
.pipe(gulp.dest('./'));
});
gulp.task('changelog', (cb) => {
gulp.src(`${paths.root}/CHANGELOG.md`, { buffer: false })
.pipe(conventionalChangelog({ preset: 'angular' }))
.pipe(gulp.dest('./'))
.on('end', cb);
});
gulp.task('changelog', () => {
return gulp.src('CHANGELOG.md')
.pipe(conventionalChangelog({
preset: 'angular',
releaseCount: 0
}))
.pipe(gulp.dest('./'));
});
export function changelog() {
return gulp.src('CHANGELOG.md', {buffer: false})
.pipe(conventionalChangelog({preset: 'angular'}, {}, {}, {}, {
finalizeContext,
commitPartial
}))
.pipe(gulp.dest('./'));
}
function createChangelog() {
return gulp.src('./CHANGELOG.md', {buffer: false})
.pipe(changelog({preset: 'angular'}))
.pipe(gulp.dest('./'));
}
Gulp.task('changelog', () => {
return Gulp.src('CHANGELOG.md')
.pipe(conventionalChangelog({
preset: 'angular',
releaseCount: 0
}))
.pipe(Gulp.dest('./'));
});
gulp.task('changelog', (cb) => {
gulp.src(`${paths.root}/CHANGELOG.md`, { buffer: false })
.pipe(conventionalChangelog({ preset: 'angular' }))
.pipe(gulp.dest('./'))
.on('end', cb);
});