rearrage_stuff
This commit is contained in:
26
node_modules/sass-embedded/dist/bin/sass.js
generated
vendored
Normal file
26
node_modules/sass-embedded/dist/bin/sass.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env node
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const child_process = require("child_process");
|
||||
const path = require("path");
|
||||
const compiler_path_1 = require("../lib/src/compiler-path");
|
||||
// TODO npm/cmd-shim#152 and yarnpkg/berry#6422 - If and when the package
|
||||
// managers support it, we should make this a proper shell script rather than a
|
||||
// JS wrapper.
|
||||
try {
|
||||
child_process.execFileSync(compiler_path_1.compilerCommand[0], [...compiler_path_1.compilerCommand.slice(1), ...process.argv.slice(2)], {
|
||||
// Node blocks launching .bat and .cmd without a shell due to CVE-2024-27980
|
||||
shell: ['.bat', '.cmd'].includes(path.extname(compiler_path_1.compilerCommand[0]).toLowerCase()),
|
||||
stdio: 'inherit',
|
||||
windowsHide: true,
|
||||
});
|
||||
}
|
||||
catch (error) {
|
||||
if (error.code) {
|
||||
throw error;
|
||||
}
|
||||
else {
|
||||
process.exitCode = error.status;
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=sass.js.map
|
||||
1
node_modules/sass-embedded/dist/bin/sass.js.map
generated
vendored
Normal file
1
node_modules/sass-embedded/dist/bin/sass.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"sass.js","sourceRoot":"","sources":["../../bin/sass.ts"],"names":[],"mappings":";;;AAEA,+CAA+C;AAC/C,6BAA6B;AAC7B,4DAAyD;AAEzD,yEAAyE;AACzE,+EAA+E;AAC/E,cAAc;AAEd,IAAI,CAAC;IACH,aAAa,CAAC,YAAY,CACxB,+BAAe,CAAC,CAAC,CAAC,EAClB,CAAC,GAAG,+BAAe,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACvD;QACE,4EAA4E;QAC5E,KAAK,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,QAAQ,CAC9B,IAAI,CAAC,OAAO,CAAC,+BAAe,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAC/C;QACD,KAAK,EAAE,SAAS;QAChB,WAAW,EAAE,IAAI;KAClB,CACF,CAAC;AACJ,CAAC;AAAC,OAAO,KAAK,EAAE,CAAC;IACf,IAAI,KAAK,CAAC,IAAI,EAAE,CAAC;QACf,MAAM,KAAK,CAAC;IACd,CAAC;SAAM,CAAC;QACN,OAAO,CAAC,QAAQ,GAAG,KAAK,CAAC,MAAM,CAAC;IAClC,CAAC;AACH,CAAC"}
|
||||
Reference in New Issue
Block a user