Skip to content

Commit

Permalink
fixed build tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Dec 5, 2015
1 parent 203252a commit 69ff33f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ var server;

gulp.task('default', ['build:dev']);

gulp.task('dev', ['watch', 'serve']);
gulp.task('dev', function(callback) {
sequence('build:dev', 'build:examples', 'watch', 'serve', callback);
});

gulp.task('release', function(callback) {
sequence('build:dev', 'test', 'build:release', 'bump', 'doc', 'changelog', 'tag', callback);
sequence('build:dev', 'build:examples', 'test', 'build:release', 'bump', 'doc', 'changelog', 'tag', callback);
});

gulp.task('build:dev', function() {
Expand Down

0 comments on commit 69ff33f

Please sign in to comment.