projects
/
WP-Themes
/
baragacounty.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
764b85a
)
removing extra concat task from sass
author
Anthony Talarico
<talarico@gaslightmedia.com>
Tue, 25 Jul 2017 12:38:04 +0000
(08:38 -0400)
committer
Anthony 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
patch
|
blob
|
history
diff --git
a/gulpfile.js
b/gulpfile.js
index
7a52f45
..
b40cd9f
100644
(file)
--- 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');
});