From 9d95c2bf2b5ed5487a3c96defe5af5f6b6120a50 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Sat, 28 May 2016 11:39:04 -0700 Subject: [PATCH] gulpfile: also compile by default --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 0ec49cb..86ada6c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -55,4 +55,4 @@ gulp.task('clean', () => { return del(['build']); }); -gulp.task('default', ['watch']); +gulp.task('default', ['compile', 'watch']);