removing extra concat task from sass
authorAnthony Talarico <talarico@gaslightmedia.com>
Tue, 25 Jul 2017 12:38:04 +0000 (08:38 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Tue, 25 Jul 2017 12:38:04 +0000 (08:38 -0400)
removing the extra task from the gulp file that does a concat on sass task

gulpfile.js

index 7a52f45..b40cd9f 100644 (file)
@@ -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');
 });