mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-14 07:39:29 -07:00
remove gulp-bump
This commit is contained in:
13
gulpfile.js
13
gulpfile.js
@@ -1,17 +1,4 @@
|
|||||||
const gulp = require('gulp');
|
const gulp = require('gulp');
|
||||||
const bump = require('gulp-bump');
|
|
||||||
|
|
||||||
gulp.task('update-vendor', require('./gulp/update-vendor'));
|
gulp.task('update-vendor', require('./gulp/update-vendor'));
|
||||||
gulp.task('publish-frontend', require('./gulp/publish-frontend'));
|
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('./')));
|
|
||||||
|
|||||||
Reference in New Issue
Block a user