2020-09-04 13:02:20 -05:00
|
|
|
const gulp = require('gulp');
|
2021-01-04 11:58:58 -06:00
|
|
|
const bump = require('gulp-bump');
|
2020-09-04 13:02:20 -05:00
|
|
|
|
2020-09-24 21:29:03 -05:00
|
|
|
gulp.task('update-vendor', require('./gulp/update-vendor'));
|
2021-01-04 11:58:58 -06:00
|
|
|
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('./')));
|