diff --git a/gulpfile.js b/gulpfile.js index 23ad1c0f0..99c1093ef 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -63,4 +63,6 @@ gulp.task('clean', function () { del.sync('./output_*/assets/fonts/*'); }); -gulp.task('default', ['clean', 'styles', 'fonts', 'watch']); +gulp.task('build', ['clean', 'styles', 'fonts']); + +gulp.task('default', ['build', 'watch']);