Compare commits

...

2 Commits

@ -1,6 +1,6 @@
{
"name": "@joepie91/gulp-preset-scss",
"version": "1.0.1",
"version": "1.0.2",
"description": "A Gulp preset for SCSS stylesheets",
"main": "index.js",
"scripts": {

@ -6,7 +6,7 @@ const livereloadPartial = require("@joepie91/gulp-partial-livereload");
const cache = require("gulp-cached");
const sass = require("gulp-sass");
module.exports = function(options) {
module.exports = function(options = {}) {
let cacheKey = (options.cacheKey != null) ? options.cacheKey : "preset";
let streamList = [
@ -23,4 +23,4 @@ module.exports = function(options) {
basePath: options.basePath
}
});
}
}

Loading…
Cancel
Save