Allow for disabling the cache

master
Sven Slootweg 6 years ago
parent 1544fa1ecb
commit 95fdc92b7b

@ -11,7 +11,13 @@ module.exports = function () {
var cacheKey = options.cacheKey != null ? options.cacheKey : "preset"; var cacheKey = options.cacheKey != null ? options.cacheKey : "preset";
var streamList = [cache(cacheKey), sass()]; var streamList = [];
if (cacheKey !== false) {
streamList.push(cache(cacheKey));
}
streamList.push(sass());
if (options.livereload != null) { if (options.livereload != null) {
streamList.push(livereloadPartial(options.livereload)); streamList.push(livereloadPartial(options.livereload));

@ -9,10 +9,13 @@ const sass = require("gulp-sass");
module.exports = function(options = {}) { module.exports = function(options = {}) {
let cacheKey = (options.cacheKey != null) ? options.cacheKey : "preset"; let cacheKey = (options.cacheKey != null) ? options.cacheKey : "preset";
let streamList = [ let streamList = [];
cache(cacheKey),
sass() if (cacheKey !== false) {
]; streamList.push(cache(cacheKey));
}
streamList.push(sass());
if (options.livereload != null) { if (options.livereload != null) {
streamList.push(livereloadPartial(options.livereload)); streamList.push(livereloadPartial(options.livereload));

Loading…
Cancel
Save