* Version bump tasks
(type)
| 84 | */ |
| 85 | |
| 86 | function getBumpTask(type) { |
| 87 | return function () { |
| 88 | return gulp.src(['./package.json', './bower.json']) |
| 89 | .pipe(bump({ type: type })) |
| 90 | .pipe(gulp.dest('./')); |
| 91 | }; |
| 92 | } |
| 93 | |
| 94 | gulp.task('bump', getBumpTask('patch')); |
| 95 | gulp.task('bump:minor', getBumpTask('minor')); |
no outgoing calls
no test coverage detected
searching dependent graphs…