From 9d396feb3f95f6521db8b4dea84390dec2db756e Mon Sep 17 00:00:00 2001 From: liabru Date: Tue, 19 Apr 2016 11:46:36 +0100 Subject: [PATCH] set release task to default to patch --- Gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.js b/Gulpfile.js index 339f0c5..8bb86e2 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -102,7 +102,7 @@ gulp.task('watch', function() { gulp.task('bump', function() { return gulp.src(['package.json', 'bower.json']) - .pipe(bump({ type: process.argv[4] || 'minor' })) + .pipe(bump({ type: process.argv[4] || 'patch' })) .pipe(gulp.dest('.')); });