From 1687ea60a5cf90da22af38ff78b10b76d68732d4 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Tue, 25 Jul 2017 08:38:04 -0400 Subject: [PATCH] removing extra concat task from sass removing the extra task from the gulp file that does a concat on sass task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 7a52f45..b40cd9f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -75,7 +75,7 @@ gulp.task('clean', function (){ gulp.task('watch', function () { gulp.watch('js/custom/**/*.js',['concat-uglify', 'lint']); - gulp.watch('scss/**/*.{scss,sass}', ['sass','concat-uglify']); + gulp.watch('scss/**/*.{scss,sass}', ['sass']); gulp.watch('gulpfile.js'); }); -- 2.17.1