Fix gulpfile default task stuck on runServer

This commit is contained in:
orz 2017-07-31 01:55:13 +03:00
parent 37837e9902
commit 463f8511ce

View File

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