From 2adf574b21b864348c289410112d9072e1039321 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Thu, 29 Sep 2016 12:55:56 +0200 Subject: [PATCH] Concatenating scripts doesn't work well with caching --- gulpfile.js | 1 - 1 file changed, 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 5a5e2fa..6b099d5 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -70,7 +70,6 @@ gulp.task('scripts', function() { gulp.task('scripts_tutti', function() { gulp.src('src/scripts/tutti/**/*.js') .pipe(gulpif(enabled.failCheck, plumber())) - .pipe(cache('scripting_tutti')) .pipe(gulpif(enabled.maps, sourcemaps.init())) .pipe(concat("tutti.min.js")) .pipe(gulpif(enabled.uglify, uglify()))