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() {