0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-12-25 13:39:06 -05:00

set release task to default to patch

This commit is contained in:
liabru 2016-04-19 11:46:36 +01:00
parent f36fe2c329
commit 9d396feb3f

View file

@ -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('.'));
});