From 1e3b62d893e29f97daf0fbe375d0abf0cf140f20 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Sat, 19 Mar 2016 22:00:55 -0400 Subject: [PATCH] Include images task in default --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 073526d7..2d180ba9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -91,7 +91,7 @@ gulp.task('images', function () { * - Watches for scss and script changes * **/ -gulp.task('default', ['css', 'jslint', 'scripts'], function () { +gulp.task('default', ['css', 'jslint', 'images', 'scripts'], function () { gulp.watch('assets/_scss/**/*.scss', ['css']); gulp.watch('assets/js/_*.js', ['jslint']); gulp.watch(['!assets/js/**/*_.js', 'assets/js/plugins/**/*.js', 'assets/js/vendor/**/*.js'], ['scripts']);