From ad96dda2a00730e750e3e936087b8f68ed4fbb36 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Mon, 10 Aug 2015 10:21:42 -0500 Subject: [PATCH] always build before watching --- gulpfile.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index b967a6e4ca..99448ab1a6 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -76,6 +76,7 @@ gulp.task('clean.build', function(done) { gulp.task('watch', function(done) { runSequence( + 'build', 'serve', function() { watch([ @@ -102,10 +103,6 @@ gulp.task('watch', function(done) { ); }); -gulp.task('build.watch', function(done){ - runSequence('build', 'watch'); -}) - gulp.task('serve', function() { connect.server({ root: 'dist',