From 69ff33fc7bb0c1ba62ee646f35e873f4b471fdfb Mon Sep 17 00:00:00 2001 From: liabru Date: Sat, 5 Dec 2015 16:34:48 +0000 Subject: [PATCH] fixed build tasks --- Gulpfile.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Gulpfile.js b/Gulpfile.js index a96d386..0ad7ca2 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -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() {