From 463f8511cea757092f58247f7e15882e29684a67 Mon Sep 17 00:00:00 2001 From: orz Date: Mon, 31 Jul 2017 01:55:13 +0300 Subject: [PATCH] Fix gulpfile default task stuck on runServer --- {{cookiecutter.project_slug}}/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/gulpfile.js b/{{cookiecutter.project_slug}}/gulpfile.js index b9358f611..594fa0901 100644 --- a/{{cookiecutter.project_slug}}/gulpfile.js +++ b/{{cookiecutter.project_slug}}/gulpfile.js @@ -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']); });