From 3762b77d4ccdabb5b24cb70c69fc5fbff956589e Mon Sep 17 00:00:00 2001 From: Matt Walsh Date: Wed, 29 Sep 2021 15:36:04 -0500 Subject: [PATCH] remove gulp-bump --- gulpfile.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index d5990c8..9a48ad8 100644 --- a/gulpfile.js +++ b/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('./')));