Skip to content

Commit 1334a71

Browse files
author
Shuwen Qian
committed
bleh
1 parent 914c354 commit 1334a71

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

gulp/tasks/release.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
.pipe(gulp.dest(C.ROOT));
1717
}
1818

19-
gulp.task('bump:major', inc('major'));
20-
gulp.task('bump:minor', inc('minor'));
21-
gulp.task('bump:patch', inc('patch'));
19+
gulp.task('bump:major', function() { return inc('major'); });
20+
gulp.task('bump:minor', function() { return inc('minor'); });
21+
gulp.task('bump:patch', function() { return inc('patch'); });
2222

2323
gulp.task('release:major', function() {
2424
run('bump:major', 'build:prod', 'changelog', 'stage-release', 'tag-release');

0 commit comments

Comments
 (0)