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

13
node_modules/flagged-respawn/lib/is-v8flags.js generated vendored Normal file
View File

@ -0,0 +1,13 @@
function isV8flags(flag, v8flags) {
return v8flags.indexOf(replaceSeparatorsFromDashesToUnderscores(flag)) >= 0;
}
function replaceSeparatorsFromDashesToUnderscores(flag) {
var arr = /^(-+)(.*)$/.exec(flag);
if (!arr) {
return flag;
}
return arr[1] + arr[2].replace(/\-/g, '_');
}
module.exports = isV8flags;

13
node_modules/flagged-respawn/lib/remover.js generated vendored Normal file
View File

@ -0,0 +1,13 @@
var isV8flags = require('./is-v8flags');
module.exports = function(flags, argv) {
var args = argv.slice(0, 1);
for (var i = 1, n = argv.length; i < n; i++) {
var arg = argv[i];
var flag = arg.split('=')[0];
if (!isV8flags(flag, flags)) {
args.push(arg);
}
}
return args;
};

18
node_modules/flagged-respawn/lib/reorder.js generated vendored Normal file
View File

@ -0,0 +1,18 @@
var isV8flags = require('./is-v8flags');
module.exports = function(flags, argv) {
if (!argv) {
argv = process.argv;
}
var args = [argv[1]];
argv.slice(2).forEach(function(arg) {
var flag = arg.split('=')[0];
if (isV8flags(flag, flags)) {
args.unshift(arg);
} else {
args.push(arg);
}
});
args.unshift(argv[0]);
return args;
};

16
node_modules/flagged-respawn/lib/respawn.js generated vendored Normal file
View File

@ -0,0 +1,16 @@
var spawn = require('child_process').spawn;
module.exports = function(argv) {
var child = spawn(argv[0], argv.slice(1), { stdio: 'inherit' });
child.on('exit', function(code, signal) {
process.on('exit', function() {
/* istanbul ignore if */
if (signal) {
process.kill(process.pid, signal);
} else {
process.exit(code);
}
});
});
return child;
};