pnpm 6.24.0-0 → 6.24.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pnpm.cjs +1032 -1727
- package/package.json +31 -30
package/dist/pnpm.cjs
CHANGED
|
@@ -3167,7 +3167,7 @@ var require_lib4 = __commonJS({
|
|
|
3167
3167
|
var load_json_file_1 = __importDefault(require_load_json_file());
|
|
3168
3168
|
var defaultManifest = {
|
|
3169
3169
|
name: "pnpm" != null && true ? "pnpm" : "pnpm",
|
|
3170
|
-
version: "6.24.
|
|
3170
|
+
version: "6.24.2" != null && true ? "6.24.2" : "0.0.0"
|
|
3171
3171
|
};
|
|
3172
3172
|
var pkgJson;
|
|
3173
3173
|
if (require.main == null) {
|
|
@@ -21751,6 +21751,7 @@ var require_lib16 = __commonJS({
|
|
|
21751
21751
|
"publish-branch": String,
|
|
21752
21752
|
"recursive-install": Boolean,
|
|
21753
21753
|
reporter: String,
|
|
21754
|
+
"aggregate-output": Boolean,
|
|
21754
21755
|
"save-peer": Boolean,
|
|
21755
21756
|
"save-workspace-protocol": Boolean,
|
|
21756
21757
|
"script-shell": String,
|
|
@@ -33267,8 +33268,12 @@ var require_reportLifecycleScripts = __commonJS({
|
|
|
33267
33268
|
var currentColor = 0;
|
|
33268
33269
|
exports2.default = (log$, opts) => {
|
|
33269
33270
|
if (opts.appendOnly) {
|
|
33271
|
+
let lifecycle$ = log$.lifecycle;
|
|
33272
|
+
if (opts.aggregateOutput) {
|
|
33273
|
+
lifecycle$ = lifecycle$.pipe(aggregateOutput);
|
|
33274
|
+
}
|
|
33270
33275
|
const streamLifecycleOutput2 = createStreamLifecycleOutput(opts.cwd);
|
|
33271
|
-
return
|
|
33276
|
+
return lifecycle$.pipe((0, operators_1.map)((log2) => Rx.of({
|
|
33272
33277
|
msg: streamLifecycleOutput2(log2)
|
|
33273
33278
|
})));
|
|
33274
33279
|
}
|
|
@@ -33412,6 +33417,11 @@ var require_reportLifecycleScripts = __commonJS({
|
|
|
33412
33417
|
function cutLine(line, maxLength) {
|
|
33413
33418
|
return (0, strip_ansi_1.default)(line).substr(0, maxLength);
|
|
33414
33419
|
}
|
|
33420
|
+
function aggregateOutput(source) {
|
|
33421
|
+
return source.pipe((0, operators_1.groupBy)((data) => data.depPath), (0, operators_1.mergeMap)((group) => {
|
|
33422
|
+
return group.pipe((0, operators_1.buffer)(group.pipe((0, operators_1.filter)((msg) => "exitCode" in msg))));
|
|
33423
|
+
}), (0, operators_1.map)((ar) => Rx.from(ar)), (0, operators_1.mergeAll)());
|
|
33424
|
+
}
|
|
33415
33425
|
}
|
|
33416
33426
|
});
|
|
33417
33427
|
|
|
@@ -33448,6 +33458,134 @@ var require_archy = __commonJS({
|
|
|
33448
33458
|
}
|
|
33449
33459
|
});
|
|
33450
33460
|
|
|
33461
|
+
// ../../node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point/index.js
|
|
33462
|
+
var require_is_fullwidth_code_point = __commonJS({
|
|
33463
|
+
"../../node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point/index.js"(exports2, module2) {
|
|
33464
|
+
"use strict";
|
|
33465
|
+
var isFullwidthCodePoint = (codePoint) => {
|
|
33466
|
+
if (Number.isNaN(codePoint)) {
|
|
33467
|
+
return false;
|
|
33468
|
+
}
|
|
33469
|
+
if (codePoint >= 4352 && (codePoint <= 4447 || codePoint === 9001 || codePoint === 9002 || 11904 <= codePoint && codePoint <= 12871 && codePoint !== 12351 || 12880 <= codePoint && codePoint <= 19903 || 19968 <= codePoint && codePoint <= 42182 || 43360 <= codePoint && codePoint <= 43388 || 44032 <= codePoint && codePoint <= 55203 || 63744 <= codePoint && codePoint <= 64255 || 65040 <= codePoint && codePoint <= 65049 || 65072 <= codePoint && codePoint <= 65131 || 65281 <= codePoint && codePoint <= 65376 || 65504 <= codePoint && codePoint <= 65510 || 110592 <= codePoint && codePoint <= 110593 || 127488 <= codePoint && codePoint <= 127569 || 131072 <= codePoint && codePoint <= 262141)) {
|
|
33470
|
+
return true;
|
|
33471
|
+
}
|
|
33472
|
+
return false;
|
|
33473
|
+
};
|
|
33474
|
+
module2.exports = isFullwidthCodePoint;
|
|
33475
|
+
module2.exports.default = isFullwidthCodePoint;
|
|
33476
|
+
}
|
|
33477
|
+
});
|
|
33478
|
+
|
|
33479
|
+
// ../../node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex/index.js
|
|
33480
|
+
var require_emoji_regex = __commonJS({
|
|
33481
|
+
"../../node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex/index.js"(exports2, module2) {
|
|
33482
|
+
"use strict";
|
|
33483
|
+
module2.exports = function() {
|
|
33484
|
+
return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F|\uD83D\uDC68(?:\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68\uD83C\uDFFB|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|[\u2695\u2696\u2708]\uFE0F|\uD83D[\uDC66\uDC67]|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708])\uFE0F|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C[\uDFFB-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)\uD83C\uDFFB|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB\uDFFC])|\uD83D\uDC69(?:\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB-\uDFFD])|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)\uFE0F|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\uD83C\uDFF4\u200D\u2620)\uFE0F|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF4\uD83C\uDDF2|\uD83C\uDDF6\uD83C\uDDE6|[#\*0-9]\uFE0F\u20E3|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270A-\u270D]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC70\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDCAA\uDD74\uDD7A\uDD90\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD36\uDDB5\uDDB6\uDDBB\uDDD2-\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5\uDEEB\uDEEC\uDEF4-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
|
|
33485
|
+
};
|
|
33486
|
+
}
|
|
33487
|
+
});
|
|
33488
|
+
|
|
33489
|
+
// ../../node_modules/.pnpm/string-width@4.2.3/node_modules/string-width/index.js
|
|
33490
|
+
var require_string_width = __commonJS({
|
|
33491
|
+
"../../node_modules/.pnpm/string-width@4.2.3/node_modules/string-width/index.js"(exports2, module2) {
|
|
33492
|
+
"use strict";
|
|
33493
|
+
var stripAnsi = require_strip_ansi();
|
|
33494
|
+
var isFullwidthCodePoint = require_is_fullwidth_code_point();
|
|
33495
|
+
var emojiRegex = require_emoji_regex();
|
|
33496
|
+
var stringWidth = (string) => {
|
|
33497
|
+
if (typeof string !== "string" || string.length === 0) {
|
|
33498
|
+
return 0;
|
|
33499
|
+
}
|
|
33500
|
+
string = stripAnsi(string);
|
|
33501
|
+
if (string.length === 0) {
|
|
33502
|
+
return 0;
|
|
33503
|
+
}
|
|
33504
|
+
string = string.replace(emojiRegex(), " ");
|
|
33505
|
+
let width = 0;
|
|
33506
|
+
for (let i = 0; i < string.length; i++) {
|
|
33507
|
+
const code = string.codePointAt(i);
|
|
33508
|
+
if (code <= 31 || code >= 127 && code <= 159) {
|
|
33509
|
+
continue;
|
|
33510
|
+
}
|
|
33511
|
+
if (code >= 768 && code <= 879) {
|
|
33512
|
+
continue;
|
|
33513
|
+
}
|
|
33514
|
+
if (code > 65535) {
|
|
33515
|
+
i++;
|
|
33516
|
+
}
|
|
33517
|
+
width += isFullwidthCodePoint(code) ? 2 : 1;
|
|
33518
|
+
}
|
|
33519
|
+
return width;
|
|
33520
|
+
};
|
|
33521
|
+
module2.exports = stringWidth;
|
|
33522
|
+
module2.exports.default = stringWidth;
|
|
33523
|
+
}
|
|
33524
|
+
});
|
|
33525
|
+
|
|
33526
|
+
// ../../node_modules/.pnpm/cli-columns@4.0.0/node_modules/cli-columns/index.js
|
|
33527
|
+
var require_cli_columns = __commonJS({
|
|
33528
|
+
"../../node_modules/.pnpm/cli-columns@4.0.0/node_modules/cli-columns/index.js"(exports2, module2) {
|
|
33529
|
+
"use strict";
|
|
33530
|
+
var stringWidth = require_string_width();
|
|
33531
|
+
var stripAnsi = require_strip_ansi();
|
|
33532
|
+
var concat = Array.prototype.concat;
|
|
33533
|
+
var defaults2 = {
|
|
33534
|
+
character: " ",
|
|
33535
|
+
newline: "\n",
|
|
33536
|
+
padding: 2,
|
|
33537
|
+
sort: true,
|
|
33538
|
+
width: 0
|
|
33539
|
+
};
|
|
33540
|
+
function byPlainText(a, b) {
|
|
33541
|
+
const plainA = stripAnsi(a);
|
|
33542
|
+
const plainB = stripAnsi(b);
|
|
33543
|
+
if (plainA === plainB) {
|
|
33544
|
+
return 0;
|
|
33545
|
+
}
|
|
33546
|
+
if (plainA > plainB) {
|
|
33547
|
+
return 1;
|
|
33548
|
+
}
|
|
33549
|
+
return -1;
|
|
33550
|
+
}
|
|
33551
|
+
function makeArray() {
|
|
33552
|
+
return [];
|
|
33553
|
+
}
|
|
33554
|
+
function makeList(count) {
|
|
33555
|
+
return Array.apply(null, Array(count));
|
|
33556
|
+
}
|
|
33557
|
+
function padCell(fullWidth, character, value) {
|
|
33558
|
+
const valueWidth = stringWidth(value);
|
|
33559
|
+
const filler = makeList(fullWidth - valueWidth + 1);
|
|
33560
|
+
return value + filler.join(character);
|
|
33561
|
+
}
|
|
33562
|
+
function toRows(rows, cell, i) {
|
|
33563
|
+
rows[i % rows.length].push(cell);
|
|
33564
|
+
return rows;
|
|
33565
|
+
}
|
|
33566
|
+
function toString(arr) {
|
|
33567
|
+
return arr.join("");
|
|
33568
|
+
}
|
|
33569
|
+
function columns(values2, options) {
|
|
33570
|
+
values2 = concat.apply([], values2);
|
|
33571
|
+
options = Object.assign({}, defaults2, options);
|
|
33572
|
+
let cells = values2.filter(Boolean).map(String);
|
|
33573
|
+
if (options.sort !== false) {
|
|
33574
|
+
cells = cells.sort(byPlainText);
|
|
33575
|
+
}
|
|
33576
|
+
const termWidth = options.width || process.stdout.columns;
|
|
33577
|
+
const cellWidth = Math.max.apply(null, cells.map(stringWidth)) + options.padding;
|
|
33578
|
+
const columnCount = Math.floor(termWidth / cellWidth) || 1;
|
|
33579
|
+
const rowCount = Math.ceil(cells.length / columnCount) || 1;
|
|
33580
|
+
if (columnCount === 1) {
|
|
33581
|
+
return cells.join(options.newline);
|
|
33582
|
+
}
|
|
33583
|
+
return cells.map(padCell.bind(null, cellWidth, options.character)).reduce(toRows, makeList(rowCount).map(makeArray)).map(toString).join(options.newline);
|
|
33584
|
+
}
|
|
33585
|
+
module2.exports = columns;
|
|
33586
|
+
}
|
|
33587
|
+
});
|
|
33588
|
+
|
|
33451
33589
|
// ../render-peer-issues/lib/index.js
|
|
33452
33590
|
var require_lib17 = __commonJS({
|
|
33453
33591
|
"../render-peer-issues/lib/index.js"(exports2) {
|
|
@@ -33458,30 +33596,52 @@ var require_lib17 = __commonJS({
|
|
|
33458
33596
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
33459
33597
|
var archy_1 = __importDefault(require_archy());
|
|
33460
33598
|
var chalk_1 = __importDefault(require_source());
|
|
33461
|
-
var
|
|
33462
|
-
function default_1(
|
|
33599
|
+
var cli_columns_1 = __importDefault(require_cli_columns());
|
|
33600
|
+
function default_1(peerDependencyIssuesByProjects, opts) {
|
|
33601
|
+
var _a;
|
|
33463
33602
|
const projects = {};
|
|
33464
|
-
for (const [
|
|
33465
|
-
|
|
33466
|
-
|
|
33467
|
-
if (!
|
|
33468
|
-
|
|
33603
|
+
for (const [projectId, { bad, missing, conflicts, intersections }] of Object.entries(peerDependencyIssuesByProjects)) {
|
|
33604
|
+
projects[projectId] = { dependencies: {}, peerIssues: [] };
|
|
33605
|
+
for (const [peerName, issues] of Object.entries(missing)) {
|
|
33606
|
+
if (!conflicts.includes(peerName) && intersections[peerName] == null) {
|
|
33607
|
+
continue;
|
|
33608
|
+
}
|
|
33609
|
+
for (const issue of issues) {
|
|
33610
|
+
createTree(projects[projectId], issue.parents, `${chalk_1.default.red("\u2715 missing peer")} ${formatNameAndRange(peerName, issue.wantedRange)}`);
|
|
33469
33611
|
}
|
|
33470
|
-
createTree(projects[projectPath], issue.location.parents, `${chalk_1.default.red("\u2715 missing peer")} ${peerName}@"${issue.wantedRange}"`);
|
|
33471
33612
|
}
|
|
33472
|
-
|
|
33473
|
-
|
|
33474
|
-
|
|
33475
|
-
const projectPath = issue.location.projectPath || ROOT_LABEL;
|
|
33476
|
-
if (!projects[projectPath]) {
|
|
33477
|
-
projects[projectPath] = { dependencies: {}, peerIssues: [] };
|
|
33613
|
+
for (const [peerName, issues] of Object.entries(bad)) {
|
|
33614
|
+
for (const { parents, foundVersion, wantedRange } of issues) {
|
|
33615
|
+
createTree(projects[projectId], parents, `${chalk_1.default.red("\u2715 unmet peer")} ${formatNameAndRange(peerName, wantedRange)}: found ${foundVersion}`);
|
|
33478
33616
|
}
|
|
33479
|
-
createTree(projects[projectPath], issue.location.parents, `${chalk_1.default.red("\u2715 unmet peer")} ${peerName}@"${issue.wantedRange}": found ${issue.foundVersion}`);
|
|
33480
33617
|
}
|
|
33481
33618
|
}
|
|
33482
|
-
|
|
33619
|
+
const cliColumnsOptions = {
|
|
33620
|
+
newline: "\n ",
|
|
33621
|
+
width: ((_a = opts === null || opts === void 0 ? void 0 : opts.width) !== null && _a !== void 0 ? _a : process.stdout.columns) - 2
|
|
33622
|
+
};
|
|
33623
|
+
return Object.entries(projects).filter(([, project]) => Object.keys(project.dependencies).length > 0).sort(([projectKey1], [projectKey2]) => projectKey1.localeCompare(projectKey2)).map(([projectKey, project]) => {
|
|
33624
|
+
const summaries = [];
|
|
33625
|
+
const { conflicts, intersections } = peerDependencyIssuesByProjects[projectKey];
|
|
33626
|
+
if (conflicts.length) {
|
|
33627
|
+
summaries.push(chalk_1.default.red(`\u2715 Conflicting peer dependencies:
|
|
33628
|
+
${(0, cli_columns_1.default)(conflicts, cliColumnsOptions)}`));
|
|
33629
|
+
}
|
|
33630
|
+
if (Object.keys(intersections).length) {
|
|
33631
|
+
summaries.push(`Peer dependencies that should be installed:
|
|
33632
|
+
${(0, cli_columns_1.default)(Object.entries(intersections).map(([name, version]) => formatNameAndRange(name, version)), cliColumnsOptions)}`);
|
|
33633
|
+
}
|
|
33634
|
+
const title = chalk_1.default.white(projectKey);
|
|
33635
|
+
return `${(0, archy_1.default)(toArchyData(title, project))}${summaries.join("\n")}`;
|
|
33636
|
+
}).join("\n\n");
|
|
33483
33637
|
}
|
|
33484
33638
|
exports2.default = default_1;
|
|
33639
|
+
function formatNameAndRange(name, range) {
|
|
33640
|
+
if (range.includes(" ") || range === "*") {
|
|
33641
|
+
return `${name}@"${range}"`;
|
|
33642
|
+
}
|
|
33643
|
+
return `${name}@${range}`;
|
|
33644
|
+
}
|
|
33485
33645
|
function createTree(pkgNode, pkgs, issueText) {
|
|
33486
33646
|
const [pkg, ...rest] = pkgs;
|
|
33487
33647
|
if (!pkgNode.dependencies[pkg.name]) {
|
|
@@ -36492,7 +36652,7 @@ ${foundSettings.join("\n")}`;
|
|
|
36492
36652
|
function reportPeerDependencyIssuesError(err, msg) {
|
|
36493
36653
|
return {
|
|
36494
36654
|
title: err.message,
|
|
36495
|
-
body: (0, render_peer_issues_1.default)(msg.
|
|
36655
|
+
body: (0, render_peer_issues_1.default)(msg.issuesByProjects)
|
|
36496
36656
|
};
|
|
36497
36657
|
}
|
|
36498
36658
|
}
|
|
@@ -36632,7 +36792,7 @@ var require_reportPeerDependencyIssues = __commonJS({
|
|
|
36632
36792
|
exports2.default = (log$) => {
|
|
36633
36793
|
return log$.peerDependencyIssues.pipe((0, operators_1.take)(1), (0, operators_1.map)((log2) => Rx.of({
|
|
36634
36794
|
msg: `${(0, formatWarn_1.default)("Issues with peer dependencies found")}
|
|
36635
|
-
${(0, render_peer_issues_1.default)(log2)}`
|
|
36795
|
+
${(0, render_peer_issues_1.default)(log2.issuesByProjects)}`
|
|
36636
36796
|
})));
|
|
36637
36797
|
};
|
|
36638
36798
|
}
|
|
@@ -39979,71 +40139,6 @@ var require_reportSummary = __commonJS({
|
|
|
39979
40139
|
}
|
|
39980
40140
|
});
|
|
39981
40141
|
|
|
39982
|
-
// ../../node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point/index.js
|
|
39983
|
-
var require_is_fullwidth_code_point = __commonJS({
|
|
39984
|
-
"../../node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point/index.js"(exports2, module2) {
|
|
39985
|
-
"use strict";
|
|
39986
|
-
var isFullwidthCodePoint = (codePoint) => {
|
|
39987
|
-
if (Number.isNaN(codePoint)) {
|
|
39988
|
-
return false;
|
|
39989
|
-
}
|
|
39990
|
-
if (codePoint >= 4352 && (codePoint <= 4447 || codePoint === 9001 || codePoint === 9002 || 11904 <= codePoint && codePoint <= 12871 && codePoint !== 12351 || 12880 <= codePoint && codePoint <= 19903 || 19968 <= codePoint && codePoint <= 42182 || 43360 <= codePoint && codePoint <= 43388 || 44032 <= codePoint && codePoint <= 55203 || 63744 <= codePoint && codePoint <= 64255 || 65040 <= codePoint && codePoint <= 65049 || 65072 <= codePoint && codePoint <= 65131 || 65281 <= codePoint && codePoint <= 65376 || 65504 <= codePoint && codePoint <= 65510 || 110592 <= codePoint && codePoint <= 110593 || 127488 <= codePoint && codePoint <= 127569 || 131072 <= codePoint && codePoint <= 262141)) {
|
|
39991
|
-
return true;
|
|
39992
|
-
}
|
|
39993
|
-
return false;
|
|
39994
|
-
};
|
|
39995
|
-
module2.exports = isFullwidthCodePoint;
|
|
39996
|
-
module2.exports.default = isFullwidthCodePoint;
|
|
39997
|
-
}
|
|
39998
|
-
});
|
|
39999
|
-
|
|
40000
|
-
// ../../node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex/index.js
|
|
40001
|
-
var require_emoji_regex = __commonJS({
|
|
40002
|
-
"../../node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex/index.js"(exports2, module2) {
|
|
40003
|
-
"use strict";
|
|
40004
|
-
module2.exports = function() {
|
|
40005
|
-
return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F|\uD83D\uDC68(?:\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68\uD83C\uDFFB|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|[\u2695\u2696\u2708]\uFE0F|\uD83D[\uDC66\uDC67]|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708])\uFE0F|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C[\uDFFB-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)\uD83C\uDFFB|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB\uDFFC])|\uD83D\uDC69(?:\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB-\uDFFD])|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)\uFE0F|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\uD83C\uDFF4\u200D\u2620)\uFE0F|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF4\uD83C\uDDF2|\uD83C\uDDF6\uD83C\uDDE6|[#\*0-9]\uFE0F\u20E3|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270A-\u270D]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC70\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDCAA\uDD74\uDD7A\uDD90\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD36\uDDB5\uDDB6\uDDBB\uDDD2-\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5\uDEEB\uDEEC\uDEF4-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
|
|
40006
|
-
};
|
|
40007
|
-
}
|
|
40008
|
-
});
|
|
40009
|
-
|
|
40010
|
-
// ../../node_modules/.pnpm/string-width@4.2.3/node_modules/string-width/index.js
|
|
40011
|
-
var require_string_width = __commonJS({
|
|
40012
|
-
"../../node_modules/.pnpm/string-width@4.2.3/node_modules/string-width/index.js"(exports2, module2) {
|
|
40013
|
-
"use strict";
|
|
40014
|
-
var stripAnsi = require_strip_ansi();
|
|
40015
|
-
var isFullwidthCodePoint = require_is_fullwidth_code_point();
|
|
40016
|
-
var emojiRegex = require_emoji_regex();
|
|
40017
|
-
var stringWidth = (string) => {
|
|
40018
|
-
if (typeof string !== "string" || string.length === 0) {
|
|
40019
|
-
return 0;
|
|
40020
|
-
}
|
|
40021
|
-
string = stripAnsi(string);
|
|
40022
|
-
if (string.length === 0) {
|
|
40023
|
-
return 0;
|
|
40024
|
-
}
|
|
40025
|
-
string = string.replace(emojiRegex(), " ");
|
|
40026
|
-
let width = 0;
|
|
40027
|
-
for (let i = 0; i < string.length; i++) {
|
|
40028
|
-
const code = string.codePointAt(i);
|
|
40029
|
-
if (code <= 31 || code >= 127 && code <= 159) {
|
|
40030
|
-
continue;
|
|
40031
|
-
}
|
|
40032
|
-
if (code >= 768 && code <= 879) {
|
|
40033
|
-
continue;
|
|
40034
|
-
}
|
|
40035
|
-
if (code > 65535) {
|
|
40036
|
-
i++;
|
|
40037
|
-
}
|
|
40038
|
-
width += isFullwidthCodePoint(code) ? 2 : 1;
|
|
40039
|
-
}
|
|
40040
|
-
return width;
|
|
40041
|
-
};
|
|
40042
|
-
module2.exports = stringWidth;
|
|
40043
|
-
module2.exports.default = stringWidth;
|
|
40044
|
-
}
|
|
40045
|
-
});
|
|
40046
|
-
|
|
40047
40142
|
// ../../node_modules/.pnpm/widest-line@3.1.0/node_modules/widest-line/index.js
|
|
40048
40143
|
var require_widest_line = __commonJS({
|
|
40049
40144
|
"../../node_modules/.pnpm/widest-line@3.1.0/node_modules/widest-line/index.js"(exports2, module2) {
|
|
@@ -40663,6 +40758,7 @@ var require_reporterForClient = __commonJS({
|
|
|
40663
40758
|
(0, reportPeerDependencyIssues_1.default)(log$),
|
|
40664
40759
|
(0, reportLifecycleScripts_1.default)(log$, {
|
|
40665
40760
|
appendOnly: opts.appendOnly === true || opts.streamLifecycleOutput,
|
|
40761
|
+
aggregateOutput: opts.aggregateOutput,
|
|
40666
40762
|
cwd,
|
|
40667
40763
|
width
|
|
40668
40764
|
}),
|
|
@@ -40829,7 +40925,7 @@ var require_lib18 = __commonJS({
|
|
|
40829
40925
|
}
|
|
40830
40926
|
exports2.default = default_1;
|
|
40831
40927
|
function toOutput$(opts) {
|
|
40832
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
40928
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
40833
40929
|
opts = opts || {};
|
|
40834
40930
|
const contextPushStream = new Rx.Subject();
|
|
40835
40931
|
const fetchingProgressPushStream = new Rx.Subject();
|
|
@@ -40959,10 +41055,11 @@ var require_lib18 = __commonJS({
|
|
|
40959
41055
|
logLevel: (_e = opts.reportingOptions) === null || _e === void 0 ? void 0 : _e.logLevel,
|
|
40960
41056
|
pnpmConfig: opts.context.config,
|
|
40961
41057
|
streamLifecycleOutput: (_f = opts.reportingOptions) === null || _f === void 0 ? void 0 : _f.streamLifecycleOutput,
|
|
40962
|
-
|
|
40963
|
-
|
|
41058
|
+
aggregateOutput: (_g = opts.reportingOptions) === null || _g === void 0 ? void 0 : _g.aggregateOutput,
|
|
41059
|
+
throttleProgress: (_h = opts.reportingOptions) === null || _h === void 0 ? void 0 : _h.throttleProgress,
|
|
41060
|
+
width: (_j = opts.reportingOptions) === null || _j === void 0 ? void 0 : _j.outputMaxWidth
|
|
40964
41061
|
});
|
|
40965
|
-
if ((
|
|
41062
|
+
if ((_k = opts.reportingOptions) === null || _k === void 0 ? void 0 : _k.appendOnly) {
|
|
40966
41063
|
return Rx.merge(...outputs).pipe((0, operators_1.map)((log2) => log2.pipe((0, operators_1.map)((msg) => msg.msg))), (0, operators_1.mergeAll)());
|
|
40967
41064
|
}
|
|
40968
41065
|
return (0, mergeOutputs_1.default)(outputs);
|
|
@@ -49908,6 +50005,10 @@ var require_lib28 = __commonJS({
|
|
|
49908
50005
|
unmatched.push({ pkgName: depName, range: rawSpec });
|
|
49909
50006
|
return "";
|
|
49910
50007
|
}
|
|
50008
|
+
if (isWorkspaceSpec && versions.length === 0) {
|
|
50009
|
+
const matchedPkg2 = pkgs2.find((pkg2) => pkg2.manifest.name === depName);
|
|
50010
|
+
return matchedPkg2.dir;
|
|
50011
|
+
}
|
|
49911
50012
|
if (versions.includes(rawSpec)) {
|
|
49912
50013
|
const matchedPkg2 = pkgs2.find((pkg2) => pkg2.manifest.name === depName && pkg2.manifest.version === rawSpec);
|
|
49913
50014
|
return matchedPkg2.dir;
|
|
@@ -77698,14 +77799,14 @@ var require_lib41 = __commonJS({
|
|
|
77698
77799
|
var execa_1 = __importDefault(require_lib19());
|
|
77699
77800
|
var preferred_pm_1 = __importDefault(require_preferred_pm());
|
|
77700
77801
|
async function preparePackage(pkgDir) {
|
|
77701
|
-
var _a, _b, _c;
|
|
77802
|
+
var _a, _b, _c, _d;
|
|
77702
77803
|
const manifest = await (0, read_package_json_1.safeReadPackageFromDir)(pkgDir);
|
|
77703
77804
|
if (((_a = manifest === null || manifest === void 0 ? void 0 : manifest.scripts) === null || _a === void 0 ? void 0 : _a.prepare) != null && manifest.scripts.prepare !== "") {
|
|
77704
77805
|
const pm = (_c = (_b = await (0, preferred_pm_1.default)(pkgDir)) === null || _b === void 0 ? void 0 : _b.name) !== null && _c !== void 0 ? _c : "npm";
|
|
77705
77806
|
try {
|
|
77706
77807
|
await (0, execa_1.default)(pm, ["install"], { cwd: pkgDir });
|
|
77707
77808
|
} catch (err) {
|
|
77708
|
-
throw new error_1.default("PREPARE_PKG_FAILURE",
|
|
77809
|
+
throw new error_1.default("PREPARE_PKG_FAILURE", (_d = err.shortMessage) !== null && _d !== void 0 ? _d : err.message);
|
|
77709
77810
|
}
|
|
77710
77811
|
await (0, rimraf_1.default)(path_1.default.join(pkgDir, "node_modules"));
|
|
77711
77812
|
}
|
|
@@ -83794,7 +83895,6 @@ var require_node3 = __commonJS({
|
|
|
83794
83895
|
exports2.getNodeDir = getNodeDir;
|
|
83795
83896
|
async function installNode(fetch, wantedNodeVersion, versionDir, opts) {
|
|
83796
83897
|
var _a;
|
|
83797
|
-
await fs_1.default.promises.mkdir(versionDir, { recursive: true });
|
|
83798
83898
|
const nodeMirror = (0, getNodeMirror_1.default)(opts.rawConfig, (_a = opts.releaseDir) !== null && _a !== void 0 ? _a : "release");
|
|
83799
83899
|
const { tarball, pkgName } = getNodeJSTarball(wantedNodeVersion, nodeMirror);
|
|
83800
83900
|
if (tarball.endsWith(".zip")) {
|
|
@@ -90520,6 +90620,10 @@ var require_lib62 = __commonJS({
|
|
|
90520
90620
|
description: "Stream output from child processes immediately, prefixed with the originating package directory. This allows output from different packages to be interleaved.",
|
|
90521
90621
|
name: "--stream"
|
|
90522
90622
|
},
|
|
90623
|
+
{
|
|
90624
|
+
description: "Aggregate output from child processes that are run in parallel, and only print output when child process is finished. It makes reading large logs after running `pnpm recursive` with `--parallel` or with `--workspace-concurrency` much easier (especially on CI). Only `--reporter=append-only` is supported.",
|
|
90625
|
+
name: "--aggregate-output"
|
|
90626
|
+
},
|
|
90523
90627
|
{
|
|
90524
90628
|
description: "Divert all output to stderr",
|
|
90525
90629
|
name: "--use-stderr"
|
|
@@ -113188,6 +113292,74 @@ var require_resolveDependencyTree = __commonJS({
|
|
|
113188
113292
|
}
|
|
113189
113293
|
});
|
|
113190
113294
|
|
|
113295
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/semverUtils.js
|
|
113296
|
+
var require_semverUtils = __commonJS({
|
|
113297
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/semverUtils.js"(exports2) {
|
|
113298
|
+
"use strict";
|
|
113299
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
113300
|
+
exports2.validRange = exports2.satisfiesWithPrereleases = exports2.SemVer = void 0;
|
|
113301
|
+
var tslib_12 = require_tslib();
|
|
113302
|
+
var semver_12 = (0, tslib_12.__importDefault)(require_semver2());
|
|
113303
|
+
var semver_2 = require_semver2();
|
|
113304
|
+
Object.defineProperty(exports2, "SemVer", { enumerable: true, get: function() {
|
|
113305
|
+
return semver_2.SemVer;
|
|
113306
|
+
} });
|
|
113307
|
+
var satisfiesWithPrereleasesCache = new Map();
|
|
113308
|
+
function satisfiesWithPrereleases(version, range, loose = false) {
|
|
113309
|
+
if (!version)
|
|
113310
|
+
return false;
|
|
113311
|
+
const key = `${range}${loose}`;
|
|
113312
|
+
let semverRange = satisfiesWithPrereleasesCache.get(key);
|
|
113313
|
+
if (typeof semverRange === `undefined`) {
|
|
113314
|
+
try {
|
|
113315
|
+
semverRange = new semver_12.default.Range(range, { includePrerelease: true, loose });
|
|
113316
|
+
} catch {
|
|
113317
|
+
return false;
|
|
113318
|
+
} finally {
|
|
113319
|
+
satisfiesWithPrereleasesCache.set(key, semverRange || null);
|
|
113320
|
+
}
|
|
113321
|
+
} else if (semverRange === null) {
|
|
113322
|
+
return false;
|
|
113323
|
+
}
|
|
113324
|
+
let semverVersion;
|
|
113325
|
+
try {
|
|
113326
|
+
semverVersion = new semver_12.default.SemVer(version, semverRange);
|
|
113327
|
+
} catch (err) {
|
|
113328
|
+
return false;
|
|
113329
|
+
}
|
|
113330
|
+
if (semverRange.test(semverVersion))
|
|
113331
|
+
return true;
|
|
113332
|
+
if (semverVersion.prerelease)
|
|
113333
|
+
semverVersion.prerelease = [];
|
|
113334
|
+
return semverRange.set.some((comparatorSet) => {
|
|
113335
|
+
for (const comparator of comparatorSet)
|
|
113336
|
+
if (comparator.semver.prerelease)
|
|
113337
|
+
comparator.semver.prerelease = [];
|
|
113338
|
+
return comparatorSet.every((comparator) => {
|
|
113339
|
+
return comparator.test(semverVersion);
|
|
113340
|
+
});
|
|
113341
|
+
});
|
|
113342
|
+
}
|
|
113343
|
+
exports2.satisfiesWithPrereleases = satisfiesWithPrereleases;
|
|
113344
|
+
var rangesCache = new Map();
|
|
113345
|
+
function validRange(potentialRange) {
|
|
113346
|
+
if (potentialRange.indexOf(`:`) !== -1)
|
|
113347
|
+
return null;
|
|
113348
|
+
let range = rangesCache.get(potentialRange);
|
|
113349
|
+
if (typeof range !== `undefined`)
|
|
113350
|
+
return range;
|
|
113351
|
+
try {
|
|
113352
|
+
range = new semver_12.default.Range(potentialRange);
|
|
113353
|
+
} catch {
|
|
113354
|
+
range = null;
|
|
113355
|
+
}
|
|
113356
|
+
rangesCache.set(potentialRange, range);
|
|
113357
|
+
return range;
|
|
113358
|
+
}
|
|
113359
|
+
exports2.validRange = validRange;
|
|
113360
|
+
}
|
|
113361
|
+
});
|
|
113362
|
+
|
|
113191
113363
|
// ../../node_modules/.pnpm/ramda@0.27.1/node_modules/ramda/src/scan.js
|
|
113192
113364
|
var require_scan4 = __commonJS({
|
|
113193
113365
|
"../../node_modules/.pnpm/ramda@0.27.1/node_modules/ramda/src/scan.js"(exports2, module2) {
|
|
@@ -113207,6 +113379,525 @@ var require_scan4 = __commonJS({
|
|
|
113207
113379
|
}
|
|
113208
113380
|
});
|
|
113209
113381
|
|
|
113382
|
+
// ../../node_modules/.pnpm/semver-range-intersect@0.3.1/node_modules/semver-range-intersect/dist/utils.js
|
|
113383
|
+
var require_utils9 = __commonJS({
|
|
113384
|
+
"../../node_modules/.pnpm/semver-range-intersect@0.3.1/node_modules/semver-range-intersect/dist/utils.js"(exports2) {
|
|
113385
|
+
"use strict";
|
|
113386
|
+
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
113387
|
+
return mod && mod.__esModule ? mod : { "default": mod };
|
|
113388
|
+
};
|
|
113389
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
113390
|
+
var semver_12 = __importDefault(require_semver3());
|
|
113391
|
+
function isNotNull(value) {
|
|
113392
|
+
return value !== null;
|
|
113393
|
+
}
|
|
113394
|
+
exports2.isNotNull = isNotNull;
|
|
113395
|
+
function uniqueArray(array) {
|
|
113396
|
+
return [...new Set(array)];
|
|
113397
|
+
}
|
|
113398
|
+
exports2.uniqueArray = uniqueArray;
|
|
113399
|
+
function isNoIncludeNull(value) {
|
|
113400
|
+
return value.every(isNotNull);
|
|
113401
|
+
}
|
|
113402
|
+
exports2.isNoIncludeNull = isNoIncludeNull;
|
|
113403
|
+
function isPrerelease(version) {
|
|
113404
|
+
if (version instanceof semver_12.default.SemVer) {
|
|
113405
|
+
return version.prerelease.length !== 0;
|
|
113406
|
+
} else {
|
|
113407
|
+
return false;
|
|
113408
|
+
}
|
|
113409
|
+
}
|
|
113410
|
+
exports2.isPrerelease = isPrerelease;
|
|
113411
|
+
function isValidOperator(comparator, operatorList) {
|
|
113412
|
+
return operatorList.includes(comparator.operator);
|
|
113413
|
+
}
|
|
113414
|
+
exports2.isValidOperator = isValidOperator;
|
|
113415
|
+
function equalComparator(comparatorA, comparatorB) {
|
|
113416
|
+
return comparatorA.value === comparatorB.value;
|
|
113417
|
+
}
|
|
113418
|
+
exports2.equalComparator = equalComparator;
|
|
113419
|
+
function comparator2versionStr(comparator) {
|
|
113420
|
+
const compSemver = comparator.semver;
|
|
113421
|
+
return compSemver instanceof semver_12.default.SemVer ? compSemver.version : "";
|
|
113422
|
+
}
|
|
113423
|
+
exports2.comparator2versionStr = comparator2versionStr;
|
|
113424
|
+
function isSameVersionEqualsLikeComparator(comparatorA, comparatorB) {
|
|
113425
|
+
const compVersionA = comparator2versionStr(comparatorA);
|
|
113426
|
+
const compVersionB = comparator2versionStr(comparatorB);
|
|
113427
|
+
return compVersionA !== "" && compVersionB !== "" && compVersionA === compVersionB && /=|^$/.test(comparatorA.operator) && /=|^$/.test(comparatorB.operator);
|
|
113428
|
+
}
|
|
113429
|
+
exports2.isSameVersionEqualsLikeComparator = isSameVersionEqualsLikeComparator;
|
|
113430
|
+
function isEqualsComparator(comparator) {
|
|
113431
|
+
return comparator.semver instanceof semver_12.default.SemVer && isValidOperator(comparator, ["", "="]);
|
|
113432
|
+
}
|
|
113433
|
+
exports2.isEqualsComparator = isEqualsComparator;
|
|
113434
|
+
function filterUniqueComparator(comparator, index, self2) {
|
|
113435
|
+
return self2.findIndex((comp) => equalComparator(comparator, comp)) === index;
|
|
113436
|
+
}
|
|
113437
|
+
exports2.filterUniqueComparator = filterUniqueComparator;
|
|
113438
|
+
function filterOperator(operatorList) {
|
|
113439
|
+
return (comparator) => isValidOperator(comparator, operatorList);
|
|
113440
|
+
}
|
|
113441
|
+
exports2.filterOperator = filterOperator;
|
|
113442
|
+
function isIntersectRanges(semverRangeList) {
|
|
113443
|
+
return semverRangeList.every((rangeA, index, rangeList) => rangeList.slice(index + 1).every((rangeB) => rangeA.intersects(rangeB)));
|
|
113444
|
+
}
|
|
113445
|
+
exports2.isIntersectRanges = isIntersectRanges;
|
|
113446
|
+
function stripSemVerPrerelease(semverVersion) {
|
|
113447
|
+
if (!(semverVersion instanceof semver_12.default.SemVer)) {
|
|
113448
|
+
return "";
|
|
113449
|
+
}
|
|
113450
|
+
if (!semverVersion.prerelease.length) {
|
|
113451
|
+
return semverVersion.version;
|
|
113452
|
+
}
|
|
113453
|
+
const newSemverVersion = new semver_12.default.SemVer(semverVersion.version, semverVersion.options);
|
|
113454
|
+
newSemverVersion.prerelease = [];
|
|
113455
|
+
return newSemverVersion.format();
|
|
113456
|
+
}
|
|
113457
|
+
exports2.stripSemVerPrerelease = stripSemVerPrerelease;
|
|
113458
|
+
function stripComparatorOperator(comparator) {
|
|
113459
|
+
if (!comparator.operator) {
|
|
113460
|
+
return comparator;
|
|
113461
|
+
}
|
|
113462
|
+
const versionStr = comparator2versionStr(comparator);
|
|
113463
|
+
return new semver_12.default.Comparator(versionStr, comparator.options);
|
|
113464
|
+
}
|
|
113465
|
+
exports2.stripComparatorOperator = stripComparatorOperator;
|
|
113466
|
+
function getLowerBoundComparator(comparatorList, options = {}) {
|
|
113467
|
+
const validComparatorList = comparatorList.filter((comparator) => isValidOperator(comparator, [">", ">="]) || !(comparator.semver instanceof semver_12.default.SemVer));
|
|
113468
|
+
const leComparatorVersionList = comparatorList.filter(filterOperator(["<="])).map(comparator2versionStr);
|
|
113469
|
+
if (validComparatorList.length >= 1) {
|
|
113470
|
+
return validComparatorList.reduce((a, b) => {
|
|
113471
|
+
const semverA = a.semver;
|
|
113472
|
+
const semverB = b.semver;
|
|
113473
|
+
if (!(semverA instanceof semver_12.default.SemVer)) {
|
|
113474
|
+
if (!options.singleRange && isPrerelease(semverB) && !(b.operator === ">=" && leComparatorVersionList.some((version) => version === String(semverB)))) {
|
|
113475
|
+
return new semver_12.default.Comparator(`>=${stripSemVerPrerelease(semverB)}`, b.options);
|
|
113476
|
+
}
|
|
113477
|
+
return b;
|
|
113478
|
+
} else if (!(semverB instanceof semver_12.default.SemVer)) {
|
|
113479
|
+
if (!options.singleRange && isPrerelease(semverA) && !(a.operator === ">=" && leComparatorVersionList.some((version) => version === String(semverA)))) {
|
|
113480
|
+
return new semver_12.default.Comparator(`>=${stripSemVerPrerelease(semverA)}`, a.options);
|
|
113481
|
+
}
|
|
113482
|
+
return a;
|
|
113483
|
+
}
|
|
113484
|
+
const semverCmp = semver_12.default.compare(semverA, semverB);
|
|
113485
|
+
if (a.operator === b.operator || semverCmp !== 0) {
|
|
113486
|
+
if (!options.singleRange) {
|
|
113487
|
+
const semverCmpMain = semverA.compareMain(semverB);
|
|
113488
|
+
if (semverCmpMain !== 0 && semverA.prerelease.length && semverB.prerelease.length) {
|
|
113489
|
+
if (semverCmpMain > 0) {
|
|
113490
|
+
return new semver_12.default.Comparator(a.operator + stripSemVerPrerelease(semverA), a.options);
|
|
113491
|
+
} else {
|
|
113492
|
+
return new semver_12.default.Comparator(b.operator + stripSemVerPrerelease(semverB), b.options);
|
|
113493
|
+
}
|
|
113494
|
+
}
|
|
113495
|
+
}
|
|
113496
|
+
if (semverCmp > 0) {
|
|
113497
|
+
return a;
|
|
113498
|
+
} else {
|
|
113499
|
+
return b;
|
|
113500
|
+
}
|
|
113501
|
+
} else {
|
|
113502
|
+
if (a.operator === ">") {
|
|
113503
|
+
return a;
|
|
113504
|
+
} else {
|
|
113505
|
+
return b;
|
|
113506
|
+
}
|
|
113507
|
+
}
|
|
113508
|
+
});
|
|
113509
|
+
} else {
|
|
113510
|
+
return new semver_12.default.Comparator("");
|
|
113511
|
+
}
|
|
113512
|
+
}
|
|
113513
|
+
exports2.getLowerBoundComparator = getLowerBoundComparator;
|
|
113514
|
+
function getUpperBoundComparator(comparatorList, options = {}) {
|
|
113515
|
+
const validComparatorList = comparatorList.filter((comparator) => isValidOperator(comparator, ["<", "<="]) || !(comparator.semver instanceof semver_12.default.SemVer));
|
|
113516
|
+
const geComparatorVersionList = comparatorList.filter(filterOperator([">="])).map(comparator2versionStr);
|
|
113517
|
+
if (validComparatorList.length >= 1) {
|
|
113518
|
+
return validComparatorList.reduce((a, b) => {
|
|
113519
|
+
const semverA = a.semver;
|
|
113520
|
+
const semverB = b.semver;
|
|
113521
|
+
if (!(semverA instanceof semver_12.default.SemVer)) {
|
|
113522
|
+
if (!options.singleRange && isPrerelease(semverB) && !(b.operator === "<=" && geComparatorVersionList.some((version) => version === String(semverB)))) {
|
|
113523
|
+
return new semver_12.default.Comparator(`<${stripSemVerPrerelease(semverB)}`, b.options);
|
|
113524
|
+
}
|
|
113525
|
+
return b;
|
|
113526
|
+
} else if (!(semverB instanceof semver_12.default.SemVer)) {
|
|
113527
|
+
if (!options.singleRange && isPrerelease(semverA) && !(a.operator === "<=" && geComparatorVersionList.some((version) => version === String(semverA)))) {
|
|
113528
|
+
return new semver_12.default.Comparator(`<${stripSemVerPrerelease(semverA)}`, a.options);
|
|
113529
|
+
}
|
|
113530
|
+
return a;
|
|
113531
|
+
}
|
|
113532
|
+
const semverCmp = semver_12.default.compare(semverA, semverB);
|
|
113533
|
+
if (a.operator === b.operator || semverCmp !== 0) {
|
|
113534
|
+
if (!options.singleRange) {
|
|
113535
|
+
const semverCmpMain = semverA.compareMain(semverB);
|
|
113536
|
+
if (semverCmpMain !== 0 && semverA.prerelease.length && semverB.prerelease.length) {
|
|
113537
|
+
if (semverCmpMain < 0) {
|
|
113538
|
+
return new semver_12.default.Comparator(`<${stripSemVerPrerelease(semverA)}`, a.options);
|
|
113539
|
+
} else {
|
|
113540
|
+
return new semver_12.default.Comparator(`<${stripSemVerPrerelease(semverB)}`, b.options);
|
|
113541
|
+
}
|
|
113542
|
+
}
|
|
113543
|
+
}
|
|
113544
|
+
if (semverCmp < 0) {
|
|
113545
|
+
return a;
|
|
113546
|
+
} else {
|
|
113547
|
+
return b;
|
|
113548
|
+
}
|
|
113549
|
+
} else {
|
|
113550
|
+
if (a.operator === "<") {
|
|
113551
|
+
return a;
|
|
113552
|
+
} else {
|
|
113553
|
+
return b;
|
|
113554
|
+
}
|
|
113555
|
+
}
|
|
113556
|
+
});
|
|
113557
|
+
} else {
|
|
113558
|
+
return new semver_12.default.Comparator("");
|
|
113559
|
+
}
|
|
113560
|
+
}
|
|
113561
|
+
exports2.getUpperBoundComparator = getUpperBoundComparator;
|
|
113562
|
+
}
|
|
113563
|
+
});
|
|
113564
|
+
|
|
113565
|
+
// ../../node_modules/.pnpm/semver-range-intersect@0.3.1/node_modules/semver-range-intersect/dist/single-range.js
|
|
113566
|
+
var require_single_range = __commonJS({
|
|
113567
|
+
"../../node_modules/.pnpm/semver-range-intersect@0.3.1/node_modules/semver-range-intersect/dist/single-range.js"(exports2) {
|
|
113568
|
+
"use strict";
|
|
113569
|
+
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
113570
|
+
return mod && mod.__esModule ? mod : { "default": mod };
|
|
113571
|
+
};
|
|
113572
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
113573
|
+
var semver_12 = __importDefault(require_semver3());
|
|
113574
|
+
var utils_1 = require_utils9();
|
|
113575
|
+
var SingleVer = class {
|
|
113576
|
+
constructor(comp) {
|
|
113577
|
+
this.comp = comp;
|
|
113578
|
+
}
|
|
113579
|
+
toString() {
|
|
113580
|
+
return this.comp.value;
|
|
113581
|
+
}
|
|
113582
|
+
intersect(singleRange) {
|
|
113583
|
+
if (semver_12.default.intersects(String(this), String(singleRange))) {
|
|
113584
|
+
return this;
|
|
113585
|
+
} else {
|
|
113586
|
+
return null;
|
|
113587
|
+
}
|
|
113588
|
+
}
|
|
113589
|
+
merge(singleRange) {
|
|
113590
|
+
if (semver_12.default.intersects(String(this), String(singleRange))) {
|
|
113591
|
+
return singleRange;
|
|
113592
|
+
}
|
|
113593
|
+
return null;
|
|
113594
|
+
}
|
|
113595
|
+
};
|
|
113596
|
+
exports2.SingleVer = SingleVer;
|
|
113597
|
+
var SingleRange = class {
|
|
113598
|
+
constructor(lowerBound, upperBound) {
|
|
113599
|
+
this.lowerBound = lowerBound;
|
|
113600
|
+
this.upperBound = upperBound;
|
|
113601
|
+
if (!lowerBound.intersects(upperBound)) {
|
|
113602
|
+
throw new Error(`Invalid range; version range does not intersect: ${this}`);
|
|
113603
|
+
}
|
|
113604
|
+
}
|
|
113605
|
+
toString() {
|
|
113606
|
+
return [this.lowerBound.value, this.upperBound.value].filter((v) => v !== "").join(" ");
|
|
113607
|
+
}
|
|
113608
|
+
intersect(singleRange) {
|
|
113609
|
+
if (semver_12.default.intersects(String(this), String(singleRange))) {
|
|
113610
|
+
if (singleRange instanceof SingleVer) {
|
|
113611
|
+
return singleRange;
|
|
113612
|
+
} else {
|
|
113613
|
+
const lowerBoundComparatorList = [
|
|
113614
|
+
this.lowerBound,
|
|
113615
|
+
singleRange.lowerBound
|
|
113616
|
+
];
|
|
113617
|
+
const upperBoundComparatorList = [
|
|
113618
|
+
this.upperBound,
|
|
113619
|
+
singleRange.upperBound
|
|
113620
|
+
];
|
|
113621
|
+
const lowerBound = utils_1.getLowerBoundComparator([
|
|
113622
|
+
...lowerBoundComparatorList,
|
|
113623
|
+
...upperBoundComparatorList.filter((comparator) => comparator.semver instanceof semver_12.default.SemVer)
|
|
113624
|
+
]);
|
|
113625
|
+
const upperBound = utils_1.getUpperBoundComparator([
|
|
113626
|
+
...upperBoundComparatorList,
|
|
113627
|
+
...lowerBoundComparatorList.filter((comparator) => comparator.semver instanceof semver_12.default.SemVer)
|
|
113628
|
+
]);
|
|
113629
|
+
if (utils_1.isSameVersionEqualsLikeComparator(lowerBound, upperBound)) {
|
|
113630
|
+
return new SingleVer(utils_1.stripComparatorOperator(lowerBound));
|
|
113631
|
+
}
|
|
113632
|
+
return new SingleRange(lowerBound, upperBound);
|
|
113633
|
+
}
|
|
113634
|
+
} else {
|
|
113635
|
+
return null;
|
|
113636
|
+
}
|
|
113637
|
+
}
|
|
113638
|
+
merge(singleRange) {
|
|
113639
|
+
if (semver_12.default.intersects(String(this), String(singleRange))) {
|
|
113640
|
+
if (singleRange instanceof SingleVer) {
|
|
113641
|
+
return this;
|
|
113642
|
+
} else {
|
|
113643
|
+
const lowerBound = ((a, b) => {
|
|
113644
|
+
const semverA = a.semver;
|
|
113645
|
+
const semverB = b.semver;
|
|
113646
|
+
if (!(semverA instanceof semver_12.default.SemVer)) {
|
|
113647
|
+
if (utils_1.isPrerelease(semverB)) {
|
|
113648
|
+
return null;
|
|
113649
|
+
}
|
|
113650
|
+
return a;
|
|
113651
|
+
} else if (!(semverB instanceof semver_12.default.SemVer)) {
|
|
113652
|
+
if (utils_1.isPrerelease(semverA)) {
|
|
113653
|
+
return null;
|
|
113654
|
+
}
|
|
113655
|
+
return b;
|
|
113656
|
+
}
|
|
113657
|
+
const cmpMain = semverA.compareMain(semverB);
|
|
113658
|
+
if (cmpMain < 0 && utils_1.isPrerelease(semverB) || cmpMain > 0 && utils_1.isPrerelease(semverA)) {
|
|
113659
|
+
return null;
|
|
113660
|
+
}
|
|
113661
|
+
const semverCmp = semver_12.default.compare(semverA, semverB);
|
|
113662
|
+
if (a.operator === b.operator || semverCmp !== 0) {
|
|
113663
|
+
if (semverCmp < 0) {
|
|
113664
|
+
return a;
|
|
113665
|
+
} else {
|
|
113666
|
+
return b;
|
|
113667
|
+
}
|
|
113668
|
+
} else {
|
|
113669
|
+
if (a.operator === ">=") {
|
|
113670
|
+
return a;
|
|
113671
|
+
} else {
|
|
113672
|
+
return b;
|
|
113673
|
+
}
|
|
113674
|
+
}
|
|
113675
|
+
})(this.lowerBound, singleRange.lowerBound);
|
|
113676
|
+
const upperBound = ((a, b) => {
|
|
113677
|
+
const semverA = a.semver;
|
|
113678
|
+
const semverB = b.semver;
|
|
113679
|
+
if (!(semverA instanceof semver_12.default.SemVer)) {
|
|
113680
|
+
if (utils_1.isPrerelease(semverB)) {
|
|
113681
|
+
return null;
|
|
113682
|
+
}
|
|
113683
|
+
return a;
|
|
113684
|
+
} else if (!(semverB instanceof semver_12.default.SemVer)) {
|
|
113685
|
+
if (utils_1.isPrerelease(semverA)) {
|
|
113686
|
+
return null;
|
|
113687
|
+
}
|
|
113688
|
+
return b;
|
|
113689
|
+
}
|
|
113690
|
+
const cmpMain = semverA.compareMain(semverB);
|
|
113691
|
+
if (cmpMain > 0 && utils_1.isPrerelease(semverB) || cmpMain < 0 && utils_1.isPrerelease(semverA)) {
|
|
113692
|
+
return null;
|
|
113693
|
+
}
|
|
113694
|
+
const semverCmp = semver_12.default.compare(semverA, semverB);
|
|
113695
|
+
if (a.operator === b.operator || semverCmp !== 0) {
|
|
113696
|
+
if (semverCmp > 0) {
|
|
113697
|
+
return a;
|
|
113698
|
+
} else {
|
|
113699
|
+
return b;
|
|
113700
|
+
}
|
|
113701
|
+
} else {
|
|
113702
|
+
if (a.operator === "<=") {
|
|
113703
|
+
return a;
|
|
113704
|
+
} else {
|
|
113705
|
+
return b;
|
|
113706
|
+
}
|
|
113707
|
+
}
|
|
113708
|
+
})(this.upperBound, singleRange.upperBound);
|
|
113709
|
+
if (lowerBound && upperBound) {
|
|
113710
|
+
return new SingleRange(lowerBound, upperBound);
|
|
113711
|
+
}
|
|
113712
|
+
}
|
|
113713
|
+
}
|
|
113714
|
+
return null;
|
|
113715
|
+
}
|
|
113716
|
+
};
|
|
113717
|
+
exports2.SingleRange = SingleRange;
|
|
113718
|
+
function createSingleRange(comparatorList) {
|
|
113719
|
+
const equalsComparatorList = comparatorList.filter(utils_1.isEqualsComparator).filter(utils_1.filterUniqueComparator);
|
|
113720
|
+
switch (equalsComparatorList.length) {
|
|
113721
|
+
case 0: {
|
|
113722
|
+
const lowerBound = utils_1.getLowerBoundComparator(comparatorList, {
|
|
113723
|
+
singleRange: true
|
|
113724
|
+
});
|
|
113725
|
+
const upperBound = utils_1.getUpperBoundComparator(comparatorList, {
|
|
113726
|
+
singleRange: true
|
|
113727
|
+
});
|
|
113728
|
+
if (utils_1.isSameVersionEqualsLikeComparator(lowerBound, upperBound)) {
|
|
113729
|
+
return new SingleVer(utils_1.stripComparatorOperator(lowerBound));
|
|
113730
|
+
}
|
|
113731
|
+
try {
|
|
113732
|
+
return new SingleRange(lowerBound, upperBound);
|
|
113733
|
+
} catch (err) {
|
|
113734
|
+
return null;
|
|
113735
|
+
}
|
|
113736
|
+
}
|
|
113737
|
+
case 1:
|
|
113738
|
+
return new SingleVer(equalsComparatorList[0]);
|
|
113739
|
+
default:
|
|
113740
|
+
return null;
|
|
113741
|
+
}
|
|
113742
|
+
}
|
|
113743
|
+
exports2.createSingleRange = createSingleRange;
|
|
113744
|
+
function isSingleRange(value) {
|
|
113745
|
+
return value instanceof SingleVer || value instanceof SingleRange;
|
|
113746
|
+
}
|
|
113747
|
+
exports2.isSingleRange = isSingleRange;
|
|
113748
|
+
}
|
|
113749
|
+
});
|
|
113750
|
+
|
|
113751
|
+
// ../../node_modules/.pnpm/semver-range-intersect@0.3.1/node_modules/semver-range-intersect/dist/multi-range.js
|
|
113752
|
+
var require_multi_range = __commonJS({
|
|
113753
|
+
"../../node_modules/.pnpm/semver-range-intersect@0.3.1/node_modules/semver-range-intersect/dist/multi-range.js"(exports2) {
|
|
113754
|
+
"use strict";
|
|
113755
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
113756
|
+
var single_range_1 = require_single_range();
|
|
113757
|
+
var utils_1 = require_utils9();
|
|
113758
|
+
function normalizeSingleRangeList(singleRangeList) {
|
|
113759
|
+
return singleRangeList.reduce((singleRangeList2, singleRange) => {
|
|
113760
|
+
if (!singleRange) {
|
|
113761
|
+
return [...singleRangeList2, singleRange];
|
|
113762
|
+
}
|
|
113763
|
+
let insertFirst = false;
|
|
113764
|
+
const removeIndexList = [];
|
|
113765
|
+
const appendSingleRange = singleRangeList2.reduce((appendSingleRange2, insertedSingleRange, index) => {
|
|
113766
|
+
if (insertedSingleRange && appendSingleRange2) {
|
|
113767
|
+
const mergedSingleRange = insertedSingleRange.merge(appendSingleRange2);
|
|
113768
|
+
if (mergedSingleRange) {
|
|
113769
|
+
if (String(mergedSingleRange) === String(insertedSingleRange)) {
|
|
113770
|
+
return;
|
|
113771
|
+
} else {
|
|
113772
|
+
removeIndexList.push(index);
|
|
113773
|
+
if (insertedSingleRange instanceof single_range_1.SingleRange && appendSingleRange2 instanceof single_range_1.SingleRange) {
|
|
113774
|
+
insertFirst = true;
|
|
113775
|
+
}
|
|
113776
|
+
return mergedSingleRange;
|
|
113777
|
+
}
|
|
113778
|
+
}
|
|
113779
|
+
}
|
|
113780
|
+
return appendSingleRange2;
|
|
113781
|
+
}, singleRange);
|
|
113782
|
+
const removedSingleRangeList = singleRangeList2.filter((_, index) => !removeIndexList.includes(index));
|
|
113783
|
+
if (appendSingleRange) {
|
|
113784
|
+
if (insertFirst) {
|
|
113785
|
+
return [appendSingleRange, ...removedSingleRangeList];
|
|
113786
|
+
} else {
|
|
113787
|
+
return [...removedSingleRangeList, appendSingleRange];
|
|
113788
|
+
}
|
|
113789
|
+
}
|
|
113790
|
+
return removedSingleRangeList;
|
|
113791
|
+
}, []);
|
|
113792
|
+
}
|
|
113793
|
+
exports2.normalizeSingleRangeList = normalizeSingleRangeList;
|
|
113794
|
+
var MultiRange = class {
|
|
113795
|
+
get valid() {
|
|
113796
|
+
return this.set.length >= 1;
|
|
113797
|
+
}
|
|
113798
|
+
constructor(rangeList) {
|
|
113799
|
+
if (rangeList) {
|
|
113800
|
+
const singleRangeList = normalizeSingleRangeList(rangeList.map((singleRangeOrComparatorList) => {
|
|
113801
|
+
if (single_range_1.isSingleRange(singleRangeOrComparatorList) || !singleRangeOrComparatorList) {
|
|
113802
|
+
return singleRangeOrComparatorList;
|
|
113803
|
+
} else {
|
|
113804
|
+
return single_range_1.createSingleRange(singleRangeOrComparatorList);
|
|
113805
|
+
}
|
|
113806
|
+
}));
|
|
113807
|
+
this.set = singleRangeList.filter(utils_1.isNotNull);
|
|
113808
|
+
} else {
|
|
113809
|
+
this.set = [];
|
|
113810
|
+
}
|
|
113811
|
+
}
|
|
113812
|
+
toString() {
|
|
113813
|
+
if (!this.valid) {
|
|
113814
|
+
throw new Error("Invalid range");
|
|
113815
|
+
}
|
|
113816
|
+
return utils_1.uniqueArray(this.set.map(String)).join(" || ");
|
|
113817
|
+
}
|
|
113818
|
+
intersect(multiRange) {
|
|
113819
|
+
if (this.valid && multiRange.valid) {
|
|
113820
|
+
const singleRangeList = this.set.map((singleRangeA) => multiRange.set.map((singleRangeB) => singleRangeA.intersect(singleRangeB))).reduce((a, b) => [...a, ...b]).filter(utils_1.isNotNull);
|
|
113821
|
+
return new MultiRange(singleRangeList);
|
|
113822
|
+
} else if (this.valid) {
|
|
113823
|
+
return this;
|
|
113824
|
+
} else if (multiRange.valid) {
|
|
113825
|
+
return multiRange;
|
|
113826
|
+
} else {
|
|
113827
|
+
return new MultiRange(null);
|
|
113828
|
+
}
|
|
113829
|
+
}
|
|
113830
|
+
};
|
|
113831
|
+
exports2.MultiRange = MultiRange;
|
|
113832
|
+
}
|
|
113833
|
+
});
|
|
113834
|
+
|
|
113835
|
+
// ../../node_modules/.pnpm/semver-range-intersect@0.3.1/node_modules/semver-range-intersect/dist/index.js
|
|
113836
|
+
var require_dist12 = __commonJS({
|
|
113837
|
+
"../../node_modules/.pnpm/semver-range-intersect@0.3.1/node_modules/semver-range-intersect/dist/index.js"(exports2) {
|
|
113838
|
+
"use strict";
|
|
113839
|
+
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
113840
|
+
return mod && mod.__esModule ? mod : { "default": mod };
|
|
113841
|
+
};
|
|
113842
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
113843
|
+
var semver_12 = __importDefault(require_semver3());
|
|
113844
|
+
var multi_range_1 = require_multi_range();
|
|
113845
|
+
var utils_1 = require_utils9();
|
|
113846
|
+
function intersect(...ranges) {
|
|
113847
|
+
const semverRangeList = (() => {
|
|
113848
|
+
try {
|
|
113849
|
+
return ranges.map((rangeStr) => new semver_12.default.Range(rangeStr));
|
|
113850
|
+
} catch (err) {
|
|
113851
|
+
return null;
|
|
113852
|
+
}
|
|
113853
|
+
})();
|
|
113854
|
+
if (!semverRangeList || !utils_1.isIntersectRanges(semverRangeList)) {
|
|
113855
|
+
return null;
|
|
113856
|
+
}
|
|
113857
|
+
const intersectRange = semverRangeList.map((range) => new multi_range_1.MultiRange(range.set)).reduce((multiRangeA, multiRangeB) => multiRangeA.intersect(multiRangeB), new multi_range_1.MultiRange(null));
|
|
113858
|
+
return intersectRange.valid ? String(intersectRange) || "*" : null;
|
|
113859
|
+
}
|
|
113860
|
+
exports2.intersect = intersect;
|
|
113861
|
+
}
|
|
113862
|
+
});
|
|
113863
|
+
|
|
113864
|
+
// ../resolve-dependencies/lib/mergePeers.js
|
|
113865
|
+
var require_mergePeers = __commonJS({
|
|
113866
|
+
"../resolve-dependencies/lib/mergePeers.js"(exports2) {
|
|
113867
|
+
"use strict";
|
|
113868
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
113869
|
+
exports2.mergePeers = void 0;
|
|
113870
|
+
var semver_range_intersect_1 = require_dist12();
|
|
113871
|
+
function mergePeers(missingPeers) {
|
|
113872
|
+
const conflicts = [];
|
|
113873
|
+
const intersections = {};
|
|
113874
|
+
for (const [peerName, ranges] of Object.entries(missingPeers)) {
|
|
113875
|
+
if (ranges.every(({ optional }) => optional))
|
|
113876
|
+
continue;
|
|
113877
|
+
if (ranges.length === 1) {
|
|
113878
|
+
intersections[peerName] = ranges[0].wantedRange;
|
|
113879
|
+
continue;
|
|
113880
|
+
}
|
|
113881
|
+
const intersection = safeIntersect(ranges.map(({ wantedRange }) => wantedRange));
|
|
113882
|
+
if (intersection === null) {
|
|
113883
|
+
conflicts.push(peerName);
|
|
113884
|
+
} else {
|
|
113885
|
+
intersections[peerName] = intersection;
|
|
113886
|
+
}
|
|
113887
|
+
}
|
|
113888
|
+
return { conflicts, intersections };
|
|
113889
|
+
}
|
|
113890
|
+
exports2.mergePeers = mergePeers;
|
|
113891
|
+
function safeIntersect(ranges) {
|
|
113892
|
+
try {
|
|
113893
|
+
return (0, semver_range_intersect_1.intersect)(...ranges);
|
|
113894
|
+
} catch {
|
|
113895
|
+
return null;
|
|
113896
|
+
}
|
|
113897
|
+
}
|
|
113898
|
+
}
|
|
113899
|
+
});
|
|
113900
|
+
|
|
113210
113901
|
// ../resolve-dependencies/lib/resolvePeers.js
|
|
113211
113902
|
var require_resolvePeers = __commonJS({
|
|
113212
113903
|
"../resolve-dependencies/lib/resolvePeers.js"(exports2) {
|
|
@@ -113217,12 +113908,13 @@ var require_resolvePeers = __commonJS({
|
|
|
113217
113908
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
113218
113909
|
var crypto_1 = __importDefault(require("crypto"));
|
|
113219
113910
|
var path_1 = __importDefault(require("path"));
|
|
113911
|
+
var semverUtils_1 = require_semverUtils();
|
|
113220
113912
|
var dependency_path_1 = require_lib35();
|
|
113221
113913
|
var fromPairs_1 = __importDefault(require_fromPairs());
|
|
113222
113914
|
var isEmpty_1 = __importDefault(require_isEmpty2());
|
|
113223
113915
|
var pick_1 = __importDefault(require_pick());
|
|
113224
113916
|
var scan_1 = __importDefault(require_scan4());
|
|
113225
|
-
var
|
|
113917
|
+
var mergePeers_1 = require_mergePeers();
|
|
113226
113918
|
var nodeIdUtils_1 = require_nodeIdUtils();
|
|
113227
113919
|
function default_1(opts) {
|
|
113228
113920
|
const depGraph = {};
|
|
@@ -113230,11 +113922,9 @@ var require_resolvePeers = __commonJS({
|
|
|
113230
113922
|
const _createPkgsByName = createPkgsByName.bind(null, opts.dependenciesTree);
|
|
113231
113923
|
const rootProject = opts.projects.length > 1 ? opts.projects.find(({ id }) => id === ".") : null;
|
|
113232
113924
|
const rootPkgsByName = rootProject == null ? {} : _createPkgsByName(rootProject);
|
|
113233
|
-
const
|
|
113234
|
-
|
|
113235
|
-
missing: {}
|
|
113236
|
-
};
|
|
113237
|
-
for (const { directNodeIdsByAlias, topParents, rootDir } of opts.projects) {
|
|
113925
|
+
const peerDependencyIssuesByProjects = {};
|
|
113926
|
+
for (const { directNodeIdsByAlias, topParents, rootDir, id } of opts.projects) {
|
|
113927
|
+
const peerDependencyIssues = { bad: {}, missing: {} };
|
|
113238
113928
|
const pkgsByName = {
|
|
113239
113929
|
...rootPkgsByName,
|
|
113240
113930
|
..._createPkgsByName({ directNodeIdsByAlias, topParents })
|
|
@@ -113244,12 +113934,18 @@ var require_resolvePeers = __commonJS({
|
|
|
113244
113934
|
depGraph,
|
|
113245
113935
|
lockfileDir: opts.lockfileDir,
|
|
113246
113936
|
pathsByNodeId,
|
|
113247
|
-
peerDependencyIssues,
|
|
113248
113937
|
peersCache: new Map(),
|
|
113938
|
+
peerDependencyIssues,
|
|
113249
113939
|
purePkgs: new Set(),
|
|
113250
113940
|
rootDir,
|
|
113251
113941
|
virtualStoreDir: opts.virtualStoreDir
|
|
113252
113942
|
});
|
|
113943
|
+
if (!(0, isEmpty_1.default)(peerDependencyIssues.bad) || !(0, isEmpty_1.default)(peerDependencyIssues.missing)) {
|
|
113944
|
+
peerDependencyIssuesByProjects[id] = {
|
|
113945
|
+
...peerDependencyIssues,
|
|
113946
|
+
...(0, mergePeers_1.mergePeers)(peerDependencyIssues.missing)
|
|
113947
|
+
};
|
|
113948
|
+
}
|
|
113253
113949
|
}
|
|
113254
113950
|
Object.values(depGraph).forEach((node) => {
|
|
113255
113951
|
node.children = Object.keys(node.children).reduce((acc, alias) => {
|
|
@@ -113268,7 +113964,7 @@ var require_resolvePeers = __commonJS({
|
|
|
113268
113964
|
return {
|
|
113269
113965
|
dependenciesGraph: depGraph,
|
|
113270
113966
|
dependenciesByProjectId,
|
|
113271
|
-
|
|
113967
|
+
peerDependencyIssuesByProjects
|
|
113272
113968
|
};
|
|
113273
113969
|
}
|
|
113274
113970
|
exports2.default = default_1;
|
|
@@ -113436,39 +114132,37 @@ var require_resolvePeers = __commonJS({
|
|
|
113436
114132
|
for (const peerName in ctx.resolvedPackage.peerDependencies) {
|
|
113437
114133
|
const peerVersionRange = ctx.resolvedPackage.peerDependencies[peerName];
|
|
113438
114134
|
const resolved = ctx.parentPkgs[peerName];
|
|
114135
|
+
const optionalPeer = ((_b = (_a = ctx.resolvedPackage.peerDependenciesMeta) === null || _a === void 0 ? void 0 : _a[peerName]) === null || _b === void 0 ? void 0 : _b.optional) === true;
|
|
113439
114136
|
if (!resolved) {
|
|
113440
114137
|
missingPeers.push(peerName);
|
|
113441
|
-
|
|
113442
|
-
|
|
113443
|
-
|
|
114138
|
+
const location = getLocationFromNodeId({
|
|
114139
|
+
dependenciesTree: ctx.dependenciesTree,
|
|
114140
|
+
nodeId: ctx.nodeId,
|
|
114141
|
+
pkg: ctx.resolvedPackage
|
|
114142
|
+
});
|
|
113444
114143
|
if (!ctx.peerDependencyIssues.missing[peerName]) {
|
|
113445
114144
|
ctx.peerDependencyIssues.missing[peerName] = [];
|
|
113446
114145
|
}
|
|
113447
114146
|
ctx.peerDependencyIssues.missing[peerName].push({
|
|
113448
|
-
|
|
113449
|
-
|
|
113450
|
-
nodeId: ctx.nodeId,
|
|
113451
|
-
lockfileDir: ctx.lockfileDir,
|
|
113452
|
-
rootDir: ctx.rootDir,
|
|
113453
|
-
pkg: ctx.resolvedPackage
|
|
113454
|
-
}),
|
|
114147
|
+
parents: location.parents,
|
|
114148
|
+
optional: optionalPeer,
|
|
113455
114149
|
wantedRange: peerVersionRange
|
|
113456
114150
|
});
|
|
113457
114151
|
continue;
|
|
113458
114152
|
}
|
|
113459
|
-
if (!
|
|
114153
|
+
if (!(0, semverUtils_1.satisfiesWithPrereleases)(resolved.version, peerVersionRange, true)) {
|
|
114154
|
+
const location = getLocationFromNodeId({
|
|
114155
|
+
dependenciesTree: ctx.dependenciesTree,
|
|
114156
|
+
nodeId: ctx.nodeId,
|
|
114157
|
+
pkg: ctx.resolvedPackage
|
|
114158
|
+
});
|
|
113460
114159
|
if (!ctx.peerDependencyIssues.bad[peerName]) {
|
|
113461
114160
|
ctx.peerDependencyIssues.bad[peerName] = [];
|
|
113462
114161
|
}
|
|
113463
114162
|
ctx.peerDependencyIssues.bad[peerName].push({
|
|
113464
|
-
location: getLocationFromNodeId({
|
|
113465
|
-
dependenciesTree: ctx.dependenciesTree,
|
|
113466
|
-
nodeId: ctx.nodeId,
|
|
113467
|
-
lockfileDir: ctx.lockfileDir,
|
|
113468
|
-
rootDir: ctx.rootDir,
|
|
113469
|
-
pkg: ctx.resolvedPackage
|
|
113470
|
-
}),
|
|
113471
114163
|
foundVersion: resolved.version,
|
|
114164
|
+
parents: location.parents,
|
|
114165
|
+
optional: optionalPeer,
|
|
113472
114166
|
wantedRange: peerVersionRange
|
|
113473
114167
|
});
|
|
113474
114168
|
}
|
|
@@ -113477,13 +114171,12 @@ var require_resolvePeers = __commonJS({
|
|
|
113477
114171
|
}
|
|
113478
114172
|
return { resolvedPeers, missingPeers };
|
|
113479
114173
|
}
|
|
113480
|
-
function getLocationFromNodeId({ dependenciesTree,
|
|
114174
|
+
function getLocationFromNodeId({ dependenciesTree, nodeId, pkg }) {
|
|
113481
114175
|
const parts = (0, nodeIdUtils_1.splitNodeId)(nodeId).slice(0, -1);
|
|
113482
114176
|
const parents = (0, scan_1.default)((prevNodeId, pkgId) => (0, nodeIdUtils_1.createNodeId)(prevNodeId, pkgId), ">", parts).slice(2).map((nid) => (0, pick_1.default)(["name", "version"], dependenciesTree[nid].resolvedPackage));
|
|
113483
114177
|
parents.push({ name: pkg.name, version: pkg.version });
|
|
113484
|
-
const projectPath = path_1.default.relative(lockfileDir, rootDir);
|
|
113485
114178
|
return {
|
|
113486
|
-
|
|
114179
|
+
projectId: parts[0],
|
|
113487
114180
|
parents
|
|
113488
114181
|
};
|
|
113489
114182
|
}
|
|
@@ -114276,7 +114969,7 @@ var require_lib91 = __commonJS({
|
|
|
114276
114969
|
topParents
|
|
114277
114970
|
};
|
|
114278
114971
|
}));
|
|
114279
|
-
const { dependenciesGraph, dependenciesByProjectId,
|
|
114972
|
+
const { dependenciesGraph, dependenciesByProjectId, peerDependencyIssuesByProjects } = (0, resolvePeers_1.default)({
|
|
114280
114973
|
dependenciesTree,
|
|
114281
114974
|
lockfileDir: opts.lockfileDir,
|
|
114282
114975
|
projects: projectsToLink,
|
|
@@ -114322,7 +115015,7 @@ var require_lib91 = __commonJS({
|
|
|
114322
115015
|
outdatedDependencies,
|
|
114323
115016
|
linkedDependenciesByProjectId,
|
|
114324
115017
|
newLockfile,
|
|
114325
|
-
|
|
115018
|
+
peerDependencyIssuesByProjects,
|
|
114326
115019
|
waitTillAllFetchingsFinish,
|
|
114327
115020
|
wantedToBeSkippedPackageIds
|
|
114328
115021
|
};
|
|
@@ -115499,19 +116192,21 @@ var require_reportPeerDependencyIssues2 = __commonJS({
|
|
|
115499
116192
|
var error_1 = __importDefault(require_lib8());
|
|
115500
116193
|
var core_loggers_1 = require_lib10();
|
|
115501
116194
|
var isEmpty_1 = __importDefault(require_isEmpty2());
|
|
115502
|
-
function default_1(
|
|
115503
|
-
if ((0, isEmpty_1.default)(
|
|
116195
|
+
function default_1(peerDependencyIssuesByProjects, opts) {
|
|
116196
|
+
if (Object.values(peerDependencyIssuesByProjects).every((peerIssuesOfProject) => (0, isEmpty_1.default)(peerIssuesOfProject.bad) && ((0, isEmpty_1.default)(peerIssuesOfProject.missing) || peerIssuesOfProject.conflicts.length === 0 && Object.keys(peerIssuesOfProject.intersections).length === 0)))
|
|
115504
116197
|
return;
|
|
115505
116198
|
if (opts.strictPeerDependencies) {
|
|
115506
|
-
throw new PeerDependencyIssuesError(
|
|
116199
|
+
throw new PeerDependencyIssuesError(peerDependencyIssuesByProjects);
|
|
115507
116200
|
}
|
|
115508
|
-
core_loggers_1.peerDependencyIssuesLogger.debug(
|
|
116201
|
+
core_loggers_1.peerDependencyIssuesLogger.debug({
|
|
116202
|
+
issuesByProjects: peerDependencyIssuesByProjects
|
|
116203
|
+
});
|
|
115509
116204
|
}
|
|
115510
116205
|
exports2.default = default_1;
|
|
115511
116206
|
var PeerDependencyIssuesError = class extends error_1.default {
|
|
115512
116207
|
constructor(issues) {
|
|
115513
116208
|
super("PEER_DEP_ISSUES", "Unmet peer dependencies");
|
|
115514
|
-
this.
|
|
116209
|
+
this.issuesByProjects = issues;
|
|
115515
116210
|
}
|
|
115516
116211
|
};
|
|
115517
116212
|
exports2.PeerDependencyIssuesError = PeerDependencyIssuesError;
|
|
@@ -116012,7 +116707,7 @@ var require_install = __commonJS({
|
|
|
116012
116707
|
}
|
|
116013
116708
|
}), {});
|
|
116014
116709
|
}
|
|
116015
|
-
let { dependenciesGraph, dependenciesByProjectId, finishLockfileUpdates, linkedDependenciesByProjectId, newLockfile, outdatedDependencies,
|
|
116710
|
+
let { dependenciesGraph, dependenciesByProjectId, finishLockfileUpdates, linkedDependenciesByProjectId, newLockfile, outdatedDependencies, peerDependencyIssuesByProjects, wantedToBeSkippedPackageIds, waitTillAllFetchingsFinish } = await (0, resolve_dependencies_1.default)(projects, {
|
|
116016
116711
|
currentLockfile: ctx.currentLockfile,
|
|
116017
116712
|
defaultUpdateDepth: opts.update || opts.updateMatching != null ? opts.depth : -1,
|
|
116018
116713
|
dryRun: opts.lockfileOnly,
|
|
@@ -116207,7 +116902,7 @@ var require_install = __commonJS({
|
|
|
116207
116902
|
await waitTillAllFetchingsFinish();
|
|
116208
116903
|
core_loggers_1.summaryLogger.debug({ prefix: opts.lockfileDir });
|
|
116209
116904
|
await opts.storeController.close();
|
|
116210
|
-
(0, reportPeerDependencyIssues_1.default)(
|
|
116905
|
+
(0, reportPeerDependencyIssues_1.default)(peerDependencyIssuesByProjects, {
|
|
116211
116906
|
lockfileDir: opts.lockfileDir,
|
|
116212
116907
|
strictPeerDependencies: opts.strictPeerDependencies
|
|
116213
116908
|
});
|
|
@@ -116240,1272 +116935,22 @@ var require_install = __commonJS({
|
|
|
116240
116935
|
}
|
|
116241
116936
|
});
|
|
116242
116937
|
|
|
116243
|
-
//
|
|
116244
|
-
var
|
|
116245
|
-
"
|
|
116246
|
-
exports2 = module2.exports = SemVer;
|
|
116247
|
-
var debug;
|
|
116248
|
-
if (typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG)) {
|
|
116249
|
-
debug = function() {
|
|
116250
|
-
var args2 = Array.prototype.slice.call(arguments, 0);
|
|
116251
|
-
args2.unshift("SEMVER");
|
|
116252
|
-
console.log.apply(console, args2);
|
|
116253
|
-
};
|
|
116254
|
-
} else {
|
|
116255
|
-
debug = function() {
|
|
116256
|
-
};
|
|
116257
|
-
}
|
|
116258
|
-
exports2.SEMVER_SPEC_VERSION = "2.0.0";
|
|
116259
|
-
var MAX_LENGTH = 256;
|
|
116260
|
-
var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991;
|
|
116261
|
-
var MAX_SAFE_COMPONENT_LENGTH = 16;
|
|
116262
|
-
var re = exports2.re = [];
|
|
116263
|
-
var src = exports2.src = [];
|
|
116264
|
-
var R = 0;
|
|
116265
|
-
var NUMERICIDENTIFIER = R++;
|
|
116266
|
-
src[NUMERICIDENTIFIER] = "0|[1-9]\\d*";
|
|
116267
|
-
var NUMERICIDENTIFIERLOOSE = R++;
|
|
116268
|
-
src[NUMERICIDENTIFIERLOOSE] = "[0-9]+";
|
|
116269
|
-
var NONNUMERICIDENTIFIER = R++;
|
|
116270
|
-
src[NONNUMERICIDENTIFIER] = "\\d*[a-zA-Z-][a-zA-Z0-9-]*";
|
|
116271
|
-
var MAINVERSION = R++;
|
|
116272
|
-
src[MAINVERSION] = "(" + src[NUMERICIDENTIFIER] + ")\\.(" + src[NUMERICIDENTIFIER] + ")\\.(" + src[NUMERICIDENTIFIER] + ")";
|
|
116273
|
-
var MAINVERSIONLOOSE = R++;
|
|
116274
|
-
src[MAINVERSIONLOOSE] = "(" + src[NUMERICIDENTIFIERLOOSE] + ")\\.(" + src[NUMERICIDENTIFIERLOOSE] + ")\\.(" + src[NUMERICIDENTIFIERLOOSE] + ")";
|
|
116275
|
-
var PRERELEASEIDENTIFIER = R++;
|
|
116276
|
-
src[PRERELEASEIDENTIFIER] = "(?:" + src[NUMERICIDENTIFIER] + "|" + src[NONNUMERICIDENTIFIER] + ")";
|
|
116277
|
-
var PRERELEASEIDENTIFIERLOOSE = R++;
|
|
116278
|
-
src[PRERELEASEIDENTIFIERLOOSE] = "(?:" + src[NUMERICIDENTIFIERLOOSE] + "|" + src[NONNUMERICIDENTIFIER] + ")";
|
|
116279
|
-
var PRERELEASE = R++;
|
|
116280
|
-
src[PRERELEASE] = "(?:-(" + src[PRERELEASEIDENTIFIER] + "(?:\\." + src[PRERELEASEIDENTIFIER] + ")*))";
|
|
116281
|
-
var PRERELEASELOOSE = R++;
|
|
116282
|
-
src[PRERELEASELOOSE] = "(?:-?(" + src[PRERELEASEIDENTIFIERLOOSE] + "(?:\\." + src[PRERELEASEIDENTIFIERLOOSE] + ")*))";
|
|
116283
|
-
var BUILDIDENTIFIER = R++;
|
|
116284
|
-
src[BUILDIDENTIFIER] = "[0-9A-Za-z-]+";
|
|
116285
|
-
var BUILD = R++;
|
|
116286
|
-
src[BUILD] = "(?:\\+(" + src[BUILDIDENTIFIER] + "(?:\\." + src[BUILDIDENTIFIER] + ")*))";
|
|
116287
|
-
var FULL = R++;
|
|
116288
|
-
var FULLPLAIN = "v?" + src[MAINVERSION] + src[PRERELEASE] + "?" + src[BUILD] + "?";
|
|
116289
|
-
src[FULL] = "^" + FULLPLAIN + "$";
|
|
116290
|
-
var LOOSEPLAIN = "[v=\\s]*" + src[MAINVERSIONLOOSE] + src[PRERELEASELOOSE] + "?" + src[BUILD] + "?";
|
|
116291
|
-
var LOOSE = R++;
|
|
116292
|
-
src[LOOSE] = "^" + LOOSEPLAIN + "$";
|
|
116293
|
-
var GTLT = R++;
|
|
116294
|
-
src[GTLT] = "((?:<|>)?=?)";
|
|
116295
|
-
var XRANGEIDENTIFIERLOOSE = R++;
|
|
116296
|
-
src[XRANGEIDENTIFIERLOOSE] = src[NUMERICIDENTIFIERLOOSE] + "|x|X|\\*";
|
|
116297
|
-
var XRANGEIDENTIFIER = R++;
|
|
116298
|
-
src[XRANGEIDENTIFIER] = src[NUMERICIDENTIFIER] + "|x|X|\\*";
|
|
116299
|
-
var XRANGEPLAIN = R++;
|
|
116300
|
-
src[XRANGEPLAIN] = "[v=\\s]*(" + src[XRANGEIDENTIFIER] + ")(?:\\.(" + src[XRANGEIDENTIFIER] + ")(?:\\.(" + src[XRANGEIDENTIFIER] + ")(?:" + src[PRERELEASE] + ")?" + src[BUILD] + "?)?)?";
|
|
116301
|
-
var XRANGEPLAINLOOSE = R++;
|
|
116302
|
-
src[XRANGEPLAINLOOSE] = "[v=\\s]*(" + src[XRANGEIDENTIFIERLOOSE] + ")(?:\\.(" + src[XRANGEIDENTIFIERLOOSE] + ")(?:\\.(" + src[XRANGEIDENTIFIERLOOSE] + ")(?:" + src[PRERELEASELOOSE] + ")?" + src[BUILD] + "?)?)?";
|
|
116303
|
-
var XRANGE = R++;
|
|
116304
|
-
src[XRANGE] = "^" + src[GTLT] + "\\s*" + src[XRANGEPLAIN] + "$";
|
|
116305
|
-
var XRANGELOOSE = R++;
|
|
116306
|
-
src[XRANGELOOSE] = "^" + src[GTLT] + "\\s*" + src[XRANGEPLAINLOOSE] + "$";
|
|
116307
|
-
var COERCE = R++;
|
|
116308
|
-
src[COERCE] = "(?:^|[^\\d])(\\d{1," + MAX_SAFE_COMPONENT_LENGTH + "})(?:\\.(\\d{1," + MAX_SAFE_COMPONENT_LENGTH + "}))?(?:\\.(\\d{1," + MAX_SAFE_COMPONENT_LENGTH + "}))?(?:$|[^\\d])";
|
|
116309
|
-
var LONETILDE = R++;
|
|
116310
|
-
src[LONETILDE] = "(?:~>?)";
|
|
116311
|
-
var TILDETRIM = R++;
|
|
116312
|
-
src[TILDETRIM] = "(\\s*)" + src[LONETILDE] + "\\s+";
|
|
116313
|
-
re[TILDETRIM] = new RegExp(src[TILDETRIM], "g");
|
|
116314
|
-
var tildeTrimReplace = "$1~";
|
|
116315
|
-
var TILDE = R++;
|
|
116316
|
-
src[TILDE] = "^" + src[LONETILDE] + src[XRANGEPLAIN] + "$";
|
|
116317
|
-
var TILDELOOSE = R++;
|
|
116318
|
-
src[TILDELOOSE] = "^" + src[LONETILDE] + src[XRANGEPLAINLOOSE] + "$";
|
|
116319
|
-
var LONECARET = R++;
|
|
116320
|
-
src[LONECARET] = "(?:\\^)";
|
|
116321
|
-
var CARETTRIM = R++;
|
|
116322
|
-
src[CARETTRIM] = "(\\s*)" + src[LONECARET] + "\\s+";
|
|
116323
|
-
re[CARETTRIM] = new RegExp(src[CARETTRIM], "g");
|
|
116324
|
-
var caretTrimReplace = "$1^";
|
|
116325
|
-
var CARET = R++;
|
|
116326
|
-
src[CARET] = "^" + src[LONECARET] + src[XRANGEPLAIN] + "$";
|
|
116327
|
-
var CARETLOOSE = R++;
|
|
116328
|
-
src[CARETLOOSE] = "^" + src[LONECARET] + src[XRANGEPLAINLOOSE] + "$";
|
|
116329
|
-
var COMPARATORLOOSE = R++;
|
|
116330
|
-
src[COMPARATORLOOSE] = "^" + src[GTLT] + "\\s*(" + LOOSEPLAIN + ")$|^$";
|
|
116331
|
-
var COMPARATOR = R++;
|
|
116332
|
-
src[COMPARATOR] = "^" + src[GTLT] + "\\s*(" + FULLPLAIN + ")$|^$";
|
|
116333
|
-
var COMPARATORTRIM = R++;
|
|
116334
|
-
src[COMPARATORTRIM] = "(\\s*)" + src[GTLT] + "\\s*(" + LOOSEPLAIN + "|" + src[XRANGEPLAIN] + ")";
|
|
116335
|
-
re[COMPARATORTRIM] = new RegExp(src[COMPARATORTRIM], "g");
|
|
116336
|
-
var comparatorTrimReplace = "$1$2$3";
|
|
116337
|
-
var HYPHENRANGE = R++;
|
|
116338
|
-
src[HYPHENRANGE] = "^\\s*(" + src[XRANGEPLAIN] + ")\\s+-\\s+(" + src[XRANGEPLAIN] + ")\\s*$";
|
|
116339
|
-
var HYPHENRANGELOOSE = R++;
|
|
116340
|
-
src[HYPHENRANGELOOSE] = "^\\s*(" + src[XRANGEPLAINLOOSE] + ")\\s+-\\s+(" + src[XRANGEPLAINLOOSE] + ")\\s*$";
|
|
116341
|
-
var STAR = R++;
|
|
116342
|
-
src[STAR] = "(<|>)?=?\\s*\\*";
|
|
116343
|
-
for (i = 0; i < R; i++) {
|
|
116344
|
-
debug(i, src[i]);
|
|
116345
|
-
if (!re[i]) {
|
|
116346
|
-
re[i] = new RegExp(src[i]);
|
|
116347
|
-
}
|
|
116348
|
-
}
|
|
116349
|
-
var i;
|
|
116350
|
-
exports2.parse = parse;
|
|
116351
|
-
function parse(version, options) {
|
|
116352
|
-
if (!options || typeof options !== "object") {
|
|
116353
|
-
options = {
|
|
116354
|
-
loose: !!options,
|
|
116355
|
-
includePrerelease: false
|
|
116356
|
-
};
|
|
116357
|
-
}
|
|
116358
|
-
if (version instanceof SemVer) {
|
|
116359
|
-
return version;
|
|
116360
|
-
}
|
|
116361
|
-
if (typeof version !== "string") {
|
|
116362
|
-
return null;
|
|
116363
|
-
}
|
|
116364
|
-
if (version.length > MAX_LENGTH) {
|
|
116365
|
-
return null;
|
|
116366
|
-
}
|
|
116367
|
-
var r = options.loose ? re[LOOSE] : re[FULL];
|
|
116368
|
-
if (!r.test(version)) {
|
|
116369
|
-
return null;
|
|
116370
|
-
}
|
|
116371
|
-
try {
|
|
116372
|
-
return new SemVer(version, options);
|
|
116373
|
-
} catch (er) {
|
|
116374
|
-
return null;
|
|
116375
|
-
}
|
|
116376
|
-
}
|
|
116377
|
-
exports2.valid = valid;
|
|
116378
|
-
function valid(version, options) {
|
|
116379
|
-
var v = parse(version, options);
|
|
116380
|
-
return v ? v.version : null;
|
|
116381
|
-
}
|
|
116382
|
-
exports2.clean = clean;
|
|
116383
|
-
function clean(version, options) {
|
|
116384
|
-
var s = parse(version.trim().replace(/^[=v]+/, ""), options);
|
|
116385
|
-
return s ? s.version : null;
|
|
116386
|
-
}
|
|
116387
|
-
exports2.SemVer = SemVer;
|
|
116388
|
-
function SemVer(version, options) {
|
|
116389
|
-
if (!options || typeof options !== "object") {
|
|
116390
|
-
options = {
|
|
116391
|
-
loose: !!options,
|
|
116392
|
-
includePrerelease: false
|
|
116393
|
-
};
|
|
116394
|
-
}
|
|
116395
|
-
if (version instanceof SemVer) {
|
|
116396
|
-
if (version.loose === options.loose) {
|
|
116397
|
-
return version;
|
|
116398
|
-
} else {
|
|
116399
|
-
version = version.version;
|
|
116400
|
-
}
|
|
116401
|
-
} else if (typeof version !== "string") {
|
|
116402
|
-
throw new TypeError("Invalid Version: " + version);
|
|
116403
|
-
}
|
|
116404
|
-
if (version.length > MAX_LENGTH) {
|
|
116405
|
-
throw new TypeError("version is longer than " + MAX_LENGTH + " characters");
|
|
116406
|
-
}
|
|
116407
|
-
if (!(this instanceof SemVer)) {
|
|
116408
|
-
return new SemVer(version, options);
|
|
116409
|
-
}
|
|
116410
|
-
debug("SemVer", version, options);
|
|
116411
|
-
this.options = options;
|
|
116412
|
-
this.loose = !!options.loose;
|
|
116413
|
-
var m = version.trim().match(options.loose ? re[LOOSE] : re[FULL]);
|
|
116414
|
-
if (!m) {
|
|
116415
|
-
throw new TypeError("Invalid Version: " + version);
|
|
116416
|
-
}
|
|
116417
|
-
this.raw = version;
|
|
116418
|
-
this.major = +m[1];
|
|
116419
|
-
this.minor = +m[2];
|
|
116420
|
-
this.patch = +m[3];
|
|
116421
|
-
if (this.major > MAX_SAFE_INTEGER || this.major < 0) {
|
|
116422
|
-
throw new TypeError("Invalid major version");
|
|
116423
|
-
}
|
|
116424
|
-
if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {
|
|
116425
|
-
throw new TypeError("Invalid minor version");
|
|
116426
|
-
}
|
|
116427
|
-
if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {
|
|
116428
|
-
throw new TypeError("Invalid patch version");
|
|
116429
|
-
}
|
|
116430
|
-
if (!m[4]) {
|
|
116431
|
-
this.prerelease = [];
|
|
116432
|
-
} else {
|
|
116433
|
-
this.prerelease = m[4].split(".").map(function(id) {
|
|
116434
|
-
if (/^[0-9]+$/.test(id)) {
|
|
116435
|
-
var num = +id;
|
|
116436
|
-
if (num >= 0 && num < MAX_SAFE_INTEGER) {
|
|
116437
|
-
return num;
|
|
116438
|
-
}
|
|
116439
|
-
}
|
|
116440
|
-
return id;
|
|
116441
|
-
});
|
|
116442
|
-
}
|
|
116443
|
-
this.build = m[5] ? m[5].split(".") : [];
|
|
116444
|
-
this.format();
|
|
116445
|
-
}
|
|
116446
|
-
SemVer.prototype.format = function() {
|
|
116447
|
-
this.version = this.major + "." + this.minor + "." + this.patch;
|
|
116448
|
-
if (this.prerelease.length) {
|
|
116449
|
-
this.version += "-" + this.prerelease.join(".");
|
|
116450
|
-
}
|
|
116451
|
-
return this.version;
|
|
116452
|
-
};
|
|
116453
|
-
SemVer.prototype.toString = function() {
|
|
116454
|
-
return this.version;
|
|
116455
|
-
};
|
|
116456
|
-
SemVer.prototype.compare = function(other) {
|
|
116457
|
-
debug("SemVer.compare", this.version, this.options, other);
|
|
116458
|
-
if (!(other instanceof SemVer)) {
|
|
116459
|
-
other = new SemVer(other, this.options);
|
|
116460
|
-
}
|
|
116461
|
-
return this.compareMain(other) || this.comparePre(other);
|
|
116462
|
-
};
|
|
116463
|
-
SemVer.prototype.compareMain = function(other) {
|
|
116464
|
-
if (!(other instanceof SemVer)) {
|
|
116465
|
-
other = new SemVer(other, this.options);
|
|
116466
|
-
}
|
|
116467
|
-
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch);
|
|
116468
|
-
};
|
|
116469
|
-
SemVer.prototype.comparePre = function(other) {
|
|
116470
|
-
if (!(other instanceof SemVer)) {
|
|
116471
|
-
other = new SemVer(other, this.options);
|
|
116472
|
-
}
|
|
116473
|
-
if (this.prerelease.length && !other.prerelease.length) {
|
|
116474
|
-
return -1;
|
|
116475
|
-
} else if (!this.prerelease.length && other.prerelease.length) {
|
|
116476
|
-
return 1;
|
|
116477
|
-
} else if (!this.prerelease.length && !other.prerelease.length) {
|
|
116478
|
-
return 0;
|
|
116479
|
-
}
|
|
116480
|
-
var i2 = 0;
|
|
116481
|
-
do {
|
|
116482
|
-
var a = this.prerelease[i2];
|
|
116483
|
-
var b = other.prerelease[i2];
|
|
116484
|
-
debug("prerelease compare", i2, a, b);
|
|
116485
|
-
if (a === void 0 && b === void 0) {
|
|
116486
|
-
return 0;
|
|
116487
|
-
} else if (b === void 0) {
|
|
116488
|
-
return 1;
|
|
116489
|
-
} else if (a === void 0) {
|
|
116490
|
-
return -1;
|
|
116491
|
-
} else if (a === b) {
|
|
116492
|
-
continue;
|
|
116493
|
-
} else {
|
|
116494
|
-
return compareIdentifiers(a, b);
|
|
116495
|
-
}
|
|
116496
|
-
} while (++i2);
|
|
116497
|
-
};
|
|
116498
|
-
SemVer.prototype.inc = function(release, identifier) {
|
|
116499
|
-
switch (release) {
|
|
116500
|
-
case "premajor":
|
|
116501
|
-
this.prerelease.length = 0;
|
|
116502
|
-
this.patch = 0;
|
|
116503
|
-
this.minor = 0;
|
|
116504
|
-
this.major++;
|
|
116505
|
-
this.inc("pre", identifier);
|
|
116506
|
-
break;
|
|
116507
|
-
case "preminor":
|
|
116508
|
-
this.prerelease.length = 0;
|
|
116509
|
-
this.patch = 0;
|
|
116510
|
-
this.minor++;
|
|
116511
|
-
this.inc("pre", identifier);
|
|
116512
|
-
break;
|
|
116513
|
-
case "prepatch":
|
|
116514
|
-
this.prerelease.length = 0;
|
|
116515
|
-
this.inc("patch", identifier);
|
|
116516
|
-
this.inc("pre", identifier);
|
|
116517
|
-
break;
|
|
116518
|
-
case "prerelease":
|
|
116519
|
-
if (this.prerelease.length === 0) {
|
|
116520
|
-
this.inc("patch", identifier);
|
|
116521
|
-
}
|
|
116522
|
-
this.inc("pre", identifier);
|
|
116523
|
-
break;
|
|
116524
|
-
case "major":
|
|
116525
|
-
if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) {
|
|
116526
|
-
this.major++;
|
|
116527
|
-
}
|
|
116528
|
-
this.minor = 0;
|
|
116529
|
-
this.patch = 0;
|
|
116530
|
-
this.prerelease = [];
|
|
116531
|
-
break;
|
|
116532
|
-
case "minor":
|
|
116533
|
-
if (this.patch !== 0 || this.prerelease.length === 0) {
|
|
116534
|
-
this.minor++;
|
|
116535
|
-
}
|
|
116536
|
-
this.patch = 0;
|
|
116537
|
-
this.prerelease = [];
|
|
116538
|
-
break;
|
|
116539
|
-
case "patch":
|
|
116540
|
-
if (this.prerelease.length === 0) {
|
|
116541
|
-
this.patch++;
|
|
116542
|
-
}
|
|
116543
|
-
this.prerelease = [];
|
|
116544
|
-
break;
|
|
116545
|
-
case "pre":
|
|
116546
|
-
if (this.prerelease.length === 0) {
|
|
116547
|
-
this.prerelease = [0];
|
|
116548
|
-
} else {
|
|
116549
|
-
var i2 = this.prerelease.length;
|
|
116550
|
-
while (--i2 >= 0) {
|
|
116551
|
-
if (typeof this.prerelease[i2] === "number") {
|
|
116552
|
-
this.prerelease[i2]++;
|
|
116553
|
-
i2 = -2;
|
|
116554
|
-
}
|
|
116555
|
-
}
|
|
116556
|
-
if (i2 === -1) {
|
|
116557
|
-
this.prerelease.push(0);
|
|
116558
|
-
}
|
|
116559
|
-
}
|
|
116560
|
-
if (identifier) {
|
|
116561
|
-
if (this.prerelease[0] === identifier) {
|
|
116562
|
-
if (isNaN(this.prerelease[1])) {
|
|
116563
|
-
this.prerelease = [identifier, 0];
|
|
116564
|
-
}
|
|
116565
|
-
} else {
|
|
116566
|
-
this.prerelease = [identifier, 0];
|
|
116567
|
-
}
|
|
116568
|
-
}
|
|
116569
|
-
break;
|
|
116570
|
-
default:
|
|
116571
|
-
throw new Error("invalid increment argument: " + release);
|
|
116572
|
-
}
|
|
116573
|
-
this.format();
|
|
116574
|
-
this.raw = this.version;
|
|
116575
|
-
return this;
|
|
116576
|
-
};
|
|
116577
|
-
exports2.inc = inc;
|
|
116578
|
-
function inc(version, release, loose, identifier) {
|
|
116579
|
-
if (typeof loose === "string") {
|
|
116580
|
-
identifier = loose;
|
|
116581
|
-
loose = void 0;
|
|
116582
|
-
}
|
|
116583
|
-
try {
|
|
116584
|
-
return new SemVer(version, loose).inc(release, identifier).version;
|
|
116585
|
-
} catch (er) {
|
|
116586
|
-
return null;
|
|
116587
|
-
}
|
|
116588
|
-
}
|
|
116589
|
-
exports2.diff = diff;
|
|
116590
|
-
function diff(version1, version2) {
|
|
116591
|
-
if (eq(version1, version2)) {
|
|
116592
|
-
return null;
|
|
116593
|
-
} else {
|
|
116594
|
-
var v1 = parse(version1);
|
|
116595
|
-
var v2 = parse(version2);
|
|
116596
|
-
var prefix = "";
|
|
116597
|
-
if (v1.prerelease.length || v2.prerelease.length) {
|
|
116598
|
-
prefix = "pre";
|
|
116599
|
-
var defaultResult = "prerelease";
|
|
116600
|
-
}
|
|
116601
|
-
for (var key in v1) {
|
|
116602
|
-
if (key === "major" || key === "minor" || key === "patch") {
|
|
116603
|
-
if (v1[key] !== v2[key]) {
|
|
116604
|
-
return prefix + key;
|
|
116605
|
-
}
|
|
116606
|
-
}
|
|
116607
|
-
}
|
|
116608
|
-
return defaultResult;
|
|
116609
|
-
}
|
|
116610
|
-
}
|
|
116611
|
-
exports2.compareIdentifiers = compareIdentifiers;
|
|
116612
|
-
var numeric = /^[0-9]+$/;
|
|
116613
|
-
function compareIdentifiers(a, b) {
|
|
116614
|
-
var anum = numeric.test(a);
|
|
116615
|
-
var bnum = numeric.test(b);
|
|
116616
|
-
if (anum && bnum) {
|
|
116617
|
-
a = +a;
|
|
116618
|
-
b = +b;
|
|
116619
|
-
}
|
|
116620
|
-
return a === b ? 0 : anum && !bnum ? -1 : bnum && !anum ? 1 : a < b ? -1 : 1;
|
|
116621
|
-
}
|
|
116622
|
-
exports2.rcompareIdentifiers = rcompareIdentifiers;
|
|
116623
|
-
function rcompareIdentifiers(a, b) {
|
|
116624
|
-
return compareIdentifiers(b, a);
|
|
116625
|
-
}
|
|
116626
|
-
exports2.major = major;
|
|
116627
|
-
function major(a, loose) {
|
|
116628
|
-
return new SemVer(a, loose).major;
|
|
116629
|
-
}
|
|
116630
|
-
exports2.minor = minor;
|
|
116631
|
-
function minor(a, loose) {
|
|
116632
|
-
return new SemVer(a, loose).minor;
|
|
116633
|
-
}
|
|
116634
|
-
exports2.patch = patch;
|
|
116635
|
-
function patch(a, loose) {
|
|
116636
|
-
return new SemVer(a, loose).patch;
|
|
116637
|
-
}
|
|
116638
|
-
exports2.compare = compare;
|
|
116639
|
-
function compare(a, b, loose) {
|
|
116640
|
-
return new SemVer(a, loose).compare(new SemVer(b, loose));
|
|
116641
|
-
}
|
|
116642
|
-
exports2.compareLoose = compareLoose;
|
|
116643
|
-
function compareLoose(a, b) {
|
|
116644
|
-
return compare(a, b, true);
|
|
116645
|
-
}
|
|
116646
|
-
exports2.rcompare = rcompare;
|
|
116647
|
-
function rcompare(a, b, loose) {
|
|
116648
|
-
return compare(b, a, loose);
|
|
116649
|
-
}
|
|
116650
|
-
exports2.sort = sort;
|
|
116651
|
-
function sort(list, loose) {
|
|
116652
|
-
return list.sort(function(a, b) {
|
|
116653
|
-
return exports2.compare(a, b, loose);
|
|
116654
|
-
});
|
|
116655
|
-
}
|
|
116656
|
-
exports2.rsort = rsort;
|
|
116657
|
-
function rsort(list, loose) {
|
|
116658
|
-
return list.sort(function(a, b) {
|
|
116659
|
-
return exports2.rcompare(a, b, loose);
|
|
116660
|
-
});
|
|
116661
|
-
}
|
|
116662
|
-
exports2.gt = gt;
|
|
116663
|
-
function gt(a, b, loose) {
|
|
116664
|
-
return compare(a, b, loose) > 0;
|
|
116665
|
-
}
|
|
116666
|
-
exports2.lt = lt;
|
|
116667
|
-
function lt(a, b, loose) {
|
|
116668
|
-
return compare(a, b, loose) < 0;
|
|
116669
|
-
}
|
|
116670
|
-
exports2.eq = eq;
|
|
116671
|
-
function eq(a, b, loose) {
|
|
116672
|
-
return compare(a, b, loose) === 0;
|
|
116673
|
-
}
|
|
116674
|
-
exports2.neq = neq;
|
|
116675
|
-
function neq(a, b, loose) {
|
|
116676
|
-
return compare(a, b, loose) !== 0;
|
|
116677
|
-
}
|
|
116678
|
-
exports2.gte = gte;
|
|
116679
|
-
function gte(a, b, loose) {
|
|
116680
|
-
return compare(a, b, loose) >= 0;
|
|
116681
|
-
}
|
|
116682
|
-
exports2.lte = lte;
|
|
116683
|
-
function lte(a, b, loose) {
|
|
116684
|
-
return compare(a, b, loose) <= 0;
|
|
116685
|
-
}
|
|
116686
|
-
exports2.cmp = cmp;
|
|
116687
|
-
function cmp(a, op, b, loose) {
|
|
116688
|
-
switch (op) {
|
|
116689
|
-
case "===":
|
|
116690
|
-
if (typeof a === "object")
|
|
116691
|
-
a = a.version;
|
|
116692
|
-
if (typeof b === "object")
|
|
116693
|
-
b = b.version;
|
|
116694
|
-
return a === b;
|
|
116695
|
-
case "!==":
|
|
116696
|
-
if (typeof a === "object")
|
|
116697
|
-
a = a.version;
|
|
116698
|
-
if (typeof b === "object")
|
|
116699
|
-
b = b.version;
|
|
116700
|
-
return a !== b;
|
|
116701
|
-
case "":
|
|
116702
|
-
case "=":
|
|
116703
|
-
case "==":
|
|
116704
|
-
return eq(a, b, loose);
|
|
116705
|
-
case "!=":
|
|
116706
|
-
return neq(a, b, loose);
|
|
116707
|
-
case ">":
|
|
116708
|
-
return gt(a, b, loose);
|
|
116709
|
-
case ">=":
|
|
116710
|
-
return gte(a, b, loose);
|
|
116711
|
-
case "<":
|
|
116712
|
-
return lt(a, b, loose);
|
|
116713
|
-
case "<=":
|
|
116714
|
-
return lte(a, b, loose);
|
|
116715
|
-
default:
|
|
116716
|
-
throw new TypeError("Invalid operator: " + op);
|
|
116717
|
-
}
|
|
116718
|
-
}
|
|
116719
|
-
exports2.Comparator = Comparator;
|
|
116720
|
-
function Comparator(comp, options) {
|
|
116721
|
-
if (!options || typeof options !== "object") {
|
|
116722
|
-
options = {
|
|
116723
|
-
loose: !!options,
|
|
116724
|
-
includePrerelease: false
|
|
116725
|
-
};
|
|
116726
|
-
}
|
|
116727
|
-
if (comp instanceof Comparator) {
|
|
116728
|
-
if (comp.loose === !!options.loose) {
|
|
116729
|
-
return comp;
|
|
116730
|
-
} else {
|
|
116731
|
-
comp = comp.value;
|
|
116732
|
-
}
|
|
116733
|
-
}
|
|
116734
|
-
if (!(this instanceof Comparator)) {
|
|
116735
|
-
return new Comparator(comp, options);
|
|
116736
|
-
}
|
|
116737
|
-
debug("comparator", comp, options);
|
|
116738
|
-
this.options = options;
|
|
116739
|
-
this.loose = !!options.loose;
|
|
116740
|
-
this.parse(comp);
|
|
116741
|
-
if (this.semver === ANY) {
|
|
116742
|
-
this.value = "";
|
|
116743
|
-
} else {
|
|
116744
|
-
this.value = this.operator + this.semver.version;
|
|
116745
|
-
}
|
|
116746
|
-
debug("comp", this);
|
|
116747
|
-
}
|
|
116748
|
-
var ANY = {};
|
|
116749
|
-
Comparator.prototype.parse = function(comp) {
|
|
116750
|
-
var r = this.options.loose ? re[COMPARATORLOOSE] : re[COMPARATOR];
|
|
116751
|
-
var m = comp.match(r);
|
|
116752
|
-
if (!m) {
|
|
116753
|
-
throw new TypeError("Invalid comparator: " + comp);
|
|
116754
|
-
}
|
|
116755
|
-
this.operator = m[1];
|
|
116756
|
-
if (this.operator === "=") {
|
|
116757
|
-
this.operator = "";
|
|
116758
|
-
}
|
|
116759
|
-
if (!m[2]) {
|
|
116760
|
-
this.semver = ANY;
|
|
116761
|
-
} else {
|
|
116762
|
-
this.semver = new SemVer(m[2], this.options.loose);
|
|
116763
|
-
}
|
|
116764
|
-
};
|
|
116765
|
-
Comparator.prototype.toString = function() {
|
|
116766
|
-
return this.value;
|
|
116767
|
-
};
|
|
116768
|
-
Comparator.prototype.test = function(version) {
|
|
116769
|
-
debug("Comparator.test", version, this.options.loose);
|
|
116770
|
-
if (this.semver === ANY) {
|
|
116771
|
-
return true;
|
|
116772
|
-
}
|
|
116773
|
-
if (typeof version === "string") {
|
|
116774
|
-
version = new SemVer(version, this.options);
|
|
116775
|
-
}
|
|
116776
|
-
return cmp(version, this.operator, this.semver, this.options);
|
|
116777
|
-
};
|
|
116778
|
-
Comparator.prototype.intersects = function(comp, options) {
|
|
116779
|
-
if (!(comp instanceof Comparator)) {
|
|
116780
|
-
throw new TypeError("a Comparator is required");
|
|
116781
|
-
}
|
|
116782
|
-
if (!options || typeof options !== "object") {
|
|
116783
|
-
options = {
|
|
116784
|
-
loose: !!options,
|
|
116785
|
-
includePrerelease: false
|
|
116786
|
-
};
|
|
116787
|
-
}
|
|
116788
|
-
var rangeTmp;
|
|
116789
|
-
if (this.operator === "") {
|
|
116790
|
-
rangeTmp = new Range(comp.value, options);
|
|
116791
|
-
return satisfies(this.value, rangeTmp, options);
|
|
116792
|
-
} else if (comp.operator === "") {
|
|
116793
|
-
rangeTmp = new Range(this.value, options);
|
|
116794
|
-
return satisfies(comp.semver, rangeTmp, options);
|
|
116795
|
-
}
|
|
116796
|
-
var sameDirectionIncreasing = (this.operator === ">=" || this.operator === ">") && (comp.operator === ">=" || comp.operator === ">");
|
|
116797
|
-
var sameDirectionDecreasing = (this.operator === "<=" || this.operator === "<") && (comp.operator === "<=" || comp.operator === "<");
|
|
116798
|
-
var sameSemVer = this.semver.version === comp.semver.version;
|
|
116799
|
-
var differentDirectionsInclusive = (this.operator === ">=" || this.operator === "<=") && (comp.operator === ">=" || comp.operator === "<=");
|
|
116800
|
-
var oppositeDirectionsLessThan = cmp(this.semver, "<", comp.semver, options) && ((this.operator === ">=" || this.operator === ">") && (comp.operator === "<=" || comp.operator === "<"));
|
|
116801
|
-
var oppositeDirectionsGreaterThan = cmp(this.semver, ">", comp.semver, options) && ((this.operator === "<=" || this.operator === "<") && (comp.operator === ">=" || comp.operator === ">"));
|
|
116802
|
-
return sameDirectionIncreasing || sameDirectionDecreasing || sameSemVer && differentDirectionsInclusive || oppositeDirectionsLessThan || oppositeDirectionsGreaterThan;
|
|
116803
|
-
};
|
|
116804
|
-
exports2.Range = Range;
|
|
116805
|
-
function Range(range, options) {
|
|
116806
|
-
if (!options || typeof options !== "object") {
|
|
116807
|
-
options = {
|
|
116808
|
-
loose: !!options,
|
|
116809
|
-
includePrerelease: false
|
|
116810
|
-
};
|
|
116811
|
-
}
|
|
116812
|
-
if (range instanceof Range) {
|
|
116813
|
-
if (range.loose === !!options.loose && range.includePrerelease === !!options.includePrerelease) {
|
|
116814
|
-
return range;
|
|
116815
|
-
} else {
|
|
116816
|
-
return new Range(range.raw, options);
|
|
116817
|
-
}
|
|
116818
|
-
}
|
|
116819
|
-
if (range instanceof Comparator) {
|
|
116820
|
-
return new Range(range.value, options);
|
|
116821
|
-
}
|
|
116822
|
-
if (!(this instanceof Range)) {
|
|
116823
|
-
return new Range(range, options);
|
|
116824
|
-
}
|
|
116825
|
-
this.options = options;
|
|
116826
|
-
this.loose = !!options.loose;
|
|
116827
|
-
this.includePrerelease = !!options.includePrerelease;
|
|
116828
|
-
this.raw = range;
|
|
116829
|
-
this.set = range.split(/\s*\|\|\s*/).map(function(range2) {
|
|
116830
|
-
return this.parseRange(range2.trim());
|
|
116831
|
-
}, this).filter(function(c) {
|
|
116832
|
-
return c.length;
|
|
116833
|
-
});
|
|
116834
|
-
if (!this.set.length) {
|
|
116835
|
-
throw new TypeError("Invalid SemVer Range: " + range);
|
|
116836
|
-
}
|
|
116837
|
-
this.format();
|
|
116838
|
-
}
|
|
116839
|
-
Range.prototype.format = function() {
|
|
116840
|
-
this.range = this.set.map(function(comps) {
|
|
116841
|
-
return comps.join(" ").trim();
|
|
116842
|
-
}).join("||").trim();
|
|
116843
|
-
return this.range;
|
|
116844
|
-
};
|
|
116845
|
-
Range.prototype.toString = function() {
|
|
116846
|
-
return this.range;
|
|
116847
|
-
};
|
|
116848
|
-
Range.prototype.parseRange = function(range) {
|
|
116849
|
-
var loose = this.options.loose;
|
|
116850
|
-
range = range.trim();
|
|
116851
|
-
var hr = loose ? re[HYPHENRANGELOOSE] : re[HYPHENRANGE];
|
|
116852
|
-
range = range.replace(hr, hyphenReplace);
|
|
116853
|
-
debug("hyphen replace", range);
|
|
116854
|
-
range = range.replace(re[COMPARATORTRIM], comparatorTrimReplace);
|
|
116855
|
-
debug("comparator trim", range, re[COMPARATORTRIM]);
|
|
116856
|
-
range = range.replace(re[TILDETRIM], tildeTrimReplace);
|
|
116857
|
-
range = range.replace(re[CARETTRIM], caretTrimReplace);
|
|
116858
|
-
range = range.split(/\s+/).join(" ");
|
|
116859
|
-
var compRe = loose ? re[COMPARATORLOOSE] : re[COMPARATOR];
|
|
116860
|
-
var set = range.split(" ").map(function(comp) {
|
|
116861
|
-
return parseComparator(comp, this.options);
|
|
116862
|
-
}, this).join(" ").split(/\s+/);
|
|
116863
|
-
if (this.options.loose) {
|
|
116864
|
-
set = set.filter(function(comp) {
|
|
116865
|
-
return !!comp.match(compRe);
|
|
116866
|
-
});
|
|
116867
|
-
}
|
|
116868
|
-
set = set.map(function(comp) {
|
|
116869
|
-
return new Comparator(comp, this.options);
|
|
116870
|
-
}, this);
|
|
116871
|
-
return set;
|
|
116872
|
-
};
|
|
116873
|
-
Range.prototype.intersects = function(range, options) {
|
|
116874
|
-
if (!(range instanceof Range)) {
|
|
116875
|
-
throw new TypeError("a Range is required");
|
|
116876
|
-
}
|
|
116877
|
-
return this.set.some(function(thisComparators) {
|
|
116878
|
-
return thisComparators.every(function(thisComparator) {
|
|
116879
|
-
return range.set.some(function(rangeComparators) {
|
|
116880
|
-
return rangeComparators.every(function(rangeComparator) {
|
|
116881
|
-
return thisComparator.intersects(rangeComparator, options);
|
|
116882
|
-
});
|
|
116883
|
-
});
|
|
116884
|
-
});
|
|
116885
|
-
});
|
|
116886
|
-
};
|
|
116887
|
-
exports2.toComparators = toComparators;
|
|
116888
|
-
function toComparators(range, options) {
|
|
116889
|
-
return new Range(range, options).set.map(function(comp) {
|
|
116890
|
-
return comp.map(function(c) {
|
|
116891
|
-
return c.value;
|
|
116892
|
-
}).join(" ").trim().split(" ");
|
|
116893
|
-
});
|
|
116894
|
-
}
|
|
116895
|
-
function parseComparator(comp, options) {
|
|
116896
|
-
debug("comp", comp, options);
|
|
116897
|
-
comp = replaceCarets(comp, options);
|
|
116898
|
-
debug("caret", comp);
|
|
116899
|
-
comp = replaceTildes(comp, options);
|
|
116900
|
-
debug("tildes", comp);
|
|
116901
|
-
comp = replaceXRanges(comp, options);
|
|
116902
|
-
debug("xrange", comp);
|
|
116903
|
-
comp = replaceStars(comp, options);
|
|
116904
|
-
debug("stars", comp);
|
|
116905
|
-
return comp;
|
|
116906
|
-
}
|
|
116907
|
-
function isX(id) {
|
|
116908
|
-
return !id || id.toLowerCase() === "x" || id === "*";
|
|
116909
|
-
}
|
|
116910
|
-
function replaceTildes(comp, options) {
|
|
116911
|
-
return comp.trim().split(/\s+/).map(function(comp2) {
|
|
116912
|
-
return replaceTilde(comp2, options);
|
|
116913
|
-
}).join(" ");
|
|
116914
|
-
}
|
|
116915
|
-
function replaceTilde(comp, options) {
|
|
116916
|
-
var r = options.loose ? re[TILDELOOSE] : re[TILDE];
|
|
116917
|
-
return comp.replace(r, function(_, M, m, p, pr) {
|
|
116918
|
-
debug("tilde", comp, _, M, m, p, pr);
|
|
116919
|
-
var ret;
|
|
116920
|
-
if (isX(M)) {
|
|
116921
|
-
ret = "";
|
|
116922
|
-
} else if (isX(m)) {
|
|
116923
|
-
ret = ">=" + M + ".0.0 <" + (+M + 1) + ".0.0";
|
|
116924
|
-
} else if (isX(p)) {
|
|
116925
|
-
ret = ">=" + M + "." + m + ".0 <" + M + "." + (+m + 1) + ".0";
|
|
116926
|
-
} else if (pr) {
|
|
116927
|
-
debug("replaceTilde pr", pr);
|
|
116928
|
-
ret = ">=" + M + "." + m + "." + p + "-" + pr + " <" + M + "." + (+m + 1) + ".0";
|
|
116929
|
-
} else {
|
|
116930
|
-
ret = ">=" + M + "." + m + "." + p + " <" + M + "." + (+m + 1) + ".0";
|
|
116931
|
-
}
|
|
116932
|
-
debug("tilde return", ret);
|
|
116933
|
-
return ret;
|
|
116934
|
-
});
|
|
116935
|
-
}
|
|
116936
|
-
function replaceCarets(comp, options) {
|
|
116937
|
-
return comp.trim().split(/\s+/).map(function(comp2) {
|
|
116938
|
-
return replaceCaret(comp2, options);
|
|
116939
|
-
}).join(" ");
|
|
116940
|
-
}
|
|
116941
|
-
function replaceCaret(comp, options) {
|
|
116942
|
-
debug("caret", comp, options);
|
|
116943
|
-
var r = options.loose ? re[CARETLOOSE] : re[CARET];
|
|
116944
|
-
return comp.replace(r, function(_, M, m, p, pr) {
|
|
116945
|
-
debug("caret", comp, _, M, m, p, pr);
|
|
116946
|
-
var ret;
|
|
116947
|
-
if (isX(M)) {
|
|
116948
|
-
ret = "";
|
|
116949
|
-
} else if (isX(m)) {
|
|
116950
|
-
ret = ">=" + M + ".0.0 <" + (+M + 1) + ".0.0";
|
|
116951
|
-
} else if (isX(p)) {
|
|
116952
|
-
if (M === "0") {
|
|
116953
|
-
ret = ">=" + M + "." + m + ".0 <" + M + "." + (+m + 1) + ".0";
|
|
116954
|
-
} else {
|
|
116955
|
-
ret = ">=" + M + "." + m + ".0 <" + (+M + 1) + ".0.0";
|
|
116956
|
-
}
|
|
116957
|
-
} else if (pr) {
|
|
116958
|
-
debug("replaceCaret pr", pr);
|
|
116959
|
-
if (M === "0") {
|
|
116960
|
-
if (m === "0") {
|
|
116961
|
-
ret = ">=" + M + "." + m + "." + p + "-" + pr + " <" + M + "." + m + "." + (+p + 1);
|
|
116962
|
-
} else {
|
|
116963
|
-
ret = ">=" + M + "." + m + "." + p + "-" + pr + " <" + M + "." + (+m + 1) + ".0";
|
|
116964
|
-
}
|
|
116965
|
-
} else {
|
|
116966
|
-
ret = ">=" + M + "." + m + "." + p + "-" + pr + " <" + (+M + 1) + ".0.0";
|
|
116967
|
-
}
|
|
116968
|
-
} else {
|
|
116969
|
-
debug("no pr");
|
|
116970
|
-
if (M === "0") {
|
|
116971
|
-
if (m === "0") {
|
|
116972
|
-
ret = ">=" + M + "." + m + "." + p + " <" + M + "." + m + "." + (+p + 1);
|
|
116973
|
-
} else {
|
|
116974
|
-
ret = ">=" + M + "." + m + "." + p + " <" + M + "." + (+m + 1) + ".0";
|
|
116975
|
-
}
|
|
116976
|
-
} else {
|
|
116977
|
-
ret = ">=" + M + "." + m + "." + p + " <" + (+M + 1) + ".0.0";
|
|
116978
|
-
}
|
|
116979
|
-
}
|
|
116980
|
-
debug("caret return", ret);
|
|
116981
|
-
return ret;
|
|
116982
|
-
});
|
|
116983
|
-
}
|
|
116984
|
-
function replaceXRanges(comp, options) {
|
|
116985
|
-
debug("replaceXRanges", comp, options);
|
|
116986
|
-
return comp.split(/\s+/).map(function(comp2) {
|
|
116987
|
-
return replaceXRange(comp2, options);
|
|
116988
|
-
}).join(" ");
|
|
116989
|
-
}
|
|
116990
|
-
function replaceXRange(comp, options) {
|
|
116991
|
-
comp = comp.trim();
|
|
116992
|
-
var r = options.loose ? re[XRANGELOOSE] : re[XRANGE];
|
|
116993
|
-
return comp.replace(r, function(ret, gtlt, M, m, p, pr) {
|
|
116994
|
-
debug("xRange", comp, ret, gtlt, M, m, p, pr);
|
|
116995
|
-
var xM = isX(M);
|
|
116996
|
-
var xm = xM || isX(m);
|
|
116997
|
-
var xp = xm || isX(p);
|
|
116998
|
-
var anyX = xp;
|
|
116999
|
-
if (gtlt === "=" && anyX) {
|
|
117000
|
-
gtlt = "";
|
|
117001
|
-
}
|
|
117002
|
-
if (xM) {
|
|
117003
|
-
if (gtlt === ">" || gtlt === "<") {
|
|
117004
|
-
ret = "<0.0.0";
|
|
117005
|
-
} else {
|
|
117006
|
-
ret = "*";
|
|
117007
|
-
}
|
|
117008
|
-
} else if (gtlt && anyX) {
|
|
117009
|
-
if (xm) {
|
|
117010
|
-
m = 0;
|
|
117011
|
-
}
|
|
117012
|
-
p = 0;
|
|
117013
|
-
if (gtlt === ">") {
|
|
117014
|
-
gtlt = ">=";
|
|
117015
|
-
if (xm) {
|
|
117016
|
-
M = +M + 1;
|
|
117017
|
-
m = 0;
|
|
117018
|
-
p = 0;
|
|
117019
|
-
} else {
|
|
117020
|
-
m = +m + 1;
|
|
117021
|
-
p = 0;
|
|
117022
|
-
}
|
|
117023
|
-
} else if (gtlt === "<=") {
|
|
117024
|
-
gtlt = "<";
|
|
117025
|
-
if (xm) {
|
|
117026
|
-
M = +M + 1;
|
|
117027
|
-
} else {
|
|
117028
|
-
m = +m + 1;
|
|
117029
|
-
}
|
|
117030
|
-
}
|
|
117031
|
-
ret = gtlt + M + "." + m + "." + p;
|
|
117032
|
-
} else if (xm) {
|
|
117033
|
-
ret = ">=" + M + ".0.0 <" + (+M + 1) + ".0.0";
|
|
117034
|
-
} else if (xp) {
|
|
117035
|
-
ret = ">=" + M + "." + m + ".0 <" + M + "." + (+m + 1) + ".0";
|
|
117036
|
-
}
|
|
117037
|
-
debug("xRange return", ret);
|
|
117038
|
-
return ret;
|
|
117039
|
-
});
|
|
117040
|
-
}
|
|
117041
|
-
function replaceStars(comp, options) {
|
|
117042
|
-
debug("replaceStars", comp, options);
|
|
117043
|
-
return comp.trim().replace(re[STAR], "");
|
|
117044
|
-
}
|
|
117045
|
-
function hyphenReplace($0, from, fM, fm, fp, fpr, fb, to, tM, tm, tp, tpr, tb) {
|
|
117046
|
-
if (isX(fM)) {
|
|
117047
|
-
from = "";
|
|
117048
|
-
} else if (isX(fm)) {
|
|
117049
|
-
from = ">=" + fM + ".0.0";
|
|
117050
|
-
} else if (isX(fp)) {
|
|
117051
|
-
from = ">=" + fM + "." + fm + ".0";
|
|
117052
|
-
} else {
|
|
117053
|
-
from = ">=" + from;
|
|
117054
|
-
}
|
|
117055
|
-
if (isX(tM)) {
|
|
117056
|
-
to = "";
|
|
117057
|
-
} else if (isX(tm)) {
|
|
117058
|
-
to = "<" + (+tM + 1) + ".0.0";
|
|
117059
|
-
} else if (isX(tp)) {
|
|
117060
|
-
to = "<" + tM + "." + (+tm + 1) + ".0";
|
|
117061
|
-
} else if (tpr) {
|
|
117062
|
-
to = "<=" + tM + "." + tm + "." + tp + "-" + tpr;
|
|
117063
|
-
} else {
|
|
117064
|
-
to = "<=" + to;
|
|
117065
|
-
}
|
|
117066
|
-
return (from + " " + to).trim();
|
|
117067
|
-
}
|
|
117068
|
-
Range.prototype.test = function(version) {
|
|
117069
|
-
if (!version) {
|
|
117070
|
-
return false;
|
|
117071
|
-
}
|
|
117072
|
-
if (typeof version === "string") {
|
|
117073
|
-
version = new SemVer(version, this.options);
|
|
117074
|
-
}
|
|
117075
|
-
for (var i2 = 0; i2 < this.set.length; i2++) {
|
|
117076
|
-
if (testSet(this.set[i2], version, this.options)) {
|
|
117077
|
-
return true;
|
|
117078
|
-
}
|
|
117079
|
-
}
|
|
117080
|
-
return false;
|
|
117081
|
-
};
|
|
117082
|
-
function testSet(set, version, options) {
|
|
117083
|
-
for (var i2 = 0; i2 < set.length; i2++) {
|
|
117084
|
-
if (!set[i2].test(version)) {
|
|
117085
|
-
return false;
|
|
117086
|
-
}
|
|
117087
|
-
}
|
|
117088
|
-
if (version.prerelease.length && !options.includePrerelease) {
|
|
117089
|
-
for (i2 = 0; i2 < set.length; i2++) {
|
|
117090
|
-
debug(set[i2].semver);
|
|
117091
|
-
if (set[i2].semver === ANY) {
|
|
117092
|
-
continue;
|
|
117093
|
-
}
|
|
117094
|
-
if (set[i2].semver.prerelease.length > 0) {
|
|
117095
|
-
var allowed = set[i2].semver;
|
|
117096
|
-
if (allowed.major === version.major && allowed.minor === version.minor && allowed.patch === version.patch) {
|
|
117097
|
-
return true;
|
|
117098
|
-
}
|
|
117099
|
-
}
|
|
117100
|
-
}
|
|
117101
|
-
return false;
|
|
117102
|
-
}
|
|
117103
|
-
return true;
|
|
117104
|
-
}
|
|
117105
|
-
exports2.satisfies = satisfies;
|
|
117106
|
-
function satisfies(version, range, options) {
|
|
117107
|
-
try {
|
|
117108
|
-
range = new Range(range, options);
|
|
117109
|
-
} catch (er) {
|
|
117110
|
-
return false;
|
|
117111
|
-
}
|
|
117112
|
-
return range.test(version);
|
|
117113
|
-
}
|
|
117114
|
-
exports2.maxSatisfying = maxSatisfying;
|
|
117115
|
-
function maxSatisfying(versions, range, options) {
|
|
117116
|
-
var max = null;
|
|
117117
|
-
var maxSV = null;
|
|
117118
|
-
try {
|
|
117119
|
-
var rangeObj = new Range(range, options);
|
|
117120
|
-
} catch (er) {
|
|
117121
|
-
return null;
|
|
117122
|
-
}
|
|
117123
|
-
versions.forEach(function(v) {
|
|
117124
|
-
if (rangeObj.test(v)) {
|
|
117125
|
-
if (!max || maxSV.compare(v) === -1) {
|
|
117126
|
-
max = v;
|
|
117127
|
-
maxSV = new SemVer(max, options);
|
|
117128
|
-
}
|
|
117129
|
-
}
|
|
117130
|
-
});
|
|
117131
|
-
return max;
|
|
117132
|
-
}
|
|
117133
|
-
exports2.minSatisfying = minSatisfying;
|
|
117134
|
-
function minSatisfying(versions, range, options) {
|
|
117135
|
-
var min = null;
|
|
117136
|
-
var minSV = null;
|
|
117137
|
-
try {
|
|
117138
|
-
var rangeObj = new Range(range, options);
|
|
117139
|
-
} catch (er) {
|
|
117140
|
-
return null;
|
|
117141
|
-
}
|
|
117142
|
-
versions.forEach(function(v) {
|
|
117143
|
-
if (rangeObj.test(v)) {
|
|
117144
|
-
if (!min || minSV.compare(v) === 1) {
|
|
117145
|
-
min = v;
|
|
117146
|
-
minSV = new SemVer(min, options);
|
|
117147
|
-
}
|
|
117148
|
-
}
|
|
117149
|
-
});
|
|
117150
|
-
return min;
|
|
117151
|
-
}
|
|
117152
|
-
exports2.minVersion = minVersion;
|
|
117153
|
-
function minVersion(range, loose) {
|
|
117154
|
-
range = new Range(range, loose);
|
|
117155
|
-
var minver = new SemVer("0.0.0");
|
|
117156
|
-
if (range.test(minver)) {
|
|
117157
|
-
return minver;
|
|
117158
|
-
}
|
|
117159
|
-
minver = new SemVer("0.0.0-0");
|
|
117160
|
-
if (range.test(minver)) {
|
|
117161
|
-
return minver;
|
|
117162
|
-
}
|
|
117163
|
-
minver = null;
|
|
117164
|
-
for (var i2 = 0; i2 < range.set.length; ++i2) {
|
|
117165
|
-
var comparators = range.set[i2];
|
|
117166
|
-
comparators.forEach(function(comparator) {
|
|
117167
|
-
var compver = new SemVer(comparator.semver.version);
|
|
117168
|
-
switch (comparator.operator) {
|
|
117169
|
-
case ">":
|
|
117170
|
-
if (compver.prerelease.length === 0) {
|
|
117171
|
-
compver.patch++;
|
|
117172
|
-
} else {
|
|
117173
|
-
compver.prerelease.push(0);
|
|
117174
|
-
}
|
|
117175
|
-
compver.raw = compver.format();
|
|
117176
|
-
case "":
|
|
117177
|
-
case ">=":
|
|
117178
|
-
if (!minver || gt(minver, compver)) {
|
|
117179
|
-
minver = compver;
|
|
117180
|
-
}
|
|
117181
|
-
break;
|
|
117182
|
-
case "<":
|
|
117183
|
-
case "<=":
|
|
117184
|
-
break;
|
|
117185
|
-
default:
|
|
117186
|
-
throw new Error("Unexpected operation: " + comparator.operator);
|
|
117187
|
-
}
|
|
117188
|
-
});
|
|
117189
|
-
}
|
|
117190
|
-
if (minver && range.test(minver)) {
|
|
117191
|
-
return minver;
|
|
117192
|
-
}
|
|
117193
|
-
return null;
|
|
117194
|
-
}
|
|
117195
|
-
exports2.validRange = validRange;
|
|
117196
|
-
function validRange(range, options) {
|
|
117197
|
-
try {
|
|
117198
|
-
return new Range(range, options).range || "*";
|
|
117199
|
-
} catch (er) {
|
|
117200
|
-
return null;
|
|
117201
|
-
}
|
|
117202
|
-
}
|
|
117203
|
-
exports2.ltr = ltr;
|
|
117204
|
-
function ltr(version, range, options) {
|
|
117205
|
-
return outside(version, range, "<", options);
|
|
117206
|
-
}
|
|
117207
|
-
exports2.gtr = gtr;
|
|
117208
|
-
function gtr(version, range, options) {
|
|
117209
|
-
return outside(version, range, ">", options);
|
|
117210
|
-
}
|
|
117211
|
-
exports2.outside = outside;
|
|
117212
|
-
function outside(version, range, hilo, options) {
|
|
117213
|
-
version = new SemVer(version, options);
|
|
117214
|
-
range = new Range(range, options);
|
|
117215
|
-
var gtfn, ltefn, ltfn, comp, ecomp;
|
|
117216
|
-
switch (hilo) {
|
|
117217
|
-
case ">":
|
|
117218
|
-
gtfn = gt;
|
|
117219
|
-
ltefn = lte;
|
|
117220
|
-
ltfn = lt;
|
|
117221
|
-
comp = ">";
|
|
117222
|
-
ecomp = ">=";
|
|
117223
|
-
break;
|
|
117224
|
-
case "<":
|
|
117225
|
-
gtfn = lt;
|
|
117226
|
-
ltefn = gte;
|
|
117227
|
-
ltfn = gt;
|
|
117228
|
-
comp = "<";
|
|
117229
|
-
ecomp = "<=";
|
|
117230
|
-
break;
|
|
117231
|
-
default:
|
|
117232
|
-
throw new TypeError('Must provide a hilo val of "<" or ">"');
|
|
117233
|
-
}
|
|
117234
|
-
if (satisfies(version, range, options)) {
|
|
117235
|
-
return false;
|
|
117236
|
-
}
|
|
117237
|
-
for (var i2 = 0; i2 < range.set.length; ++i2) {
|
|
117238
|
-
var comparators = range.set[i2];
|
|
117239
|
-
var high = null;
|
|
117240
|
-
var low = null;
|
|
117241
|
-
comparators.forEach(function(comparator) {
|
|
117242
|
-
if (comparator.semver === ANY) {
|
|
117243
|
-
comparator = new Comparator(">=0.0.0");
|
|
117244
|
-
}
|
|
117245
|
-
high = high || comparator;
|
|
117246
|
-
low = low || comparator;
|
|
117247
|
-
if (gtfn(comparator.semver, high.semver, options)) {
|
|
117248
|
-
high = comparator;
|
|
117249
|
-
} else if (ltfn(comparator.semver, low.semver, options)) {
|
|
117250
|
-
low = comparator;
|
|
117251
|
-
}
|
|
117252
|
-
});
|
|
117253
|
-
if (high.operator === comp || high.operator === ecomp) {
|
|
117254
|
-
return false;
|
|
117255
|
-
}
|
|
117256
|
-
if ((!low.operator || low.operator === comp) && ltefn(version, low.semver)) {
|
|
117257
|
-
return false;
|
|
117258
|
-
} else if (low.operator === ecomp && ltfn(version, low.semver)) {
|
|
117259
|
-
return false;
|
|
117260
|
-
}
|
|
117261
|
-
}
|
|
117262
|
-
return true;
|
|
117263
|
-
}
|
|
117264
|
-
exports2.prerelease = prerelease;
|
|
117265
|
-
function prerelease(version, options) {
|
|
117266
|
-
var parsed = parse(version, options);
|
|
117267
|
-
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
117268
|
-
}
|
|
117269
|
-
exports2.intersects = intersects;
|
|
117270
|
-
function intersects(r1, r2, options) {
|
|
117271
|
-
r1 = new Range(r1, options);
|
|
117272
|
-
r2 = new Range(r2, options);
|
|
117273
|
-
return r1.intersects(r2);
|
|
117274
|
-
}
|
|
117275
|
-
exports2.coerce = coerce;
|
|
117276
|
-
function coerce(version) {
|
|
117277
|
-
if (version instanceof SemVer) {
|
|
117278
|
-
return version;
|
|
117279
|
-
}
|
|
117280
|
-
if (typeof version !== "string") {
|
|
117281
|
-
return null;
|
|
117282
|
-
}
|
|
117283
|
-
var match = version.match(re[COERCE]);
|
|
117284
|
-
if (match == null) {
|
|
117285
|
-
return null;
|
|
117286
|
-
}
|
|
117287
|
-
return parse(match[1] + "." + (match[2] || "0") + "." + (match[3] || "0"));
|
|
117288
|
-
}
|
|
117289
|
-
}
|
|
117290
|
-
});
|
|
117291
|
-
|
|
117292
|
-
// ../../node_modules/.pnpm/semver-intersect@1.4.0/node_modules/semver-intersect/semver-intersect.js
|
|
117293
|
-
var require_semver_intersect = __commonJS({
|
|
117294
|
-
"../../node_modules/.pnpm/semver-intersect@1.4.0/node_modules/semver-intersect/semver-intersect.js"(exports2, module2) {
|
|
117295
|
-
"use strict";
|
|
117296
|
-
var _slicedToArray = function() {
|
|
117297
|
-
function sliceIterator(arr, i) {
|
|
117298
|
-
var _arr = [];
|
|
117299
|
-
var _n = true;
|
|
117300
|
-
var _d = false;
|
|
117301
|
-
var _e = void 0;
|
|
117302
|
-
try {
|
|
117303
|
-
for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
|
|
117304
|
-
_arr.push(_s.value);
|
|
117305
|
-
if (i && _arr.length === i)
|
|
117306
|
-
break;
|
|
117307
|
-
}
|
|
117308
|
-
} catch (err) {
|
|
117309
|
-
_d = true;
|
|
117310
|
-
_e = err;
|
|
117311
|
-
} finally {
|
|
117312
|
-
try {
|
|
117313
|
-
if (!_n && _i["return"])
|
|
117314
|
-
_i["return"]();
|
|
117315
|
-
} finally {
|
|
117316
|
-
if (_d)
|
|
117317
|
-
throw _e;
|
|
117318
|
-
}
|
|
117319
|
-
}
|
|
117320
|
-
return _arr;
|
|
117321
|
-
}
|
|
117322
|
-
return function(arr, i) {
|
|
117323
|
-
if (Array.isArray(arr)) {
|
|
117324
|
-
return arr;
|
|
117325
|
-
} else if (Symbol.iterator in Object(arr)) {
|
|
117326
|
-
return sliceIterator(arr, i);
|
|
117327
|
-
} else {
|
|
117328
|
-
throw new TypeError("Invalid attempt to destructure non-iterable instance");
|
|
117329
|
-
}
|
|
117330
|
-
};
|
|
117331
|
-
}();
|
|
117332
|
-
function _toConsumableArray(arr) {
|
|
117333
|
-
if (Array.isArray(arr)) {
|
|
117334
|
-
for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) {
|
|
117335
|
-
arr2[i] = arr[i];
|
|
117336
|
-
}
|
|
117337
|
-
return arr2;
|
|
117338
|
-
} else {
|
|
117339
|
-
return Array.from(arr);
|
|
117340
|
-
}
|
|
117341
|
-
}
|
|
117342
|
-
var semver = require_semver4();
|
|
117343
|
-
var regex = {
|
|
117344
|
-
condition: /^([<=>]+)?/,
|
|
117345
|
-
majorVersion: /\d+/,
|
|
117346
|
-
minMax: /^>=([\d]+\.[\d]+\.[\d]+(?:-[\w.]+)?) <=?([\d]+\.[\d]+\.[\d]+)$/,
|
|
117347
|
-
version: /([\d]+\.[\d]+\.[\d]+(?:-[\w.]+)?)$/,
|
|
117348
|
-
whitespace: /\s+/
|
|
117349
|
-
};
|
|
117350
|
-
function createShorthand(range) {
|
|
117351
|
-
var match = regex.minMax.exec(range);
|
|
117352
|
-
if (!match) {
|
|
117353
|
-
return range;
|
|
117354
|
-
}
|
|
117355
|
-
var _match$slice = match.slice(1), _match$slice2 = _slicedToArray(_match$slice, 2), min = _match$slice2[0], max = _match$slice2[1];
|
|
117356
|
-
if (min === max) {
|
|
117357
|
-
return min;
|
|
117358
|
-
}
|
|
117359
|
-
if (range.includes("<=")) {
|
|
117360
|
-
return `${min} - ${max}`;
|
|
117361
|
-
}
|
|
117362
|
-
if (semver.major(min) === 0 && semver.major(max) === 0) {
|
|
117363
|
-
if (semver.minor(min) === 0 && semver.minor(max) === 0) {
|
|
117364
|
-
return `^${min}`;
|
|
117365
|
-
}
|
|
117366
|
-
if (semver.minor(min) === 0) {
|
|
117367
|
-
return `~${min}`;
|
|
117368
|
-
}
|
|
117369
|
-
return `^${min}`;
|
|
117370
|
-
}
|
|
117371
|
-
if (semver.major(min) !== semver.major(max)) {
|
|
117372
|
-
if (semver.major(min) === 0) {
|
|
117373
|
-
return "0";
|
|
117374
|
-
}
|
|
117375
|
-
return `^${min}`;
|
|
117376
|
-
}
|
|
117377
|
-
return `~${min}`;
|
|
117378
|
-
}
|
|
117379
|
-
function ensureCompatible(range) {
|
|
117380
|
-
var _parseRange = parseRange(range), prerelease = _parseRange.prerelease, version = _parseRange.version;
|
|
117381
|
-
for (var _len = arguments.length, bounds = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
117382
|
-
bounds[_key - 1] = arguments[_key];
|
|
117383
|
-
}
|
|
117384
|
-
bounds.forEach(function(bound) {
|
|
117385
|
-
if (!bound) {
|
|
117386
|
-
return;
|
|
117387
|
-
}
|
|
117388
|
-
if (semver.satisfies(version, bound) && semver.intersects(range, bound)) {
|
|
117389
|
-
return;
|
|
117390
|
-
}
|
|
117391
|
-
if (prerelease) {
|
|
117392
|
-
if (parseRange(bound).prerelease) {
|
|
117393
|
-
if (semver.satisfies(parseRange(bound).version, range)) {
|
|
117394
|
-
return;
|
|
117395
|
-
}
|
|
117396
|
-
} else if (semver.satisfies(version, `${range} ${bound}`)) {
|
|
117397
|
-
return;
|
|
117398
|
-
}
|
|
117399
|
-
}
|
|
117400
|
-
throw new Error(`Range ${range} is not compatible with ${bound}`);
|
|
117401
|
-
});
|
|
117402
|
-
}
|
|
117403
|
-
function expandRanges() {
|
|
117404
|
-
for (var _len2 = arguments.length, ranges = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
|
117405
|
-
ranges[_key2] = arguments[_key2];
|
|
117406
|
-
}
|
|
117407
|
-
return ranges.reduce(function(result2, range) {
|
|
117408
|
-
var validRange = semver.validRange(range);
|
|
117409
|
-
var validRanges = validRange.split(regex.whitespace);
|
|
117410
|
-
return union(result2, validRanges);
|
|
117411
|
-
}, []);
|
|
117412
|
-
}
|
|
117413
|
-
function formatIntersection(_ref) {
|
|
117414
|
-
var _ref$lowerBound = _ref.lowerBound, lowerBound = _ref$lowerBound === void 0 ? "" : _ref$lowerBound, _ref$upperBound = _ref.upperBound, upperBound = _ref$upperBound === void 0 ? "" : _ref$upperBound;
|
|
117415
|
-
if (lowerBound === upperBound) {
|
|
117416
|
-
return lowerBound;
|
|
117417
|
-
}
|
|
117418
|
-
return `${lowerBound} ${upperBound}`.trim();
|
|
117419
|
-
}
|
|
117420
|
-
function intersect() {
|
|
117421
|
-
for (var _len3 = arguments.length, ranges = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
|
|
117422
|
-
ranges[_key3] = arguments[_key3];
|
|
117423
|
-
}
|
|
117424
|
-
ranges = expandRanges.apply(void 0, _toConsumableArray(ranges));
|
|
117425
|
-
var bounds = ranges.reduce(function(_ref2, range2) {
|
|
117426
|
-
var lowerBound = _ref2.lowerBound, upperBound = _ref2.upperBound;
|
|
117427
|
-
var _parseRange2 = parseRange(range2), condition = _parseRange2.condition, prerelease = _parseRange2.prerelease;
|
|
117428
|
-
if (prerelease) {
|
|
117429
|
-
ensureCompatible(range2, lowerBound, upperBound);
|
|
117430
|
-
}
|
|
117431
|
-
if (condition === "=") {
|
|
117432
|
-
ensureCompatible(range2, lowerBound, upperBound);
|
|
117433
|
-
lowerBound = ">=" + range2;
|
|
117434
|
-
upperBound = "<=" + range2;
|
|
117435
|
-
}
|
|
117436
|
-
if (condition.startsWith(">")) {
|
|
117437
|
-
ensureCompatible(range2, upperBound);
|
|
117438
|
-
lowerBound = mergeBounds(range2, lowerBound);
|
|
117439
|
-
}
|
|
117440
|
-
if (condition.startsWith("<")) {
|
|
117441
|
-
ensureCompatible(range2, lowerBound);
|
|
117442
|
-
upperBound = mergeBounds(range2, upperBound);
|
|
117443
|
-
}
|
|
117444
|
-
return { lowerBound, upperBound };
|
|
117445
|
-
}, {});
|
|
117446
|
-
var range = formatIntersection(bounds);
|
|
117447
|
-
var shorthand = createShorthand(range);
|
|
117448
|
-
return shorthand;
|
|
117449
|
-
}
|
|
117450
|
-
function mergeBounds(range, bound) {
|
|
117451
|
-
if (!bound) {
|
|
117452
|
-
return range;
|
|
117453
|
-
}
|
|
117454
|
-
var _parseRange3 = parseRange(range), condition = _parseRange3.condition, version = _parseRange3.version;
|
|
117455
|
-
var boundingVersion = parseRange(bound).version;
|
|
117456
|
-
var comparator = condition.startsWith("<") ? semver.lt : semver.gt;
|
|
117457
|
-
var strict = condition === "<" || condition === ">";
|
|
117458
|
-
if (comparator(version, boundingVersion)) {
|
|
117459
|
-
return range;
|
|
117460
|
-
} else if (strict && semver.eq(version, boundingVersion)) {
|
|
117461
|
-
return range;
|
|
117462
|
-
} else {
|
|
117463
|
-
return bound;
|
|
117464
|
-
}
|
|
117465
|
-
}
|
|
117466
|
-
function parseRange(range) {
|
|
117467
|
-
var condition = regex.condition.exec(range)[1] || "=";
|
|
117468
|
-
var version = regex.version.exec(range)[1];
|
|
117469
|
-
var prerelease = semver.prerelease(version);
|
|
117470
|
-
return { condition, prerelease, version };
|
|
117471
|
-
}
|
|
117472
|
-
function union(a, b) {
|
|
117473
|
-
return b.reduce(function(result2, value) {
|
|
117474
|
-
if (result2.indexOf(value) === -1) {
|
|
117475
|
-
result2.push(value);
|
|
117476
|
-
}
|
|
117477
|
-
return result2;
|
|
117478
|
-
}, a);
|
|
117479
|
-
}
|
|
117480
|
-
module2.exports.default = intersect;
|
|
117481
|
-
module2.exports.createShorthand = createShorthand;
|
|
117482
|
-
module2.exports.ensureCompatible = ensureCompatible;
|
|
117483
|
-
module2.exports.expandRanges = expandRanges;
|
|
117484
|
-
module2.exports.formatIntersection = formatIntersection;
|
|
117485
|
-
module2.exports.intersect = intersect;
|
|
117486
|
-
module2.exports.mergeBounds = mergeBounds;
|
|
117487
|
-
module2.exports.parseRange = parseRange;
|
|
117488
|
-
module2.exports.union = union;
|
|
117489
|
-
}
|
|
117490
|
-
});
|
|
117491
|
-
|
|
117492
|
-
// ../core/lib/listPeerDependencyIssues.js
|
|
117493
|
-
var require_listPeerDependencyIssues = __commonJS({
|
|
117494
|
-
"../core/lib/listPeerDependencyIssues.js"(exports2) {
|
|
116938
|
+
// ../core/lib/getPeerDependencyIssues.js
|
|
116939
|
+
var require_getPeerDependencyIssues = __commonJS({
|
|
116940
|
+
"../core/lib/getPeerDependencyIssues.js"(exports2) {
|
|
117495
116941
|
"use strict";
|
|
117496
116942
|
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
117497
116943
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
117498
116944
|
};
|
|
117499
116945
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
117500
|
-
exports2.
|
|
116946
|
+
exports2.getPeerDependencyIssues = void 0;
|
|
117501
116947
|
var resolve_dependencies_1 = __importDefault(require_lib91());
|
|
117502
116948
|
var getWantedDependencies_1 = __importDefault(require_getWantedDependencies());
|
|
117503
116949
|
var get_context_1 = __importDefault(require_lib66());
|
|
117504
116950
|
var install_1 = require_install();
|
|
117505
116951
|
var getPreferredVersions_1 = require_getPreferredVersions();
|
|
117506
116952
|
var normalize_registries_1 = require_lib64();
|
|
117507
|
-
|
|
117508
|
-
async function listPeerDependencyIssues(projects, opts) {
|
|
116953
|
+
async function getPeerDependencyIssues(projects, opts) {
|
|
117509
116954
|
var _a, _b, _c, _d, _e;
|
|
117510
116955
|
const lockfileDir = (_a = opts.lockfileDir) !== null && _a !== void 0 ? _a : process.cwd();
|
|
117511
116956
|
const ctx = await (0, get_context_1.default)(projects, {
|
|
@@ -117523,7 +116968,7 @@ var require_listPeerDependencyIssues = __commonJS({
|
|
|
117523
116968
|
wantedDependencies: (0, getWantedDependencies_1.default)(project.manifest)
|
|
117524
116969
|
}));
|
|
117525
116970
|
const preferredVersions = ctx.wantedLockfile.packages ? (0, getPreferredVersions_1.getPreferredVersionsFromLockfile)(ctx.wantedLockfile.packages) : void 0;
|
|
117526
|
-
const {
|
|
116971
|
+
const { peerDependencyIssuesByProjects, waitTillAllFetchingsFinish } = await (0, resolve_dependencies_1.default)(projectsToResolve, {
|
|
117527
116972
|
currentLockfile: ctx.currentLockfile,
|
|
117528
116973
|
defaultUpdateDepth: -1,
|
|
117529
116974
|
dryRun: true,
|
|
@@ -117553,34 +116998,10 @@ var require_listPeerDependencyIssues = __commonJS({
|
|
|
117553
116998
|
wantedLockfile: ctx.wantedLockfile,
|
|
117554
116999
|
workspacePackages: (_e = opts.workspacePackages) !== null && _e !== void 0 ? _e : {}
|
|
117555
117000
|
});
|
|
117556
|
-
const conflicts = getPeerDependencyConflicts(peerDependencyIssues);
|
|
117557
117001
|
await waitTillAllFetchingsFinish();
|
|
117558
|
-
return
|
|
117559
|
-
issues: peerDependencyIssues,
|
|
117560
|
-
conflicts
|
|
117561
|
-
};
|
|
117562
|
-
}
|
|
117563
|
-
exports2.listPeerDependencyIssues = listPeerDependencyIssues;
|
|
117564
|
-
function getPeerDependencyConflicts(peerDependencyIssues) {
|
|
117565
|
-
const missingPeers = new Map();
|
|
117566
|
-
for (const [peerName, issues] of Object.entries(peerDependencyIssues.missing)) {
|
|
117567
|
-
missingPeers.set(peerName, issues.map(({ wantedRange }) => wantedRange));
|
|
117568
|
-
}
|
|
117569
|
-
const conflicts = [];
|
|
117570
|
-
for (const [peerName, ranges] of missingPeers) {
|
|
117571
|
-
if (!intersectSafe(ranges)) {
|
|
117572
|
-
conflicts.push(peerName);
|
|
117573
|
-
}
|
|
117574
|
-
}
|
|
117575
|
-
return conflicts;
|
|
117576
|
-
}
|
|
117577
|
-
function intersectSafe(ranges) {
|
|
117578
|
-
try {
|
|
117579
|
-
return (0, semver_intersect_1.intersect)(...ranges);
|
|
117580
|
-
} catch {
|
|
117581
|
-
return false;
|
|
117582
|
-
}
|
|
117002
|
+
return peerDependencyIssuesByProjects;
|
|
117583
117003
|
}
|
|
117004
|
+
exports2.getPeerDependencyIssues = getPeerDependencyIssues;
|
|
117584
117005
|
}
|
|
117585
117006
|
});
|
|
117586
117007
|
|
|
@@ -117617,7 +117038,7 @@ var require_api = __commonJS({
|
|
|
117617
117038
|
return reportPeerDependencyIssues_1.PeerDependencyIssuesError;
|
|
117618
117039
|
} });
|
|
117619
117040
|
__exportStar(require_link(), exports2);
|
|
117620
|
-
__exportStar(
|
|
117041
|
+
__exportStar(require_getPeerDependencyIssues(), exports2);
|
|
117621
117042
|
}
|
|
117622
117043
|
});
|
|
117623
117044
|
|
|
@@ -118786,7 +118207,7 @@ var require_recursive2 = __commonJS({
|
|
|
118786
118207
|
rootDir: opts.workspaceDir
|
|
118787
118208
|
});
|
|
118788
118209
|
}
|
|
118789
|
-
if (mutatedImporters.length === 0 && cmdFullName === "update") {
|
|
118210
|
+
if (mutatedImporters.length === 0 && cmdFullName === "update" && opts.depth === 0) {
|
|
118790
118211
|
throw new error_1.default("NO_PACKAGE_IN_DEPENDENCIES", "None of the specified packages were found in the dependencies of any of the projects.");
|
|
118791
118212
|
}
|
|
118792
118213
|
const mutatedPkgs = await (0, core_1.mutateModules)(mutatedImporters, {
|
|
@@ -118896,7 +118317,7 @@ var require_recursive2 = __commonJS({
|
|
|
118896
118317
|
}, []);
|
|
118897
118318
|
}
|
|
118898
118319
|
throwOnFail(result2);
|
|
118899
|
-
if (!result2.passes && cmdFullName === "update") {
|
|
118320
|
+
if (!result2.passes && cmdFullName === "update" && opts.depth === 0) {
|
|
118900
118321
|
throw new error_1.default("NO_PACKAGE_IN_DEPENDENCIES", "None of the specified packages were found in the dependencies of any of the projects.");
|
|
118901
118322
|
}
|
|
118902
118323
|
return true;
|
|
@@ -119134,7 +118555,7 @@ var require_installDeps = __commonJS({
|
|
|
119134
118555
|
const updateMatch = opts.update && params.length > 0 ? (0, recursive_1.createMatcher)(params) : null;
|
|
119135
118556
|
if (updateMatch != null) {
|
|
119136
118557
|
params = (0, recursive_1.matchDependencies)(updateMatch, manifest, includeDirect);
|
|
119137
|
-
if (params.length === 0) {
|
|
118558
|
+
if (params.length === 0 && opts.depth === 0) {
|
|
119138
118559
|
throw new error_1.default("NO_PACKAGE_IN_DEPENDENCIES", "None of the specified packages were found in the dependencies.");
|
|
119139
118560
|
}
|
|
119140
118561
|
}
|
|
@@ -128622,9 +128043,9 @@ ${indent}`);
|
|
|
128622
128043
|
}
|
|
128623
128044
|
});
|
|
128624
128045
|
|
|
128625
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128046
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/constants.js
|
|
128626
128047
|
var require_constants11 = __commonJS({
|
|
128627
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128048
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/constants.js"(exports2) {
|
|
128628
128049
|
"use strict";
|
|
128629
128050
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
128630
128051
|
exports2.SAFE_TIME = exports2.S_IFLNK = exports2.S_IFREG = exports2.S_IFDIR = exports2.S_IFMT = void 0;
|
|
@@ -128636,9 +128057,9 @@ var require_constants11 = __commonJS({
|
|
|
128636
128057
|
}
|
|
128637
128058
|
});
|
|
128638
128059
|
|
|
128639
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128060
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/statUtils.js
|
|
128640
128061
|
var require_statUtils2 = __commonJS({
|
|
128641
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128062
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/statUtils.js"(exports2) {
|
|
128642
128063
|
"use strict";
|
|
128643
128064
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
128644
128065
|
exports2.areStatsEqual = exports2.convertToBigIntStats = exports2.clearStats = exports2.makeEmptyStats = exports2.makeDefaultStats = exports2.BigIntStatsEntry = exports2.StatEntry = exports2.DirEntry = exports2.DEFAULT_MODE = void 0;
|
|
@@ -128868,9 +128289,9 @@ var require_statUtils2 = __commonJS({
|
|
|
128868
128289
|
}
|
|
128869
128290
|
});
|
|
128870
128291
|
|
|
128871
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128292
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/path.js
|
|
128872
128293
|
var require_path5 = __commonJS({
|
|
128873
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128294
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/path.js"(exports2) {
|
|
128874
128295
|
"use strict";
|
|
128875
128296
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
128876
128297
|
exports2.toFilename = exports2.convertPath = exports2.ppath = exports2.npath = exports2.Filename = exports2.PortablePath = void 0;
|
|
@@ -128962,9 +128383,9 @@ var require_path5 = __commonJS({
|
|
|
128962
128383
|
}
|
|
128963
128384
|
});
|
|
128964
128385
|
|
|
128965
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128386
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/algorithms/copyPromise.js
|
|
128966
128387
|
var require_copyPromise2 = __commonJS({
|
|
128967
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128388
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/algorithms/copyPromise.js"(exports2) {
|
|
128968
128389
|
"use strict";
|
|
128969
128390
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
128970
128391
|
exports2.copyPromise = exports2.LinkStrategy = void 0;
|
|
@@ -129144,9 +128565,9 @@ var require_copyPromise2 = __commonJS({
|
|
|
129144
128565
|
}
|
|
129145
128566
|
});
|
|
129146
128567
|
|
|
129147
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128568
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/errors.js
|
|
129148
128569
|
var require_errors6 = __commonJS({
|
|
129149
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128570
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/errors.js"(exports2) {
|
|
129150
128571
|
"use strict";
|
|
129151
128572
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
129152
128573
|
exports2.LibzipError = exports2.ERR_DIR_CLOSED = exports2.EOPNOTSUPP = exports2.ENOTEMPTY = exports2.EROFS = exports2.EEXIST = exports2.EISDIR = exports2.ENOTDIR = exports2.ENOENT = exports2.EBADF = exports2.EINVAL = exports2.ENOSYS = exports2.EBUSY = void 0;
|
|
@@ -129212,9 +128633,9 @@ var require_errors6 = __commonJS({
|
|
|
129212
128633
|
}
|
|
129213
128634
|
});
|
|
129214
128635
|
|
|
129215
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128636
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/algorithms/opendir.js
|
|
129216
128637
|
var require_opendir2 = __commonJS({
|
|
129217
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128638
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/algorithms/opendir.js"(exports2) {
|
|
129218
128639
|
"use strict";
|
|
129219
128640
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
129220
128641
|
exports2.opendir = exports2.CustomDir = void 0;
|
|
@@ -129281,9 +128702,9 @@ var require_opendir2 = __commonJS({
|
|
|
129281
128702
|
}
|
|
129282
128703
|
});
|
|
129283
128704
|
|
|
129284
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128705
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/FakeFS.js
|
|
129285
128706
|
var require_FakeFS2 = __commonJS({
|
|
129286
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
128707
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/FakeFS.js"(exports2) {
|
|
129287
128708
|
"use strict";
|
|
129288
128709
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
129289
128710
|
exports2.normalizeLineEndings = exports2.BasePortableFakeFS = exports2.FakeFS = void 0;
|
|
@@ -129667,9 +129088,9 @@ var require_FakeFS2 = __commonJS({
|
|
|
129667
129088
|
}
|
|
129668
129089
|
});
|
|
129669
129090
|
|
|
129670
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
129091
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/NodeFS.js
|
|
129671
129092
|
var require_NodeFS2 = __commonJS({
|
|
129672
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
129093
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/NodeFS.js"(exports2) {
|
|
129673
129094
|
"use strict";
|
|
129674
129095
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
129675
129096
|
exports2.NodeFS = void 0;
|
|
@@ -130040,9 +129461,9 @@ var require_NodeFS2 = __commonJS({
|
|
|
130040
129461
|
}
|
|
130041
129462
|
});
|
|
130042
129463
|
|
|
130043
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
129464
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/algorithms/watchFile/CustomStatWatcher.js
|
|
130044
129465
|
var require_CustomStatWatcher2 = __commonJS({
|
|
130045
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
129466
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/algorithms/watchFile/CustomStatWatcher.js"(exports2) {
|
|
130046
129467
|
"use strict";
|
|
130047
129468
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
130048
129469
|
exports2.CustomStatWatcher = exports2.assertStatus = exports2.Status = exports2.Event = void 0;
|
|
@@ -130154,9 +129575,9 @@ var require_CustomStatWatcher2 = __commonJS({
|
|
|
130154
129575
|
}
|
|
130155
129576
|
});
|
|
130156
129577
|
|
|
130157
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
129578
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/algorithms/watchFile.js
|
|
130158
129579
|
var require_watchFile2 = __commonJS({
|
|
130159
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
129580
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/algorithms/watchFile.js"(exports2) {
|
|
130160
129581
|
"use strict";
|
|
130161
129582
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
130162
129583
|
exports2.unwatchAllFiles = exports2.unwatchFile = exports2.watchFile = void 0;
|
|
@@ -130228,9 +129649,9 @@ var require_watchFile2 = __commonJS({
|
|
|
130228
129649
|
}
|
|
130229
129650
|
});
|
|
130230
129651
|
|
|
130231
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
129652
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/ZipFS.js
|
|
130232
129653
|
var require_ZipFS2 = __commonJS({
|
|
130233
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
129654
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/ZipFS.js"(exports2) {
|
|
130234
129655
|
"use strict";
|
|
130235
129656
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
130236
129657
|
exports2.ZipFS = exports2.makeEmptyArchive = exports2.DEFAULT_COMPRESSION_LEVEL = void 0;
|
|
@@ -131325,9 +130746,9 @@ var require_ZipFS2 = __commonJS({
|
|
|
131325
130746
|
}
|
|
131326
130747
|
});
|
|
131327
130748
|
|
|
131328
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
130749
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/ProxiedFS.js
|
|
131329
130750
|
var require_ProxiedFS2 = __commonJS({
|
|
131330
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
130751
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/ProxiedFS.js"(exports2) {
|
|
131331
130752
|
"use strict";
|
|
131332
130753
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
131333
130754
|
exports2.ProxiedFS = void 0;
|
|
@@ -131557,9 +130978,9 @@ var require_ProxiedFS2 = __commonJS({
|
|
|
131557
130978
|
}
|
|
131558
130979
|
});
|
|
131559
130980
|
|
|
131560
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
130981
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/AliasFS.js
|
|
131561
130982
|
var require_AliasFS2 = __commonJS({
|
|
131562
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
130983
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/AliasFS.js"(exports2) {
|
|
131563
130984
|
"use strict";
|
|
131564
130985
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
131565
130986
|
exports2.AliasFS = void 0;
|
|
@@ -131587,9 +131008,9 @@ var require_AliasFS2 = __commonJS({
|
|
|
131587
131008
|
}
|
|
131588
131009
|
});
|
|
131589
131010
|
|
|
131590
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131011
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/CwdFS.js
|
|
131591
131012
|
var require_CwdFS2 = __commonJS({
|
|
131592
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131013
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/CwdFS.js"(exports2) {
|
|
131593
131014
|
"use strict";
|
|
131594
131015
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
131595
131016
|
exports2.CwdFS = void 0;
|
|
@@ -131627,9 +131048,9 @@ var require_CwdFS2 = __commonJS({
|
|
|
131627
131048
|
}
|
|
131628
131049
|
});
|
|
131629
131050
|
|
|
131630
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131051
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/JailFS.js
|
|
131631
131052
|
var require_JailFS2 = __commonJS({
|
|
131632
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131053
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/JailFS.js"(exports2) {
|
|
131633
131054
|
"use strict";
|
|
131634
131055
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
131635
131056
|
exports2.JailFS = void 0;
|
|
@@ -131668,9 +131089,9 @@ var require_JailFS2 = __commonJS({
|
|
|
131668
131089
|
}
|
|
131669
131090
|
});
|
|
131670
131091
|
|
|
131671
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131092
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/LazyFS.js
|
|
131672
131093
|
var require_LazyFS2 = __commonJS({
|
|
131673
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131094
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/LazyFS.js"(exports2) {
|
|
131674
131095
|
"use strict";
|
|
131675
131096
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
131676
131097
|
exports2.LazyFS = void 0;
|
|
@@ -131700,9 +131121,9 @@ var require_LazyFS2 = __commonJS({
|
|
|
131700
131121
|
}
|
|
131701
131122
|
});
|
|
131702
131123
|
|
|
131703
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131124
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/NoFS.js
|
|
131704
131125
|
var require_NoFS2 = __commonJS({
|
|
131705
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131126
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/NoFS.js"(exports2) {
|
|
131706
131127
|
"use strict";
|
|
131707
131128
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
131708
131129
|
exports2.NoFS = void 0;
|
|
@@ -131905,9 +131326,9 @@ var require_NoFS2 = __commonJS({
|
|
|
131905
131326
|
}
|
|
131906
131327
|
});
|
|
131907
131328
|
|
|
131908
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131329
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/PosixFS.js
|
|
131909
131330
|
var require_PosixFS2 = __commonJS({
|
|
131910
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131331
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/PosixFS.js"(exports2) {
|
|
131911
131332
|
"use strict";
|
|
131912
131333
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
131913
131334
|
exports2.PosixFS = void 0;
|
|
@@ -131929,9 +131350,9 @@ var require_PosixFS2 = __commonJS({
|
|
|
131929
131350
|
}
|
|
131930
131351
|
});
|
|
131931
131352
|
|
|
131932
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131353
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/VirtualFS.js
|
|
131933
131354
|
var require_VirtualFS2 = __commonJS({
|
|
131934
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131355
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/VirtualFS.js"(exports2) {
|
|
131935
131356
|
"use strict";
|
|
131936
131357
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
131937
131358
|
exports2.VirtualFS = void 0;
|
|
@@ -132016,9 +131437,9 @@ var require_VirtualFS2 = __commonJS({
|
|
|
132016
131437
|
}
|
|
132017
131438
|
});
|
|
132018
131439
|
|
|
132019
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131440
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/ZipOpenFS.js
|
|
132020
131441
|
var require_ZipOpenFS2 = __commonJS({
|
|
132021
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
131442
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/ZipOpenFS.js"(exports2) {
|
|
132022
131443
|
"use strict";
|
|
132023
131444
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
132024
131445
|
exports2.ZipOpenFS = exports2.getArchivePart = void 0;
|
|
@@ -132833,9 +132254,9 @@ var require_ZipOpenFS2 = __commonJS({
|
|
|
132833
132254
|
}
|
|
132834
132255
|
});
|
|
132835
132256
|
|
|
132836
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
132257
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/URLFS.js
|
|
132837
132258
|
var require_URLFS2 = __commonJS({
|
|
132838
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
132259
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/URLFS.js"(exports2) {
|
|
132839
132260
|
"use strict";
|
|
132840
132261
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
132841
132262
|
exports2.URLFS = void 0;
|
|
@@ -132860,9 +132281,9 @@ var require_URLFS2 = __commonJS({
|
|
|
132860
132281
|
}
|
|
132861
132282
|
});
|
|
132862
132283
|
|
|
132863
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
132284
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/patchFs.js
|
|
132864
132285
|
var require_patchFs2 = __commonJS({
|
|
132865
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
132286
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/patchFs.js"(exports2) {
|
|
132866
132287
|
"use strict";
|
|
132867
132288
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
132868
132289
|
exports2.extendFs = exports2.patchFs = void 0;
|
|
@@ -133080,9 +132501,9 @@ var require_patchFs2 = __commonJS({
|
|
|
133080
132501
|
}
|
|
133081
132502
|
});
|
|
133082
132503
|
|
|
133083
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
132504
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/xfs.js
|
|
133084
132505
|
var require_xfs2 = __commonJS({
|
|
133085
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
132506
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/xfs.js"(exports2) {
|
|
133086
132507
|
"use strict";
|
|
133087
132508
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
133088
132509
|
exports2.xfs = void 0;
|
|
@@ -133195,9 +132616,9 @@ var require_xfs2 = __commonJS({
|
|
|
133195
132616
|
}
|
|
133196
132617
|
});
|
|
133197
132618
|
|
|
133198
|
-
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
132619
|
+
// ../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/index.js
|
|
133199
132620
|
var require_lib101 = __commonJS({
|
|
133200
|
-
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.
|
|
132621
|
+
"../../node_modules/.pnpm/@yarnpkg+fslib@2.6.1-rc.3/node_modules/@yarnpkg/fslib/lib/index.js"(exports2) {
|
|
133201
132622
|
"use strict";
|
|
133202
132623
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
133203
132624
|
exports2.xfs = exports2.extendFs = exports2.patchFs = exports2.ZipOpenFS = exports2.ZipFS = exports2.VirtualFS = exports2.ProxiedFS = exports2.PosixFS = exports2.NodeFS = exports2.NoFS = exports2.LazyFS = exports2.JailFS = exports2.CwdFS = exports2.FakeFS = exports2.AliasFS = exports2.toFilename = exports2.ppath = exports2.npath = exports2.Filename = exports2.PortablePath = exports2.DEFAULT_COMPRESSION_LEVEL = exports2.normalizeLineEndings = exports2.statUtils = exports2.opendir = exports2.LinkStrategy = exports2.constants = void 0;
|
|
@@ -133301,9 +132722,9 @@ var require_lib101 = __commonJS({
|
|
|
133301
132722
|
}
|
|
133302
132723
|
});
|
|
133303
132724
|
|
|
133304
|
-
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
132725
|
+
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/grammars/shell.js
|
|
133305
132726
|
var require_shell3 = __commonJS({
|
|
133306
|
-
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
132727
|
+
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/grammars/shell.js"(exports2, module2) {
|
|
133307
132728
|
"use strict";
|
|
133308
132729
|
function peg$subclass(child, parent) {
|
|
133309
132730
|
function ctor() {
|
|
@@ -136819,9 +136240,9 @@ var require_shell3 = __commonJS({
|
|
|
136819
136240
|
}
|
|
136820
136241
|
});
|
|
136821
136242
|
|
|
136822
|
-
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
136243
|
+
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/shell.js
|
|
136823
136244
|
var require_shell4 = __commonJS({
|
|
136824
|
-
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
136245
|
+
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/shell.js"(exports2) {
|
|
136825
136246
|
"use strict";
|
|
136826
136247
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
136827
136248
|
exports2.stringifyShell = exports2.stringifyArithmeticExpression = exports2.stringifyArgumentSegment = exports2.stringifyValueArgument = exports2.stringifyRedirectArgument = exports2.stringifyArgument = exports2.stringifyEnvSegment = exports2.stringifyCommand = exports2.stringifyCommandChainThen = exports2.stringifyCommandChain = exports2.stringifyCommandLineThen = exports2.stringifyCommandLine = exports2.stringifyShellLine = exports2.parseShell = void 0;
|
|
@@ -136950,9 +136371,9 @@ var require_shell4 = __commonJS({
|
|
|
136950
136371
|
}
|
|
136951
136372
|
});
|
|
136952
136373
|
|
|
136953
|
-
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
136374
|
+
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/grammars/resolution.js
|
|
136954
136375
|
var require_resolution3 = __commonJS({
|
|
136955
|
-
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
136376
|
+
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/grammars/resolution.js"(exports2, module2) {
|
|
136956
136377
|
"use strict";
|
|
136957
136378
|
function peg$subclass(child, parent) {
|
|
136958
136379
|
function ctor() {
|
|
@@ -137381,9 +136802,9 @@ var require_resolution3 = __commonJS({
|
|
|
137381
136802
|
}
|
|
137382
136803
|
});
|
|
137383
136804
|
|
|
137384
|
-
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
136805
|
+
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/resolution.js
|
|
137385
136806
|
var require_resolution4 = __commonJS({
|
|
137386
|
-
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
136807
|
+
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/resolution.js"(exports2) {
|
|
137387
136808
|
"use strict";
|
|
137388
136809
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
137389
136810
|
exports2.stringifyResolution = exports2.parseResolution = void 0;
|
|
@@ -137418,9 +136839,9 @@ var require_resolution4 = __commonJS({
|
|
|
137418
136839
|
}
|
|
137419
136840
|
});
|
|
137420
136841
|
|
|
137421
|
-
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
136842
|
+
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/grammars/syml.js
|
|
137422
136843
|
var require_syml3 = __commonJS({
|
|
137423
|
-
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
136844
|
+
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/grammars/syml.js"(exports2, module2) {
|
|
137424
136845
|
"use strict";
|
|
137425
136846
|
function peg$subclass(child, parent) {
|
|
137426
136847
|
function ctor() {
|
|
@@ -139217,9 +138638,9 @@ var require_syml3 = __commonJS({
|
|
|
139217
138638
|
}
|
|
139218
138639
|
});
|
|
139219
138640
|
|
|
139220
|
-
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
138641
|
+
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/syml.js
|
|
139221
138642
|
var require_syml4 = __commonJS({
|
|
139222
|
-
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
138643
|
+
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/syml.js"(exports2) {
|
|
139223
138644
|
"use strict";
|
|
139224
138645
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
139225
138646
|
exports2.parseSyml = exports2.stringifySyml = exports2.PreserveOrdering = void 0;
|
|
@@ -139361,9 +138782,9 @@ ${fields}`;
|
|
|
139361
138782
|
}
|
|
139362
138783
|
});
|
|
139363
138784
|
|
|
139364
|
-
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
138785
|
+
// ../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/index.js
|
|
139365
138786
|
var require_lib102 = __commonJS({
|
|
139366
|
-
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.
|
|
138787
|
+
"../../node_modules/.pnpm/@yarnpkg+parsers@2.5.0-rc.6/node_modules/@yarnpkg/parsers/lib/index.js"(exports2) {
|
|
139367
138788
|
"use strict";
|
|
139368
138789
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
139369
138790
|
exports2.stringifySyml = exports2.parseSyml = exports2.stringifyResolution = exports2.parseResolution = exports2.stringifyValueArgument = exports2.stringifyShellLine = exports2.stringifyRedirectArgument = exports2.stringifyEnvSegment = exports2.stringifyCommandLineThen = exports2.stringifyCommandLine = exports2.stringifyCommandChainThen = exports2.stringifyCommandChain = exports2.stringifyCommand = exports2.stringifyArithmeticExpression = exports2.stringifyArgumentSegment = exports2.stringifyArgument = exports2.stringifyShell = exports2.parseShell = void 0;
|
|
@@ -139537,7 +138958,7 @@ ${whileRunning(input)}`;
|
|
|
139537
138958
|
});
|
|
139538
138959
|
|
|
139539
138960
|
// ../../node_modules/.pnpm/clipanion@3.2.0-rc.4/node_modules/clipanion/lib/advanced/options/utils.js
|
|
139540
|
-
var
|
|
138961
|
+
var require_utils10 = __commonJS({
|
|
139541
138962
|
"../../node_modules/.pnpm/clipanion@3.2.0-rc.4/node_modules/clipanion/lib/advanced/options/utils.js"(exports2) {
|
|
139542
138963
|
"use strict";
|
|
139543
138964
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -140438,7 +139859,7 @@ var require_Command = __commonJS({
|
|
|
140438
139859
|
"../../node_modules/.pnpm/clipanion@3.2.0-rc.4/node_modules/clipanion/lib/advanced/Command.js"(exports2) {
|
|
140439
139860
|
"use strict";
|
|
140440
139861
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
140441
|
-
var utils =
|
|
139862
|
+
var utils = require_utils10();
|
|
140442
139863
|
function _interopNamespace(e) {
|
|
140443
139864
|
if (e && e.__esModule)
|
|
140444
139865
|
return e;
|
|
@@ -141860,7 +141281,7 @@ var require_Array = __commonJS({
|
|
|
141860
141281
|
"../../node_modules/.pnpm/clipanion@3.2.0-rc.4/node_modules/clipanion/lib/advanced/options/Array.js"(exports2) {
|
|
141861
141282
|
"use strict";
|
|
141862
141283
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
141863
|
-
var utils =
|
|
141284
|
+
var utils = require_utils10();
|
|
141864
141285
|
function Array2(descriptor, initialValueBase, optsBase) {
|
|
141865
141286
|
const [initialValue, opts] = utils.rerouteArguments(initialValueBase, optsBase !== null && optsBase !== void 0 ? optsBase : {});
|
|
141866
141287
|
const { arity = 1 } = opts;
|
|
@@ -141897,7 +141318,7 @@ var require_Boolean = __commonJS({
|
|
|
141897
141318
|
"../../node_modules/.pnpm/clipanion@3.2.0-rc.4/node_modules/clipanion/lib/advanced/options/Boolean.js"(exports2) {
|
|
141898
141319
|
"use strict";
|
|
141899
141320
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
141900
|
-
var utils =
|
|
141321
|
+
var utils = require_utils10();
|
|
141901
141322
|
function Boolean2(descriptor, initialValueBase, optsBase) {
|
|
141902
141323
|
const [initialValue, opts] = utils.rerouteArguments(initialValueBase, optsBase !== null && optsBase !== void 0 ? optsBase : {});
|
|
141903
141324
|
const optNames = descriptor.split(`,`);
|
|
@@ -141933,7 +141354,7 @@ var require_Counter = __commonJS({
|
|
|
141933
141354
|
"../../node_modules/.pnpm/clipanion@3.2.0-rc.4/node_modules/clipanion/lib/advanced/options/Counter.js"(exports2) {
|
|
141934
141355
|
"use strict";
|
|
141935
141356
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
141936
|
-
var utils =
|
|
141357
|
+
var utils = require_utils10();
|
|
141937
141358
|
function Counter(descriptor, initialValueBase, optsBase) {
|
|
141938
141359
|
const [initialValue, opts] = utils.rerouteArguments(initialValueBase, optsBase !== null && optsBase !== void 0 ? optsBase : {});
|
|
141939
141360
|
const optNames = descriptor.split(`,`);
|
|
@@ -141974,7 +141395,7 @@ var require_Proxy = __commonJS({
|
|
|
141974
141395
|
"../../node_modules/.pnpm/clipanion@3.2.0-rc.4/node_modules/clipanion/lib/advanced/options/Proxy.js"(exports2) {
|
|
141975
141396
|
"use strict";
|
|
141976
141397
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
141977
|
-
var utils =
|
|
141398
|
+
var utils = require_utils10();
|
|
141978
141399
|
function Proxy2(opts = {}) {
|
|
141979
141400
|
return utils.makeCommandOption({
|
|
141980
141401
|
definition(builder, key) {
|
|
@@ -141998,7 +141419,7 @@ var require_Rest = __commonJS({
|
|
|
141998
141419
|
"../../node_modules/.pnpm/clipanion@3.2.0-rc.4/node_modules/clipanion/lib/advanced/options/Rest.js"(exports2) {
|
|
141999
141420
|
"use strict";
|
|
142000
141421
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
142001
|
-
var utils =
|
|
141422
|
+
var utils = require_utils10();
|
|
142002
141423
|
var core = require_core7();
|
|
142003
141424
|
function Rest(opts = {}) {
|
|
142004
141425
|
return utils.makeCommandOption({
|
|
@@ -142034,7 +141455,7 @@ var require_String = __commonJS({
|
|
|
142034
141455
|
"../../node_modules/.pnpm/clipanion@3.2.0-rc.4/node_modules/clipanion/lib/advanced/options/String.js"(exports2) {
|
|
142035
141456
|
"use strict";
|
|
142036
141457
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
142037
|
-
var utils =
|
|
141458
|
+
var utils = require_utils10();
|
|
142038
141459
|
var core = require_core7();
|
|
142039
141460
|
function StringOption(descriptor, initialValueBase, optsBase) {
|
|
142040
141461
|
const [initialValue, opts] = utils.rerouteArguments(initialValueBase, optsBase !== null && optsBase !== void 0 ? optsBase : {});
|
|
@@ -142110,7 +141531,7 @@ var require_options3 = __commonJS({
|
|
|
142110
141531
|
"../../node_modules/.pnpm/clipanion@3.2.0-rc.4/node_modules/clipanion/lib/advanced/options/index.js"(exports2) {
|
|
142111
141532
|
"use strict";
|
|
142112
141533
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
142113
|
-
var utils =
|
|
141534
|
+
var utils = require_utils10();
|
|
142114
141535
|
var _Array = require_Array();
|
|
142115
141536
|
var _Boolean = require_Boolean();
|
|
142116
141537
|
var Counter = require_Counter();
|
|
@@ -142152,9 +141573,9 @@ var require_advanced = __commonJS({
|
|
|
142152
141573
|
}
|
|
142153
141574
|
});
|
|
142154
141575
|
|
|
142155
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
141576
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/MessageName.js
|
|
142156
141577
|
var require_MessageName = __commonJS({
|
|
142157
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
141578
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/MessageName.js"(exports2) {
|
|
142158
141579
|
"use strict";
|
|
142159
141580
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
142160
141581
|
exports2.parseMessageName = exports2.stringifyMessageName = exports2.MessageName = void 0;
|
|
@@ -150712,9 +150133,9 @@ var require_source2 = __commonJS({
|
|
|
150712
150133
|
}
|
|
150713
150134
|
});
|
|
150714
150135
|
|
|
150715
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
150136
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/miscUtils.js
|
|
150716
150137
|
var require_miscUtils = __commonJS({
|
|
150717
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
150138
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/miscUtils.js"(exports, module) {
|
|
150718
150139
|
"use strict";
|
|
150719
150140
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
150720
150141
|
exports.isPathLike = exports.tryParseOptionalBoolean = exports.parseOptionalBoolean = exports.parseBoolean = exports.replaceEnvVariables = exports.buildIgnorePattern = exports.sortMap = exports.dynamicRequire = exports.CachingStrategy = exports.DefaultStream = exports.BufferStream = exports.bufferStream = exports.prettifySyncErrors = exports.prettifyAsyncErrors = exports.releaseAfterUseAsync = exports.getMapWithDefault = exports.getSetWithDefault = exports.getArrayWithDefault = exports.getFactoryWithDefault = exports.convertMapsToIndexableObjects = exports.allSettledSafe = exports.isIndexableObject = exports.mapAndFind = exports.mapAndFilter = exports.validateEnum = exports.assertNever = exports.overrideType = exports.escapeRegExp = exports.isTaggedYarnVersion = void 0;
|
|
@@ -151054,9 +150475,9 @@ var require_miscUtils = __commonJS({
|
|
|
151054
150475
|
}
|
|
151055
150476
|
});
|
|
151056
150477
|
|
|
151057
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
150478
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/types.js
|
|
151058
150479
|
var require_types5 = __commonJS({
|
|
151059
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
150480
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/types.js"(exports2) {
|
|
151060
150481
|
"use strict";
|
|
151061
150482
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
151062
150483
|
exports2.PackageExtensionStatus = exports2.PackageExtensionType = exports2.LinkType = void 0;
|
|
@@ -151080,9 +150501,9 @@ var require_types5 = __commonJS({
|
|
|
151080
150501
|
}
|
|
151081
150502
|
});
|
|
151082
150503
|
|
|
151083
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
150504
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/formatUtils.js
|
|
151084
150505
|
var require_formatUtils = __commonJS({
|
|
151085
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
150506
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/formatUtils.js"(exports2) {
|
|
151086
150507
|
"use strict";
|
|
151087
150508
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
151088
150509
|
exports2.addLogFilterSupport = exports2.LogLevel = exports2.prettyField = exports2.mark = exports2.jsonOrPretty = exports2.json = exports2.prettyList = exports2.pretty = exports2.applyHyperlink = exports2.applyColor = exports2.applyStyle = exports2.tuple = exports2.supportsHyperlinks = exports2.supportsColor = exports2.Style = exports2.Type = void 0;
|
|
@@ -151450,9 +150871,9 @@ var require_formatUtils = __commonJS({
|
|
|
151450
150871
|
}
|
|
151451
150872
|
});
|
|
151452
150873
|
|
|
151453
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
150874
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/hashUtils.js
|
|
151454
150875
|
var require_hashUtils = __commonJS({
|
|
151455
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
150876
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/hashUtils.js"(exports2) {
|
|
151456
150877
|
"use strict";
|
|
151457
150878
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
151458
150879
|
exports2.checksumPattern = exports2.checksumFile = exports2.makeHash = void 0;
|
|
@@ -151530,9 +150951,9 @@ var require_hashUtils = __commonJS({
|
|
|
151530
150951
|
}
|
|
151531
150952
|
});
|
|
151532
150953
|
|
|
151533
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
150954
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/structUtils.js
|
|
151534
150955
|
var require_structUtils = __commonJS({
|
|
151535
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
150956
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/structUtils.js"(exports2) {
|
|
151536
150957
|
"use strict";
|
|
151537
150958
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
151538
150959
|
exports2.isPackageCompatible = exports2.getIdentVendorPath = exports2.prettyDependent = exports2.prettyResolution = exports2.prettyWorkspace = exports2.sortDescriptors = exports2.prettyLocatorNoColors = exports2.prettyLocator = exports2.prettyReference = exports2.prettyDescriptor = exports2.prettyRange = exports2.prettyIdent = exports2.slugifyLocator = exports2.slugifyIdent = exports2.stringifyLocator = exports2.stringifyDescriptor = exports2.stringifyIdent = exports2.convertToManifestRange = exports2.makeRange = exports2.parseFileStyleRange = exports2.parseRange = exports2.tryParseLocator = exports2.parseLocator = exports2.tryParseDescriptor = exports2.parseDescriptor = exports2.tryParseIdent = exports2.parseIdent = exports2.areVirtualPackagesEquivalent = exports2.areLocatorsEqual = exports2.areDescriptorsEqual = exports2.areIdentsEqual = exports2.bindLocator = exports2.bindDescriptor = exports2.devirtualizeLocator = exports2.devirtualizeDescriptor = exports2.isVirtualLocator = exports2.isVirtualDescriptor = exports2.virtualizePackage = exports2.virtualizeDescriptor = exports2.copyPackage = exports2.renamePackage = exports2.convertPackageToLocator = exports2.convertLocatorToDescriptor = exports2.convertDescriptorToLocator = exports2.convertToIdent = exports2.makeLocator = exports2.makeDescriptor = exports2.makeIdent = void 0;
|
|
@@ -151924,9 +151345,9 @@ var require_structUtils = __commonJS({
|
|
|
151924
151345
|
}
|
|
151925
151346
|
});
|
|
151926
151347
|
|
|
151927
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
151348
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/CorePlugin.js
|
|
151928
151349
|
var require_CorePlugin = __commonJS({
|
|
151929
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
151350
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/CorePlugin.js"(exports2) {
|
|
151930
151351
|
"use strict";
|
|
151931
151352
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
151932
151353
|
exports2.CorePlugin = void 0;
|
|
@@ -151974,9 +151395,9 @@ var require_CorePlugin = __commonJS({
|
|
|
151974
151395
|
}
|
|
151975
151396
|
});
|
|
151976
151397
|
|
|
151977
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
151398
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/WorkspaceResolver.js
|
|
151978
151399
|
var require_WorkspaceResolver = __commonJS({
|
|
151979
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
151400
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/WorkspaceResolver.js"(exports2) {
|
|
151980
151401
|
"use strict";
|
|
151981
151402
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
151982
151403
|
exports2.WorkspaceResolver = void 0;
|
|
@@ -152032,77 +151453,9 @@ var require_WorkspaceResolver = __commonJS({
|
|
|
152032
151453
|
}
|
|
152033
151454
|
});
|
|
152034
151455
|
|
|
152035
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152036
|
-
var require_semverUtils = __commonJS({
|
|
152037
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.7/node_modules/@yarnpkg/core/lib/semverUtils.js"(exports2) {
|
|
152038
|
-
"use strict";
|
|
152039
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
152040
|
-
exports2.validRange = exports2.satisfiesWithPrereleases = exports2.SemVer = void 0;
|
|
152041
|
-
var tslib_12 = require_tslib();
|
|
152042
|
-
var semver_12 = (0, tslib_12.__importDefault)(require_semver2());
|
|
152043
|
-
var semver_2 = require_semver2();
|
|
152044
|
-
Object.defineProperty(exports2, "SemVer", { enumerable: true, get: function() {
|
|
152045
|
-
return semver_2.SemVer;
|
|
152046
|
-
} });
|
|
152047
|
-
var satisfiesWithPrereleasesCache = new Map();
|
|
152048
|
-
function satisfiesWithPrereleases(version, range, loose = false) {
|
|
152049
|
-
if (!version)
|
|
152050
|
-
return false;
|
|
152051
|
-
const key = `${range}${loose}`;
|
|
152052
|
-
let semverRange = satisfiesWithPrereleasesCache.get(key);
|
|
152053
|
-
if (typeof semverRange === `undefined`) {
|
|
152054
|
-
try {
|
|
152055
|
-
semverRange = new semver_12.default.Range(range, { includePrerelease: true, loose });
|
|
152056
|
-
} catch {
|
|
152057
|
-
return false;
|
|
152058
|
-
} finally {
|
|
152059
|
-
satisfiesWithPrereleasesCache.set(key, semverRange || null);
|
|
152060
|
-
}
|
|
152061
|
-
} else if (semverRange === null) {
|
|
152062
|
-
return false;
|
|
152063
|
-
}
|
|
152064
|
-
let semverVersion;
|
|
152065
|
-
try {
|
|
152066
|
-
semverVersion = new semver_12.default.SemVer(version, semverRange);
|
|
152067
|
-
} catch (err) {
|
|
152068
|
-
return false;
|
|
152069
|
-
}
|
|
152070
|
-
if (semverRange.test(semverVersion))
|
|
152071
|
-
return true;
|
|
152072
|
-
if (semverVersion.prerelease)
|
|
152073
|
-
semverVersion.prerelease = [];
|
|
152074
|
-
return semverRange.set.some((comparatorSet) => {
|
|
152075
|
-
for (const comparator of comparatorSet)
|
|
152076
|
-
if (comparator.semver.prerelease)
|
|
152077
|
-
comparator.semver.prerelease = [];
|
|
152078
|
-
return comparatorSet.every((comparator) => {
|
|
152079
|
-
return comparator.test(semverVersion);
|
|
152080
|
-
});
|
|
152081
|
-
});
|
|
152082
|
-
}
|
|
152083
|
-
exports2.satisfiesWithPrereleases = satisfiesWithPrereleases;
|
|
152084
|
-
var rangesCache = new Map();
|
|
152085
|
-
function validRange(potentialRange) {
|
|
152086
|
-
if (potentialRange.indexOf(`:`) !== -1)
|
|
152087
|
-
return null;
|
|
152088
|
-
let range = rangesCache.get(potentialRange);
|
|
152089
|
-
if (typeof range !== `undefined`)
|
|
152090
|
-
return range;
|
|
152091
|
-
try {
|
|
152092
|
-
range = new semver_12.default.Range(potentialRange);
|
|
152093
|
-
} catch {
|
|
152094
|
-
range = null;
|
|
152095
|
-
}
|
|
152096
|
-
rangesCache.set(potentialRange, range);
|
|
152097
|
-
return range;
|
|
152098
|
-
}
|
|
152099
|
-
exports2.validRange = validRange;
|
|
152100
|
-
}
|
|
152101
|
-
});
|
|
152102
|
-
|
|
152103
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.7/node_modules/@yarnpkg/core/lib/Manifest.js
|
|
151456
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Manifest.js
|
|
152104
151457
|
var require_Manifest = __commonJS({
|
|
152105
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
151458
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Manifest.js"(exports2) {
|
|
152106
151459
|
"use strict";
|
|
152107
151460
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
152108
151461
|
exports2.Manifest = void 0;
|
|
@@ -153005,9 +152358,9 @@ var require_throttle2 = __commonJS({
|
|
|
153005
152358
|
}
|
|
153006
152359
|
});
|
|
153007
152360
|
|
|
153008
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152361
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Report.js
|
|
153009
152362
|
var require_Report = __commonJS({
|
|
153010
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152363
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Report.js"(exports2) {
|
|
153011
152364
|
"use strict";
|
|
153012
152365
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
153013
152366
|
exports2.Report = exports2.isReportError = exports2.ReportError = void 0;
|
|
@@ -153191,9 +152544,9 @@ var require_Report = __commonJS({
|
|
|
153191
152544
|
}
|
|
153192
152545
|
});
|
|
153193
152546
|
|
|
153194
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152547
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/MultiFetcher.js
|
|
153195
152548
|
var require_MultiFetcher = __commonJS({
|
|
153196
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152549
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/MultiFetcher.js"(exports2) {
|
|
153197
152550
|
"use strict";
|
|
153198
152551
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
153199
152552
|
exports2.MultiFetcher = void 0;
|
|
@@ -153235,9 +152588,9 @@ var require_MultiFetcher = __commonJS({
|
|
|
153235
152588
|
}
|
|
153236
152589
|
});
|
|
153237
152590
|
|
|
153238
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152591
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/MultiResolver.js
|
|
153239
152592
|
var require_MultiResolver = __commonJS({
|
|
153240
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152593
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/MultiResolver.js"(exports2) {
|
|
153241
152594
|
"use strict";
|
|
153242
152595
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
153243
152596
|
exports2.MultiResolver = void 0;
|
|
@@ -153308,9 +152661,9 @@ var require_MultiResolver = __commonJS({
|
|
|
153308
152661
|
}
|
|
153309
152662
|
});
|
|
153310
152663
|
|
|
153311
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152664
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/ProtocolResolver.js
|
|
153312
152665
|
var require_ProtocolResolver = __commonJS({
|
|
153313
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152666
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/ProtocolResolver.js"(exports2) {
|
|
153314
152667
|
"use strict";
|
|
153315
152668
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
153316
152669
|
exports2.ProtocolResolver = exports2.TAG_REGEXP = void 0;
|
|
@@ -153364,9 +152717,9 @@ var require_ProtocolResolver = __commonJS({
|
|
|
153364
152717
|
}
|
|
153365
152718
|
});
|
|
153366
152719
|
|
|
153367
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152720
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/VirtualFetcher.js
|
|
153368
152721
|
var require_VirtualFetcher = __commonJS({
|
|
153369
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152722
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/VirtualFetcher.js"(exports2) {
|
|
153370
152723
|
"use strict";
|
|
153371
152724
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
153372
152725
|
exports2.VirtualFetcher = void 0;
|
|
@@ -153412,9 +152765,9 @@ var require_VirtualFetcher = __commonJS({
|
|
|
153412
152765
|
}
|
|
153413
152766
|
});
|
|
153414
152767
|
|
|
153415
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152768
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/VirtualResolver.js
|
|
153416
152769
|
var require_VirtualResolver = __commonJS({
|
|
153417
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152770
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/VirtualResolver.js"(exports2) {
|
|
153418
152771
|
"use strict";
|
|
153419
152772
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
153420
152773
|
exports2.VirtualResolver = void 0;
|
|
@@ -153459,9 +152812,9 @@ var require_VirtualResolver = __commonJS({
|
|
|
153459
152812
|
}
|
|
153460
152813
|
});
|
|
153461
152814
|
|
|
153462
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152815
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/WorkspaceFetcher.js
|
|
153463
152816
|
var require_WorkspaceFetcher = __commonJS({
|
|
153464
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152817
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/WorkspaceFetcher.js"(exports2) {
|
|
153465
152818
|
"use strict";
|
|
153466
152819
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
153467
152820
|
exports2.WorkspaceFetcher = void 0;
|
|
@@ -153488,9 +152841,9 @@ var require_WorkspaceFetcher = __commonJS({
|
|
|
153488
152841
|
}
|
|
153489
152842
|
});
|
|
153490
152843
|
|
|
153491
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152844
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/folderUtils.js
|
|
153492
152845
|
var require_folderUtils = __commonJS({
|
|
153493
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152846
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/folderUtils.js"(exports2) {
|
|
153494
152847
|
"use strict";
|
|
153495
152848
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
153496
152849
|
exports2.isFolderInside = exports2.getHomeFolder = exports2.getDefaultGlobalFolder = void 0;
|
|
@@ -153520,9 +152873,9 @@ var require_folderUtils = __commonJS({
|
|
|
153520
152873
|
}
|
|
153521
152874
|
});
|
|
153522
152875
|
|
|
153523
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152876
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/nodeUtils.js
|
|
153524
152877
|
var require_nodeUtils = __commonJS({
|
|
153525
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152878
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/nodeUtils.js"(exports2) {
|
|
153526
152879
|
"use strict";
|
|
153527
152880
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
153528
152881
|
exports2.builtinModules = void 0;
|
|
@@ -153535,9 +152888,9 @@ var require_nodeUtils = __commonJS({
|
|
|
153535
152888
|
}
|
|
153536
152889
|
});
|
|
153537
152890
|
|
|
153538
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152891
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Configuration.js
|
|
153539
152892
|
var require_Configuration = __commonJS({
|
|
153540
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
152893
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Configuration.js"(exports2) {
|
|
153541
152894
|
"use strict";
|
|
153542
152895
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
153543
152896
|
exports2.Configuration = exports2.ProjectLookup = exports2.coreDefinitions = exports2.FormatType = exports2.SettingsType = exports2.SECRET = exports2.DEFAULT_LOCK_FILENAME = exports2.DEFAULT_RC_FILENAME = exports2.ENVIRONMENT_PREFIX = void 0;
|
|
@@ -153622,7 +152975,7 @@ var require_Configuration = __commonJS({
|
|
|
153622
152975
|
default: null
|
|
153623
152976
|
},
|
|
153624
152977
|
globalFolder: {
|
|
153625
|
-
description: `Folder where
|
|
152978
|
+
description: `Folder where all system-global files are stored`,
|
|
153626
152979
|
type: SettingsType.ABSOLUTE_PATH,
|
|
153627
152980
|
default: folderUtils.getDefaultGlobalFolder()
|
|
153628
152981
|
},
|
|
@@ -154696,9 +154049,9 @@ var require_Configuration = __commonJS({
|
|
|
154696
154049
|
}
|
|
154697
154050
|
});
|
|
154698
154051
|
|
|
154699
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
154052
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/execUtils.js
|
|
154700
154053
|
var require_execUtils = __commonJS({
|
|
154701
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
154054
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/execUtils.js"(exports2) {
|
|
154702
154055
|
"use strict";
|
|
154703
154056
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
154704
154057
|
exports2.execvp = exports2.pipevp = exports2.ExecError = exports2.PipeError = exports2.EndStrategy = void 0;
|
|
@@ -154881,7 +154234,7 @@ var require_execUtils = __commonJS({
|
|
|
154881
154234
|
});
|
|
154882
154235
|
|
|
154883
154236
|
// ../../node_modules/.pnpm/@sindresorhus+is@4.2.0/node_modules/@sindresorhus/is/dist/index.js
|
|
154884
|
-
var
|
|
154237
|
+
var require_dist13 = __commonJS({
|
|
154885
154238
|
"../../node_modules/.pnpm/@sindresorhus+is@4.2.0/node_modules/@sindresorhus/is/dist/index.js"(exports2, module2) {
|
|
154886
154239
|
"use strict";
|
|
154887
154240
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -158462,7 +157815,7 @@ var require_is_form_data = __commonJS({
|
|
|
158462
157815
|
"../../node_modules/.pnpm/got@11.8.3/node_modules/got/dist/source/core/utils/is-form-data.js"(exports2) {
|
|
158463
157816
|
"use strict";
|
|
158464
157817
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
158465
|
-
var is_1 =
|
|
157818
|
+
var is_1 = require_dist13();
|
|
158466
157819
|
exports2.default = (body) => is_1.default.nodeStream(body) && is_1.default.function_(body.getBoundary);
|
|
158467
157820
|
}
|
|
158468
157821
|
});
|
|
@@ -158474,7 +157827,7 @@ var require_get_body_size = __commonJS({
|
|
|
158474
157827
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
158475
157828
|
var fs_1 = require("fs");
|
|
158476
157829
|
var util_1 = require("util");
|
|
158477
|
-
var is_1 =
|
|
157830
|
+
var is_1 = require_dist13();
|
|
158478
157831
|
var is_form_data_1 = require_is_form_data();
|
|
158479
157832
|
var statAsync = util_1.promisify(fs_1.stat);
|
|
158480
157833
|
exports2.default = async (body, headers) => {
|
|
@@ -158676,7 +158029,7 @@ var require_url_to_options2 = __commonJS({
|
|
|
158676
158029
|
"../../node_modules/.pnpm/got@11.8.3/node_modules/got/dist/source/core/utils/url-to-options.js"(exports2) {
|
|
158677
158030
|
"use strict";
|
|
158678
158031
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
158679
|
-
var is_1 =
|
|
158032
|
+
var is_1 = require_dist13();
|
|
158680
158033
|
exports2.default = (url) => {
|
|
158681
158034
|
url = url;
|
|
158682
158035
|
const options = {
|
|
@@ -158872,7 +158225,7 @@ var require_normalize_arguments = __commonJS({
|
|
|
158872
158225
|
"../../node_modules/.pnpm/got@11.8.3/node_modules/got/dist/source/as-promise/normalize-arguments.js"(exports2) {
|
|
158873
158226
|
"use strict";
|
|
158874
158227
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
158875
|
-
var is_1 =
|
|
158228
|
+
var is_1 = require_dist13();
|
|
158876
158229
|
var normalizeArguments = (options, defaults2) => {
|
|
158877
158230
|
if (is_1.default.null_(options.encoding)) {
|
|
158878
158231
|
throw new TypeError("To get a Buffer, set `options.responseType` to `buffer` instead");
|
|
@@ -158996,7 +158349,7 @@ var require_core8 = __commonJS({
|
|
|
158996
158349
|
var decompressResponse = require_decompress_response();
|
|
158997
158350
|
var http2wrapper = require_source6();
|
|
158998
158351
|
var lowercaseKeys = require_lowercase_keys();
|
|
158999
|
-
var is_1 =
|
|
158352
|
+
var is_1 = require_dist13();
|
|
159000
158353
|
var get_body_size_1 = require_get_body_size();
|
|
159001
158354
|
var is_form_data_1 = require_is_form_data();
|
|
159002
158355
|
var proxy_events_1 = require_proxy_events2();
|
|
@@ -160332,7 +159685,7 @@ var require_as_promise = __commonJS({
|
|
|
160332
159685
|
};
|
|
160333
159686
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
160334
159687
|
var events_1 = require("events");
|
|
160335
|
-
var is_1 =
|
|
159688
|
+
var is_1 = require_dist13();
|
|
160336
159689
|
var PCancelable = require_p_cancelable();
|
|
160337
159690
|
var types_1 = require_types6();
|
|
160338
159691
|
var parse_body_1 = require_parse_body();
|
|
@@ -160521,7 +159874,7 @@ var require_deep_freeze = __commonJS({
|
|
|
160521
159874
|
"../../node_modules/.pnpm/got@11.8.3/node_modules/got/dist/source/utils/deep-freeze.js"(exports2) {
|
|
160522
159875
|
"use strict";
|
|
160523
159876
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
160524
|
-
var is_1 =
|
|
159877
|
+
var is_1 = require_dist13();
|
|
160525
159878
|
function deepFreeze(object) {
|
|
160526
159879
|
for (const value of Object.values(object)) {
|
|
160527
159880
|
if (is_1.default.plainObject(value) || is_1.default.array(value)) {
|
|
@@ -160564,7 +159917,7 @@ var require_create = __commonJS({
|
|
|
160564
159917
|
};
|
|
160565
159918
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
160566
159919
|
exports2.defaultHandler = void 0;
|
|
160567
|
-
var is_1 =
|
|
159920
|
+
var is_1 = require_dist13();
|
|
160568
159921
|
var as_promise_1 = require_as_promise();
|
|
160569
159922
|
var create_rejection_1 = require_create_rejection();
|
|
160570
159923
|
var core_1 = require_core8();
|
|
@@ -161140,9 +160493,9 @@ var require_tunnel2 = __commonJS({
|
|
|
161140
160493
|
}
|
|
161141
160494
|
});
|
|
161142
160495
|
|
|
161143
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
160496
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/httpUtils.js
|
|
161144
160497
|
var require_httpUtils = __commonJS({
|
|
161145
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
160498
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/httpUtils.js"(exports2) {
|
|
161146
160499
|
"use strict";
|
|
161147
160500
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
161148
160501
|
exports2.del = exports2.post = exports2.put = exports2.get = exports2.request = exports2.Method = exports2.getNetworkSettings = exports2.RequestError = void 0;
|
|
@@ -161355,9 +160708,9 @@ var require_httpUtils = __commonJS({
|
|
|
161355
160708
|
}
|
|
161356
160709
|
});
|
|
161357
160710
|
|
|
161358
|
-
// ../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.
|
|
160711
|
+
// ../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.3/node_modules/@yarnpkg/libzip/lib/libzipSync.js
|
|
161359
160712
|
var require_libzipSync = __commonJS({
|
|
161360
|
-
"../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.
|
|
160713
|
+
"../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.3/node_modules/@yarnpkg/libzip/lib/libzipSync.js"(exports2, module2) {
|
|
161361
160714
|
var frozenFs = Object.assign({}, require("fs"));
|
|
161362
160715
|
var createModule = function() {
|
|
161363
160716
|
var _scriptDir = typeof document !== "undefined" && document.currentScript ? document.currentScript.src : void 0;
|
|
@@ -165493,9 +164846,9 @@ var require_libzipSync = __commonJS({
|
|
|
165493
164846
|
}
|
|
165494
164847
|
});
|
|
165495
164848
|
|
|
165496
|
-
// ../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.
|
|
164849
|
+
// ../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.3/node_modules/@yarnpkg/libzip/lib/makeInterface.js
|
|
165497
164850
|
var require_makeInterface = __commonJS({
|
|
165498
|
-
"../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.
|
|
164851
|
+
"../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.3/node_modules/@yarnpkg/libzip/lib/makeInterface.js"(exports2) {
|
|
165499
164852
|
"use strict";
|
|
165500
164853
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
165501
164854
|
exports2.makeInterface = exports2.Errors = void 0;
|
|
@@ -165653,9 +165006,9 @@ var require_makeInterface = __commonJS({
|
|
|
165653
165006
|
}
|
|
165654
165007
|
});
|
|
165655
165008
|
|
|
165656
|
-
// ../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.
|
|
165009
|
+
// ../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.3/node_modules/@yarnpkg/libzip/lib/sync.js
|
|
165657
165010
|
var require_sync8 = __commonJS({
|
|
165658
|
-
"../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.
|
|
165011
|
+
"../../node_modules/.pnpm/@yarnpkg+libzip@2.2.3-rc.3/node_modules/@yarnpkg/libzip/lib/sync.js"(exports2) {
|
|
165659
165012
|
"use strict";
|
|
165660
165013
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
165661
165014
|
exports2.getLibzipPromise = exports2.getLibzipSync = void 0;
|
|
@@ -165676,9 +165029,9 @@ var require_sync8 = __commonJS({
|
|
|
165676
165029
|
}
|
|
165677
165030
|
});
|
|
165678
165031
|
|
|
165679
|
-
// ../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.
|
|
165032
|
+
// ../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.6/node_modules/@yarnpkg/shell/lib/errors.js
|
|
165680
165033
|
var require_errors9 = __commonJS({
|
|
165681
|
-
"../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.
|
|
165034
|
+
"../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.6/node_modules/@yarnpkg/shell/lib/errors.js"(exports2) {
|
|
165682
165035
|
"use strict";
|
|
165683
165036
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
165684
165037
|
exports2.ShellError = void 0;
|
|
@@ -165692,9 +165045,9 @@ var require_errors9 = __commonJS({
|
|
|
165692
165045
|
}
|
|
165693
165046
|
});
|
|
165694
165047
|
|
|
165695
|
-
// ../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.
|
|
165048
|
+
// ../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.6/node_modules/@yarnpkg/shell/lib/globUtils.js
|
|
165696
165049
|
var require_globUtils2 = __commonJS({
|
|
165697
|
-
"../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.
|
|
165050
|
+
"../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.6/node_modules/@yarnpkg/shell/lib/globUtils.js"(exports2) {
|
|
165698
165051
|
"use strict";
|
|
165699
165052
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
165700
165053
|
exports2.isBraceExpansion = exports2.match = exports2.isGlobPattern = exports2.fastGlobOptions = exports2.micromatchOptions = void 0;
|
|
@@ -165736,9 +165089,9 @@ var require_globUtils2 = __commonJS({
|
|
|
165736
165089
|
}
|
|
165737
165090
|
});
|
|
165738
165091
|
|
|
165739
|
-
// ../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.
|
|
165092
|
+
// ../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.6/node_modules/@yarnpkg/shell/lib/pipe.js
|
|
165740
165093
|
var require_pipe5 = __commonJS({
|
|
165741
|
-
"../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.
|
|
165094
|
+
"../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.6/node_modules/@yarnpkg/shell/lib/pipe.js"(exports2) {
|
|
165742
165095
|
"use strict";
|
|
165743
165096
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
165744
165097
|
exports2.createOutputStreamsWithPrefix = exports2.start = exports2.Handle = exports2.ProtectedStream = exports2.makeBuiltin = exports2.makeProcess = exports2.Pipe = void 0;
|
|
@@ -166008,9 +165361,9 @@ var require_pipe5 = __commonJS({
|
|
|
166008
165361
|
}
|
|
166009
165362
|
});
|
|
166010
165363
|
|
|
166011
|
-
// ../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.
|
|
165364
|
+
// ../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.6/node_modules/@yarnpkg/shell/lib/index.js
|
|
166012
165365
|
var require_lib104 = __commonJS({
|
|
166013
|
-
"../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.
|
|
165366
|
+
"../../node_modules/.pnpm/@yarnpkg+shell@3.2.0-rc.6/node_modules/@yarnpkg/shell/lib/index.js"(exports2) {
|
|
166014
165367
|
"use strict";
|
|
166015
165368
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
166016
165369
|
exports2.execute = exports2.ShellError = exports2.globUtils = void 0;
|
|
@@ -166912,9 +166265,9 @@ var require_capitalize = __commonJS({
|
|
|
166912
166265
|
}
|
|
166913
166266
|
});
|
|
166914
166267
|
|
|
166915
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
166268
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/StreamReport.js
|
|
166916
166269
|
var require_StreamReport = __commonJS({
|
|
166917
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
166270
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/StreamReport.js"(exports2) {
|
|
166918
166271
|
"use strict";
|
|
166919
166272
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
166920
166273
|
exports2.StreamReport = exports2.formatNameWithHyperlink = exports2.formatName = void 0;
|
|
@@ -167418,9 +166771,9 @@ var require_StreamReport = __commonJS({
|
|
|
167418
166771
|
}
|
|
167419
166772
|
});
|
|
167420
166773
|
|
|
167421
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
166774
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/YarnVersion.js
|
|
167422
166775
|
var require_YarnVersion = __commonJS({
|
|
167423
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
166776
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/YarnVersion.js"(exports2) {
|
|
167424
166777
|
"use strict";
|
|
167425
166778
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
167426
166779
|
exports2.YarnVersion = void 0;
|
|
@@ -167428,9 +166781,9 @@ var require_YarnVersion = __commonJS({
|
|
|
167428
166781
|
}
|
|
167429
166782
|
});
|
|
167430
166783
|
|
|
167431
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
166784
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/scriptUtils.js
|
|
167432
166785
|
var require_scriptUtils = __commonJS({
|
|
167433
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
166786
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/scriptUtils.js"(exports2) {
|
|
167434
166787
|
"use strict";
|
|
167435
166788
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
167436
166789
|
exports2.executeWorkspaceAccessibleBinary = exports2.executePackageAccessibleBinary = exports2.getWorkspaceAccessibleBinaries = exports2.getPackageAccessibleBinaries = exports2.maybeExecuteWorkspaceLifecycleScript = exports2.executeWorkspaceLifecycleScript = exports2.hasWorkspaceScript = exports2.executeWorkspaceScript = exports2.executePackageShellcode = exports2.executePackageScript = exports2.hasPackageScript = exports2.prepareExternalProject = exports2.makeScriptEnv = exports2.detectPackageManager = exports2.PackageManager = void 0;
|
|
@@ -172194,9 +171547,9 @@ var require_tar = __commonJS({
|
|
|
172194
171547
|
}
|
|
172195
171548
|
});
|
|
172196
171549
|
|
|
172197
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
171550
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/WorkerPool.js
|
|
172198
171551
|
var require_WorkerPool = __commonJS({
|
|
172199
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
171552
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/WorkerPool.js"(exports2) {
|
|
172200
171553
|
"use strict";
|
|
172201
171554
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
172202
171555
|
exports2.WorkerPool = void 0;
|
|
@@ -172254,9 +171607,9 @@ var require_WorkerPool = __commonJS({
|
|
|
172254
171607
|
}
|
|
172255
171608
|
});
|
|
172256
171609
|
|
|
172257
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
171610
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/worker-zip/index.js
|
|
172258
171611
|
var require_worker_zip = __commonJS({
|
|
172259
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
171612
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/worker-zip/index.js"(exports2, module2) {
|
|
172260
171613
|
var hook;
|
|
172261
171614
|
module2.exports.getContent = () => {
|
|
172262
171615
|
if (typeof hook === `undefined`)
|
|
@@ -172266,9 +171619,9 @@ var require_worker_zip = __commonJS({
|
|
|
172266
171619
|
}
|
|
172267
171620
|
});
|
|
172268
171621
|
|
|
172269
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
171622
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/tgzUtils.js
|
|
172270
171623
|
var require_tgzUtils = __commonJS({
|
|
172271
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
171624
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/tgzUtils.js"(exports2) {
|
|
172272
171625
|
"use strict";
|
|
172273
171626
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
172274
171627
|
exports2.extractArchiveTo = exports2.convertToZip = exports2.makeArchiveFromDirectory = void 0;
|
|
@@ -172455,9 +171808,9 @@ var require_treeify = __commonJS({
|
|
|
172455
171808
|
}
|
|
172456
171809
|
});
|
|
172457
171810
|
|
|
172458
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
171811
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/treeUtils.js
|
|
172459
171812
|
var require_treeUtils = __commonJS({
|
|
172460
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
171813
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/treeUtils.js"(exports2) {
|
|
172461
171814
|
"use strict";
|
|
172462
171815
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
172463
171816
|
exports2.emitTree = exports2.emitList = exports2.treeNodeToJson = exports2.treeNodeToTreeify = void 0;
|
|
@@ -172541,9 +171894,9 @@ $2`).replace(/^│\n/, ``);
|
|
|
172541
171894
|
}
|
|
172542
171895
|
});
|
|
172543
171896
|
|
|
172544
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
171897
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Cache.js
|
|
172545
171898
|
var require_Cache = __commonJS({
|
|
172546
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
171899
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Cache.js"(exports2) {
|
|
172547
171900
|
"use strict";
|
|
172548
171901
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
172549
171902
|
exports2.Cache = void 0;
|
|
@@ -172785,9 +172138,9 @@ var require_Cache = __commonJS({
|
|
|
172785
172138
|
}
|
|
172786
172139
|
});
|
|
172787
172140
|
|
|
172788
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
172141
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Installer.js
|
|
172789
172142
|
var require_Installer = __commonJS({
|
|
172790
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
172143
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Installer.js"(exports2) {
|
|
172791
172144
|
"use strict";
|
|
172792
172145
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
172793
172146
|
exports2.BuildType = void 0;
|
|
@@ -172799,9 +172152,9 @@ var require_Installer = __commonJS({
|
|
|
172799
172152
|
}
|
|
172800
172153
|
});
|
|
172801
172154
|
|
|
172802
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
172155
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/LightReport.js
|
|
172803
172156
|
var require_LightReport = __commonJS({
|
|
172804
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
172157
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/LightReport.js"(exports2) {
|
|
172805
172158
|
"use strict";
|
|
172806
172159
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
172807
172160
|
exports2.LightReport = void 0;
|
|
@@ -174601,9 +173954,9 @@ var require_pick2 = __commonJS({
|
|
|
174601
173954
|
}
|
|
174602
173955
|
});
|
|
174603
173956
|
|
|
174604
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
173957
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/LegacyMigrationResolver.js
|
|
174605
173958
|
var require_LegacyMigrationResolver = __commonJS({
|
|
174606
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
173959
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/LegacyMigrationResolver.js"(exports2) {
|
|
174607
173960
|
"use strict";
|
|
174608
173961
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
174609
173962
|
exports2.LegacyMigrationResolver = exports2.IMPORTED_PATTERNS = void 0;
|
|
@@ -174707,9 +174060,9 @@ var require_LegacyMigrationResolver = __commonJS({
|
|
|
174707
174060
|
}
|
|
174708
174061
|
});
|
|
174709
174062
|
|
|
174710
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
174063
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/LockfileResolver.js
|
|
174711
174064
|
var require_LockfileResolver = __commonJS({
|
|
174712
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
174065
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/LockfileResolver.js"(exports2) {
|
|
174713
174066
|
"use strict";
|
|
174714
174067
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
174715
174068
|
exports2.LockfileResolver = void 0;
|
|
@@ -174767,9 +174120,9 @@ var require_LockfileResolver = __commonJS({
|
|
|
174767
174120
|
}
|
|
174768
174121
|
});
|
|
174769
174122
|
|
|
174770
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
174123
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/RunInstallPleaseResolver.js
|
|
174771
174124
|
var require_RunInstallPleaseResolver = __commonJS({
|
|
174772
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
174125
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/RunInstallPleaseResolver.js"(exports2) {
|
|
174773
174126
|
"use strict";
|
|
174774
174127
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
174775
174128
|
exports2.RunInstallPleaseResolver = void 0;
|
|
@@ -174808,9 +174161,9 @@ var require_RunInstallPleaseResolver = __commonJS({
|
|
|
174808
174161
|
}
|
|
174809
174162
|
});
|
|
174810
174163
|
|
|
174811
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
174164
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/ThrowReport.js
|
|
174812
174165
|
var require_ThrowReport = __commonJS({
|
|
174813
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
174166
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/ThrowReport.js"(exports2) {
|
|
174814
174167
|
"use strict";
|
|
174815
174168
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
174816
174169
|
exports2.ThrowReport = void 0;
|
|
@@ -174863,9 +174216,9 @@ var require_ThrowReport = __commonJS({
|
|
|
174863
174216
|
}
|
|
174864
174217
|
});
|
|
174865
174218
|
|
|
174866
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
174219
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Workspace.js
|
|
174867
174220
|
var require_Workspace = __commonJS({
|
|
174868
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
174221
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Workspace.js"(exports2) {
|
|
174869
174222
|
"use strict";
|
|
174870
174223
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
174871
174224
|
exports2.Workspace = void 0;
|
|
@@ -174996,9 +174349,9 @@ var require_Workspace = __commonJS({
|
|
|
174996
174349
|
}
|
|
174997
174350
|
});
|
|
174998
174351
|
|
|
174999
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
174352
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Project.js
|
|
175000
174353
|
var require_Project = __commonJS({
|
|
175001
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
174354
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/Project.js"(exports2) {
|
|
175002
174355
|
"use strict";
|
|
175003
174356
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
175004
174357
|
exports2.Project = exports2.InstallMode = void 0;
|
|
@@ -176576,9 +175929,9 @@ var require_Project = __commonJS({
|
|
|
176576
175929
|
}
|
|
176577
175930
|
});
|
|
176578
175931
|
|
|
176579
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
175932
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/TelemetryManager.js
|
|
176580
175933
|
var require_TelemetryManager = __commonJS({
|
|
176581
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
175934
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/TelemetryManager.js"(exports2) {
|
|
176582
175935
|
"use strict";
|
|
176583
175936
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
176584
175937
|
exports2.TelemetryManager = exports2.MetricName = void 0;
|
|
@@ -176751,9 +176104,9 @@ var require_TelemetryManager = __commonJS({
|
|
|
176751
176104
|
}
|
|
176752
176105
|
});
|
|
176753
176106
|
|
|
176754
|
-
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
176107
|
+
// ../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/index.js
|
|
176755
176108
|
var require_lib106 = __commonJS({
|
|
176756
|
-
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.
|
|
176109
|
+
"../../node_modules/.pnpm/@yarnpkg+core@3.2.0-rc.8/node_modules/@yarnpkg/core/lib/index.js"(exports2) {
|
|
176757
176110
|
"use strict";
|
|
176758
176111
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
176759
176112
|
exports2.treeUtils = exports2.tgzUtils = exports2.structUtils = exports2.semverUtils = exports2.scriptUtils = exports2.miscUtils = exports2.formatUtils = exports2.folderUtils = exports2.execUtils = exports2.httpUtils = exports2.hashUtils = exports2.PackageExtensionStatus = exports2.PackageExtensionType = exports2.LinkType = exports2.YarnVersion = exports2.Workspace = exports2.WorkspaceResolver = exports2.VirtualFetcher = exports2.ThrowReport = exports2.TelemetryManager = exports2.StreamReport = exports2.Report = exports2.ReportError = exports2.TAG_REGEXP = exports2.InstallMode = exports2.Project = exports2.stringifyMessageName = exports2.parseMessageName = exports2.MessageName = exports2.Manifest = exports2.LightReport = exports2.BuildType = exports2.SettingsType = exports2.ProjectLookup = exports2.FormatType = exports2.Configuration = exports2.DEFAULT_LOCK_FILENAME = exports2.DEFAULT_RC_FILENAME = exports2.Cache = void 0;
|
|
@@ -177768,69 +177121,6 @@ var require_renderParseable = __commonJS({
|
|
|
177768
177121
|
}
|
|
177769
177122
|
});
|
|
177770
177123
|
|
|
177771
|
-
// ../../node_modules/.pnpm/cli-columns@4.0.0/node_modules/cli-columns/index.js
|
|
177772
|
-
var require_cli_columns = __commonJS({
|
|
177773
|
-
"../../node_modules/.pnpm/cli-columns@4.0.0/node_modules/cli-columns/index.js"(exports2, module2) {
|
|
177774
|
-
"use strict";
|
|
177775
|
-
var stringWidth = require_string_width();
|
|
177776
|
-
var stripAnsi = require_strip_ansi();
|
|
177777
|
-
var concat = Array.prototype.concat;
|
|
177778
|
-
var defaults2 = {
|
|
177779
|
-
character: " ",
|
|
177780
|
-
newline: "\n",
|
|
177781
|
-
padding: 2,
|
|
177782
|
-
sort: true,
|
|
177783
|
-
width: 0
|
|
177784
|
-
};
|
|
177785
|
-
function byPlainText(a, b) {
|
|
177786
|
-
const plainA = stripAnsi(a);
|
|
177787
|
-
const plainB = stripAnsi(b);
|
|
177788
|
-
if (plainA === plainB) {
|
|
177789
|
-
return 0;
|
|
177790
|
-
}
|
|
177791
|
-
if (plainA > plainB) {
|
|
177792
|
-
return 1;
|
|
177793
|
-
}
|
|
177794
|
-
return -1;
|
|
177795
|
-
}
|
|
177796
|
-
function makeArray() {
|
|
177797
|
-
return [];
|
|
177798
|
-
}
|
|
177799
|
-
function makeList(count) {
|
|
177800
|
-
return Array.apply(null, Array(count));
|
|
177801
|
-
}
|
|
177802
|
-
function padCell(fullWidth, character, value) {
|
|
177803
|
-
const valueWidth = stringWidth(value);
|
|
177804
|
-
const filler = makeList(fullWidth - valueWidth + 1);
|
|
177805
|
-
return value + filler.join(character);
|
|
177806
|
-
}
|
|
177807
|
-
function toRows(rows, cell, i) {
|
|
177808
|
-
rows[i % rows.length].push(cell);
|
|
177809
|
-
return rows;
|
|
177810
|
-
}
|
|
177811
|
-
function toString(arr) {
|
|
177812
|
-
return arr.join("");
|
|
177813
|
-
}
|
|
177814
|
-
function columns(values2, options) {
|
|
177815
|
-
values2 = concat.apply([], values2);
|
|
177816
|
-
options = Object.assign({}, defaults2, options);
|
|
177817
|
-
let cells = values2.filter(Boolean).map(String);
|
|
177818
|
-
if (options.sort !== false) {
|
|
177819
|
-
cells = cells.sort(byPlainText);
|
|
177820
|
-
}
|
|
177821
|
-
const termWidth = options.width || process.stdout.columns;
|
|
177822
|
-
const cellWidth = Math.max.apply(null, cells.map(stringWidth)) + options.padding;
|
|
177823
|
-
const columnCount = Math.floor(termWidth / cellWidth) || 1;
|
|
177824
|
-
const rowCount = Math.ceil(cells.length / columnCount) || 1;
|
|
177825
|
-
if (columnCount === 1) {
|
|
177826
|
-
return cells.join(options.newline);
|
|
177827
|
-
}
|
|
177828
|
-
return cells.map(padCell.bind(null, cellWidth, options.character)).reduce(toRows, makeList(rowCount).map(makeArray)).map(toString).join(options.newline);
|
|
177829
|
-
}
|
|
177830
|
-
module2.exports = columns;
|
|
177831
|
-
}
|
|
177832
|
-
});
|
|
177833
|
-
|
|
177834
177124
|
// ../list/lib/renderTree.js
|
|
177835
177125
|
var require_renderTree = __commonJS({
|
|
177836
177126
|
"../list/lib/renderTree.js"(exports2) {
|
|
@@ -178497,7 +177787,7 @@ var require_sortWith = __commonJS({
|
|
|
178497
177787
|
});
|
|
178498
177788
|
|
|
178499
177789
|
// ../plugin-commands-outdated/lib/utils.js
|
|
178500
|
-
var
|
|
177790
|
+
var require_utils11 = __commonJS({
|
|
178501
177791
|
"../plugin-commands-outdated/lib/utils.js"(exports2) {
|
|
178502
177792
|
"use strict";
|
|
178503
177793
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -178543,7 +177833,7 @@ var require_recursive4 = __commonJS({
|
|
|
178543
177833
|
var isEmpty_1 = __importDefault(require_isEmpty2());
|
|
178544
177834
|
var sortWith_1 = __importDefault(require_sortWith());
|
|
178545
177835
|
var outdated_2 = require_outdated2();
|
|
178546
|
-
var utils_1 =
|
|
177836
|
+
var utils_1 = require_utils11();
|
|
178547
177837
|
var DEP_PRIORITY = {
|
|
178548
177838
|
dependencies: 1,
|
|
178549
177839
|
devDependencies: 2,
|
|
@@ -178670,7 +177960,7 @@ var require_outdated2 = __commonJS({
|
|
|
178670
177960
|
var render_help_1 = __importDefault(require_lib32());
|
|
178671
177961
|
var strip_ansi_1 = __importDefault(require_strip_ansi());
|
|
178672
177962
|
var wrap_ansi_1 = __importDefault(require_wrap_ansi());
|
|
178673
|
-
var utils_1 =
|
|
177963
|
+
var utils_1 = require_utils11();
|
|
178674
177964
|
var recursive_1 = __importDefault(require_recursive4());
|
|
178675
177965
|
function rcOptionsTypes() {
|
|
178676
177966
|
return {
|
|
@@ -178977,7 +178267,8 @@ var require_lib112 = __commonJS({
|
|
|
178977
178267
|
"publish",
|
|
178978
178268
|
"postpublish"
|
|
178979
178269
|
];
|
|
178980
|
-
async function makePublishManifest(dir, originalManifest) {
|
|
178270
|
+
async function makePublishManifest(dir, originalManifest, opts) {
|
|
178271
|
+
var _a;
|
|
178981
178272
|
const publishManifest = (0, omit_1.default)(["pnpm", "scripts"], originalManifest);
|
|
178982
178273
|
if (originalManifest.scripts != null) {
|
|
178983
178274
|
publishManifest.scripts = (0, omit_1.default)(PREPUBLISH_SCRIPTS, originalManifest.scripts);
|
|
@@ -178994,6 +178285,9 @@ var require_lib112 = __commonJS({
|
|
|
178994
178285
|
publishManifest[key] = publishConfig[key];
|
|
178995
178286
|
});
|
|
178996
178287
|
}
|
|
178288
|
+
if (opts === null || opts === void 0 ? void 0 : opts.readmeFile) {
|
|
178289
|
+
(_a = publishManifest.readme) !== null && _a !== void 0 ? _a : publishManifest.readme = opts.readmeFile;
|
|
178290
|
+
}
|
|
178997
178291
|
return publishManifest;
|
|
178998
178292
|
}
|
|
178999
178293
|
exports2.default = makePublishManifest;
|
|
@@ -179143,6 +178437,9 @@ var require_recursivePublish = __commonJS({
|
|
|
179143
178437
|
if (opts.dryRun) {
|
|
179144
178438
|
appendedArgs.push("--dry-run");
|
|
179145
178439
|
}
|
|
178440
|
+
if (opts.cliOptions["otp"]) {
|
|
178441
|
+
appendedArgs.push(`--otp=${opts.cliOptions["otp"]}`);
|
|
178442
|
+
}
|
|
179146
178443
|
const chunks = (0, sort_packages_1.default)(opts.selectedProjectsGraph);
|
|
179147
178444
|
const tag = (_a = opts.tag) !== null && _a !== void 0 ? _a : "latest";
|
|
179148
178445
|
for (const chunk of chunks) {
|
|
@@ -179362,6 +178659,10 @@ var require_publish2 = __commonJS({
|
|
|
179362
178659
|
{
|
|
179363
178660
|
description: 'Save the list of the newly published packages to "pnpm-publish-summary.json". Useful when some other tooling is used to report the list of published packages.',
|
|
179364
178661
|
name: "--report-summary"
|
|
178662
|
+
},
|
|
178663
|
+
{
|
|
178664
|
+
description: "When publishing packages that require two-factor authentication, this option can specify a one-time password",
|
|
178665
|
+
name: "--otp"
|
|
179365
178666
|
}
|
|
179366
178667
|
]
|
|
179367
178668
|
}
|
|
@@ -179594,7 +178895,9 @@ var require_pack3 = __commonJS({
|
|
|
179594
178895
|
}
|
|
179595
178896
|
const mode = isExecutable ? 493 : 420;
|
|
179596
178897
|
if (/^package\/package\.(json|json5|yaml)/.test(name)) {
|
|
179597
|
-
const
|
|
178898
|
+
const readmePath = Object.keys(filesMap).find((name2) => /^package\/readme.md$/i.test(name2));
|
|
178899
|
+
const readmeFile = readmePath ? await fs_1.default.promises.readFile(filesMap[readmePath], "utf8") : void 0;
|
|
178900
|
+
const publishManifest = await (0, exportable_manifest_1.default)(projectDir, manifest, { readmeFile });
|
|
179598
178901
|
pack.entry({ mode, mtime, name: "package/package.json" }, JSON.stringify(publishManifest, null, 2));
|
|
179599
178902
|
continue;
|
|
179600
178903
|
}
|
|
@@ -182881,7 +182184,7 @@ var require_lodash = __commonJS({
|
|
|
182881
182184
|
});
|
|
182882
182185
|
|
|
182883
182186
|
// ../../node_modules/.pnpm/didyoumean2@5.0.0/node_modules/didyoumean2/dist/index.cjs
|
|
182884
|
-
var
|
|
182187
|
+
var require_dist14 = __commonJS({
|
|
182885
182188
|
"../../node_modules/.pnpm/didyoumean2@5.0.0/node_modules/didyoumean2/dist/index.cjs"(exports2) {
|
|
182886
182189
|
"use strict";
|
|
182887
182190
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -183059,7 +182362,7 @@ var require_lib119 = __commonJS({
|
|
|
183059
182362
|
var error_1 = __importDefault(require_lib8());
|
|
183060
182363
|
var find_workspace_dir_1 = __importDefault(require_lib97());
|
|
183061
182364
|
var nopt_1 = __importDefault(require_nopt());
|
|
183062
|
-
var didyoumean2_1 = __importStar2(
|
|
182365
|
+
var didyoumean2_1 = __importStar2(require_dist14());
|
|
183063
182366
|
var RECURSIVE_CMDS = new Set(["recursive", "multi", "m"]);
|
|
183064
182367
|
async function parseCliArgs(opts, inputArgv) {
|
|
183065
182368
|
var _a;
|
|
@@ -183826,6 +183129,7 @@ var require_cmd = __commonJS({
|
|
|
183826
183129
|
"prefix",
|
|
183827
183130
|
"reporter",
|
|
183828
183131
|
"stream",
|
|
183132
|
+
"aggregate-output",
|
|
183829
183133
|
"test-pattern",
|
|
183830
183134
|
"changed-files-ignore-pattern",
|
|
183831
183135
|
"use-stderr",
|
|
@@ -184094,6 +183398,7 @@ var require_reporter = __commonJS({
|
|
|
184094
183398
|
},
|
|
184095
183399
|
reportingOptions: {
|
|
184096
183400
|
appendOnly: true,
|
|
183401
|
+
aggregateOutput: opts.config.aggregateOutput,
|
|
184097
183402
|
logLevel: opts.config.loglevel,
|
|
184098
183403
|
throttleProgress: 1e3
|
|
184099
183404
|
},
|