Added Gulp.js for compiling SCSS stylesheets

This commit is contained in:
2022-11-01 18:49:18 -04:00
parent 7c793dac88
commit 91f72d4893
2956 changed files with 361906 additions and 7 deletions

22
node_modules/vinyl-fs/lib/src/prepare.js generated vendored Normal file
View File

@ -0,0 +1,22 @@
'use strict';
var through = require('through2');
function prepareRead(optResolver) {
function normalize(file, enc, callback) {
var since = optResolver.resolve('since', file);
// Skip this file if since option is set and current file is too old
if (file.stat && file.stat.mtime <= since) {
return callback();
}
return callback(null, file);
}
return through.obj(normalize);
}
module.exports = prepareRead;