Update checked-in dependencies
This commit is contained in:
parent
49f7b34c3d
commit
5261a1223f
1640 changed files with 174830 additions and 182292 deletions
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue