remove gulp-bump
This commit is contained in:
parent
c6c4c5ff6c
commit
3762b77d4c
13
gulpfile.js
13
gulpfile.js
|
@ -1,17 +1,4 @@
|
|||
const gulp = require('gulp');
|
||||
const bump = require('gulp-bump');
|
||||
|
||||
gulp.task('update-vendor', require('./gulp/update-vendor'));
|
||||
gulp.task('publish-frontend', require('./gulp/publish-frontend'));
|
||||
|
||||
gulp.task('bump_patch', () => gulp.src('./package.json')
|
||||
.pipe(bump())
|
||||
.pipe(gulp.dest('./')));
|
||||
|
||||
gulp.task('bump_minor', () => gulp.src('./package.json')
|
||||
.pipe(bump({ type: 'minor' }))
|
||||
.pipe(gulp.dest('./')));
|
||||
|
||||
gulp.task('bump_major', () => gulp.src('./package.json')
|
||||
.pipe(bump({ type: 'major' }))
|
||||
.pipe(gulp.dest('./')));
|
||||
|
|
Loading…
Reference in a new issue