From 468f7f39817ecb1e093013c1e4c24c4f7265ec34 Mon Sep 17 00:00:00 2001 From: Marek Grzybek Date: Mon, 4 Aug 2014 18:03:41 +0200 Subject: [PATCH] bower.json added to gulp-bump --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index c87fdce1..0ce45247 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -80,14 +80,14 @@ gulp.task('html', function() { // Bump to a new version gulp.task('bump-minor', function () { - return gulp.src('./package.json') + return gulp.src(['./bower.json', './package.json']) .pipe(plugins.bump({type:'minor'})) .pipe(gulp.dest('./')); }); // Bump to a new version gulp.task('bump-patch', function () { - return gulp.src('./package.json') + return gulp.src(['./bower.json', './package.json']) .pipe(plugins.bump({type:'patch'})) .pipe(gulp.dest('./')); });