From 2028891e7a71e6764f18d4a1f197b10e4dd70f36 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Fri, 7 Oct 2016 14:51:46 +0200 Subject: [PATCH] No need to cache Sass, it's so fast anyway --- gulpfile.js | 1 - 1 file changed, 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index ce20495f..f16853da 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -26,7 +26,6 @@ var enabled = { gulp.task('styles', function() { gulp.src('src/styles/**/*.sass') .pipe(gulpif(enabled.failCheck, plumber())) - .pipe(cache('styling')) .pipe(gulpif(enabled.maps, sourcemaps.init())) .pipe(sass({ outputStyle: 'compressed'}