Skip to content

Commit

Permalink
bower.json added to gulp-bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Marek Grzybek committed Aug 4, 2014
1 parent b6006fb commit 468f7f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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('./'));
});
Expand Down

0 comments on commit 468f7f3

Please sign in to comment.