From: Anthony Talarico Date: Tue, 25 Jul 2017 12:38:04 +0000 (-0400) Subject: removing extra concat task from sass X-Git-Tag: v1.0.0^2~122 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=1687ea60a5cf90da22af38ff78b10b76d68732d4;p=WP-Themes%2Fbaragacounty.git removing extra concat task from sass removing the extra task from the gulp file that does a concat on sass task --- 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'); });