mirror of
https://github.com/github/codeql-action.git
synced 2026-04-05 11:12:16 +00:00
Update checked-in dependencies
This commit is contained in:
21
node_modules/prettier/bin/prettier.cjs
generated
vendored
21
node_modules/prettier/bin/prettier.cjs
generated
vendored
@@ -16,14 +16,10 @@ var require_semver_compare = __commonJS({
|
||||
for (var i = 0; i < 3; i++) {
|
||||
var na = Number(pa[i]);
|
||||
var nb = Number(pb[i]);
|
||||
if (na > nb)
|
||||
return 1;
|
||||
if (nb > na)
|
||||
return -1;
|
||||
if (!isNaN(na) && isNaN(nb))
|
||||
return 1;
|
||||
if (isNaN(na) && !isNaN(nb))
|
||||
return -1;
|
||||
if (na > nb) return 1;
|
||||
if (nb > na) return -1;
|
||||
if (!isNaN(na) && isNaN(nb)) return 1;
|
||||
if (isNaN(na) && !isNaN(nb)) return -1;
|
||||
}
|
||||
return 0;
|
||||
};
|
||||
@@ -57,11 +53,16 @@ var require_please_upgrade_node = __commonJS({
|
||||
});
|
||||
|
||||
// bin/prettier.cjs
|
||||
var nodeModule = require("module");
|
||||
if (typeof nodeModule.enableCompileCache === "function") {
|
||||
nodeModule.enableCompileCache();
|
||||
}
|
||||
var pleaseUpgradeNode = require_please_upgrade_node();
|
||||
var packageJson = require("../package.json");
|
||||
pleaseUpgradeNode(packageJson);
|
||||
function runCli(cli) {
|
||||
return cli.run(process.argv.slice(2));
|
||||
return cli.run();
|
||||
}
|
||||
var dynamicImport = new Function("module", "return import(module)");
|
||||
module.exports.promise = dynamicImport("../internal/cli.mjs").then(runCli);
|
||||
var promise = dynamicImport("../internal/cli.mjs").then(runCli);
|
||||
module.exports.__promise = promise;
|
||||
|
||||
Reference in New Issue
Block a user