Fix gulpfile default task stuck on runServer (#1260)

This commit is contained in:
orzarchi 2017-07-31 16:04:36 +03:00 committed by Shupeyko Nikita
parent fe903e5c14
commit d36ff72c0f

View File

@ -101,5 +101,5 @@ gulp.task('watch', function() {
// Default task
gulp.task('default', function() {
runSequence(['styles', 'scripts', 'imgCompression'], 'runServer', 'browserSync', 'watch');
runSequence(['styles', 'scripts', 'imgCompression'], ['runServer', 'browserSync', 'watch']);
});