@storm-software/workspace-tools 1.182.0 → 1.182.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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/index.js +119 -123
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/rollup/executor.js +117 -121
|
@@ -2407,7 +2407,7 @@ var require_native = __commonJS({
|
|
|
2407
2407
|
);
|
|
2408
2408
|
}
|
|
2409
2409
|
};
|
|
2410
|
-
var { parse:
|
|
2410
|
+
var { parse: parse10, parseAsync: parseAsync3, xxhashBase64Url: xxhashBase64Url2, xxhashBase36: xxhashBase362, xxhashBase16: xxhashBase162 } = requireWithFriendlyError(
|
|
2411
2411
|
existsSync8(path9.join(__dirname, localName)) ? localName : `@rollup/rollup-${packageBase}`
|
|
2412
2412
|
);
|
|
2413
2413
|
function getPackageBase() {
|
|
@@ -2435,7 +2435,7 @@ ${Object.entries(bindingsByPlatformAndArch).flatMap(
|
|
|
2435
2435
|
If this is important to you, please consider supporting Rollup to make a native build for your platform and architecture available.`
|
|
2436
2436
|
);
|
|
2437
2437
|
}
|
|
2438
|
-
module2.exports.parse =
|
|
2438
|
+
module2.exports.parse = parse10;
|
|
2439
2439
|
module2.exports.parseAsync = parseAsync3;
|
|
2440
2440
|
module2.exports.xxhashBase64Url = xxhashBase64Url2;
|
|
2441
2441
|
module2.exports.xxhashBase36 = xxhashBase362;
|
|
@@ -27219,7 +27219,7 @@ var require_main = __commonJS({
|
|
|
27219
27219
|
var packageJson = require_package();
|
|
27220
27220
|
var version4 = packageJson.version;
|
|
27221
27221
|
var LINE = /(?:^|^)\s*(?:export\s+)?([\w.-]+)(?:\s*=\s*?|:\s+?)(\s*'(?:\\'|[^'])*'|\s*"(?:\\"|[^"])*"|\s*`(?:\\`|[^`])*`|[^#\r\n]+)?\s*(?:#.*)?(?:$|$)/mg;
|
|
27222
|
-
function
|
|
27222
|
+
function parse10(src) {
|
|
27223
27223
|
const obj = {};
|
|
27224
27224
|
let lines = src.toString();
|
|
27225
27225
|
lines = lines.replace(/\r\n?/mg, "\n");
|
|
@@ -27462,7 +27462,7 @@ var require_main = __commonJS({
|
|
|
27462
27462
|
_parseVault,
|
|
27463
27463
|
config,
|
|
27464
27464
|
decrypt,
|
|
27465
|
-
parse:
|
|
27465
|
+
parse: parse10,
|
|
27466
27466
|
populate
|
|
27467
27467
|
};
|
|
27468
27468
|
module2.exports.configDotenv = DotenvModule.configDotenv;
|
|
@@ -27974,9 +27974,9 @@ var require_jiti = __commonJS({
|
|
|
27974
27974
|
}
|
|
27975
27975
|
module3.exports = SemVer;
|
|
27976
27976
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/clean.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
27977
|
-
const
|
|
27977
|
+
const parse10 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js");
|
|
27978
27978
|
module3.exports = (version4, options) => {
|
|
27979
|
-
const s2 =
|
|
27979
|
+
const s2 = parse10(version4.trim().replace(/^[=v]+/, ""), options);
|
|
27980
27980
|
return s2 ? s2.version : null;
|
|
27981
27981
|
};
|
|
27982
27982
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/cmp.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
@@ -28006,7 +28006,7 @@ var require_jiti = __commonJS({
|
|
|
28006
28006
|
}
|
|
28007
28007
|
};
|
|
28008
28008
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/coerce.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
28009
|
-
const SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js"),
|
|
28009
|
+
const SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js"), parse10 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js"), { safeRe: re3, t: t2 } = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/re.js");
|
|
28010
28010
|
module3.exports = (version4, options) => {
|
|
28011
28011
|
if (version4 instanceof SemVer) return version4;
|
|
28012
28012
|
if ("number" == typeof version4 && (version4 = String(version4)), "string" != typeof version4) return null;
|
|
@@ -28019,7 +28019,7 @@ var require_jiti = __commonJS({
|
|
|
28019
28019
|
} else match2 = version4.match(options.includePrerelease ? re3[t2.COERCEFULL] : re3[t2.COERCE]);
|
|
28020
28020
|
if (null === match2) return null;
|
|
28021
28021
|
const major = match2[2], minor = match2[3] || "0", patch = match2[4] || "0", prerelease = options.includePrerelease && match2[5] ? `-${match2[5]}` : "", build = options.includePrerelease && match2[6] ? `+${match2[6]}` : "";
|
|
28022
|
-
return
|
|
28022
|
+
return parse10(`${major}.${minor}.${patch}${prerelease}${build}`, options);
|
|
28023
28023
|
};
|
|
28024
28024
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare-build.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
28025
28025
|
const SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js");
|
|
@@ -28034,9 +28034,9 @@ var require_jiti = __commonJS({
|
|
|
28034
28034
|
const SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js");
|
|
28035
28035
|
module3.exports = (a2, b6, loose) => new SemVer(a2, loose).compare(new SemVer(b6, loose));
|
|
28036
28036
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/diff.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
28037
|
-
const
|
|
28037
|
+
const parse10 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js");
|
|
28038
28038
|
module3.exports = (version1, version22) => {
|
|
28039
|
-
const v1 =
|
|
28039
|
+
const v1 = parse10(version1, null, true), v22 = parse10(version22, null, true), comparison = v1.compare(v22);
|
|
28040
28040
|
if (0 === comparison) return null;
|
|
28041
28041
|
const v1Higher = comparison > 0, highVersion = v1Higher ? v1 : v22, lowVersion = v1Higher ? v22 : v1, highHasPre = !!highVersion.prerelease.length;
|
|
28042
28042
|
if (!!lowVersion.prerelease.length && !highHasPre) return lowVersion.patch || lowVersion.minor ? highVersion.patch ? "patch" : highVersion.minor ? "minor" : "major" : "major";
|
|
@@ -28092,9 +28092,9 @@ var require_jiti = __commonJS({
|
|
|
28092
28092
|
const SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js");
|
|
28093
28093
|
module3.exports = (a2, loose) => new SemVer(a2, loose).patch;
|
|
28094
28094
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/prerelease.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
28095
|
-
const
|
|
28095
|
+
const parse10 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js");
|
|
28096
28096
|
module3.exports = (version4, options) => {
|
|
28097
|
-
const parsed =
|
|
28097
|
+
const parsed = parse10(version4, options);
|
|
28098
28098
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
28099
28099
|
};
|
|
28100
28100
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/rcompare.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
@@ -28117,14 +28117,14 @@ var require_jiti = __commonJS({
|
|
|
28117
28117
|
const compareBuild = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare-build.js");
|
|
28118
28118
|
module3.exports = (list, loose) => list.sort((a2, b6) => compareBuild(a2, b6, loose));
|
|
28119
28119
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/valid.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
28120
|
-
const
|
|
28120
|
+
const parse10 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js");
|
|
28121
28121
|
module3.exports = (version4, options) => {
|
|
28122
|
-
const v5 =
|
|
28122
|
+
const v5 = parse10(version4, options);
|
|
28123
28123
|
return v5 ? v5.version : null;
|
|
28124
28124
|
};
|
|
28125
28125
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/index.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
28126
|
-
const internalRe = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/re.js"), constants5 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/constants.js"), SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js"), identifiers = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/identifiers.js"),
|
|
28127
|
-
module3.exports = { parse:
|
|
28126
|
+
const internalRe = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/re.js"), constants5 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/constants.js"), SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js"), identifiers = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/identifiers.js"), parse10 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js"), valid = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/valid.js"), clean = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/clean.js"), inc = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/inc.js"), diff2 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/diff.js"), major = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/major.js"), minor = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/minor.js"), patch = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/patch.js"), prerelease = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/prerelease.js"), compare2 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare.js"), rcompare = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/rcompare.js"), compareLoose = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare-loose.js"), compareBuild = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare-build.js"), sort2 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/sort.js"), rsort = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/rsort.js"), gt = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/gt.js"), lt = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/lt.js"), eq = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/eq.js"), neq = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/neq.js"), gte = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/gte.js"), lte = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/lte.js"), cmp = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/cmp.js"), coerce2 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/coerce.js"), Comparator = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/comparator.js"), Range = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/range.js"), satisfies = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/satisfies.js"), toComparators = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/to-comparators.js"), maxSatisfying = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/max-satisfying.js"), minSatisfying = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/min-satisfying.js"), minVersion = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/min-version.js"), validRange = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/valid.js"), outside = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/outside.js"), gtr = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/gtr.js"), ltr = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/ltr.js"), intersects = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/intersects.js"), simplifyRange = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/simplify.js"), subset = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/subset.js");
|
|
28127
|
+
module3.exports = { parse: parse10, valid, clean, inc, diff: diff2, major, minor, patch, prerelease, compare: compare2, rcompare, compareLoose, compareBuild, sort: sort2, rsort, gt, lt, eq, neq, gte, lte, cmp, coerce: coerce2, Comparator, Range, satisfies, toComparators, maxSatisfying, minSatisfying, minVersion, validRange, outside, gtr, ltr, intersects, simplifyRange, subset, SemVer, re: internalRe.re, src: internalRe.src, tokens: internalRe.t, SEMVER_SPEC_VERSION: constants5.SEMVER_SPEC_VERSION, RELEASE_TYPES: constants5.RELEASE_TYPES, compareIdentifiers: identifiers.compareIdentifiers, rcompareIdentifiers: identifiers.rcompareIdentifiers };
|
|
28128
28128
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/constants.js": (module3) => {
|
|
28129
28129
|
const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991;
|
|
28130
28130
|
module3.exports = { MAX_LENGTH: 256, MAX_SAFE_COMPONENT_LENGTH: 16, MAX_SAFE_BUILD_LENGTH: 250, MAX_SAFE_INTEGER, RELEASE_TYPES: ["major", "premajor", "minor", "preminor", "patch", "prepatch", "prerelease"], SEMVER_SPEC_VERSION: "2.0.0", FLAG_INCLUDE_PRERELEASE: 1, FLAG_LOOSE: 2 };
|
|
@@ -31689,12 +31689,12 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
31689
31689
|
return { __proto__: null };
|
|
31690
31690
|
}
|
|
31691
31691
|
const AnyMap = function(map, mapUrl) {
|
|
31692
|
-
const parsed =
|
|
31692
|
+
const parsed = parse10(map);
|
|
31693
31693
|
if (!("sections" in parsed)) return new TraceMap(parsed, mapUrl);
|
|
31694
31694
|
const mappings = [], sources = [], sourcesContent = [], names = [], ignoreList = [];
|
|
31695
31695
|
return recurse(parsed, mapUrl, mappings, sources, sourcesContent, names, ignoreList, 0, 0, 1 / 0, 1 / 0), presortedDecodedMap({ version: 3, file: parsed.file, names, sources, sourcesContent, mappings, ignoreList });
|
|
31696
31696
|
};
|
|
31697
|
-
function
|
|
31697
|
+
function parse10(map) {
|
|
31698
31698
|
return "string" == typeof map ? JSON.parse(map) : map;
|
|
31699
31699
|
}
|
|
31700
31700
|
function recurse(input, mapUrl, mappings, sources, sourcesContent, names, ignoreList, lineOffset, columnOffset, stopLine, stopColumn) {
|
|
@@ -31710,7 +31710,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
31710
31710
|
}
|
|
31711
31711
|
}
|
|
31712
31712
|
function addSection(input, mapUrl, mappings, sources, sourcesContent, names, ignoreList, lineOffset, columnOffset, stopLine, stopColumn) {
|
|
31713
|
-
const parsed =
|
|
31713
|
+
const parsed = parse10(input);
|
|
31714
31714
|
if ("sections" in parsed) return recurse(...arguments);
|
|
31715
31715
|
const map = new TraceMap(parsed, mapUrl), sourcesOffset = sources.length, namesOffset = names.length, decoded = decodedMappings(map), { resolvedSources, sourcesContent: contents, ignoreList: ignores } = map;
|
|
31716
31716
|
if (append2(sources, resolvedSources), append2(names, map.names), contents) append2(sourcesContent, contents);
|
|
@@ -32798,7 +32798,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
32798
32798
|
tok("CARET"), src[t2.CARET] = "^" + src[t2.LONECARET] + src[t2.XRANGEPLAIN] + "$", tok("CARETLOOSE"), src[t2.CARETLOOSE] = "^" + src[t2.LONECARET] + src[t2.XRANGEPLAINLOOSE] + "$", tok("COMPARATORLOOSE"), src[t2.COMPARATORLOOSE] = "^" + src[t2.GTLT] + "\\s*(" + src[t2.LOOSEPLAIN] + ")$|^$", tok("COMPARATOR"), src[t2.COMPARATOR] = "^" + src[t2.GTLT] + "\\s*(" + src[t2.FULLPLAIN] + ")$|^$", tok("COMPARATORTRIM"), src[t2.COMPARATORTRIM] = "(\\s*)" + src[t2.GTLT] + "\\s*(" + src[t2.LOOSEPLAIN] + "|" + src[t2.XRANGEPLAIN] + ")", re3[t2.COMPARATORTRIM] = new RegExp(src[t2.COMPARATORTRIM], "g"), safeRe[t2.COMPARATORTRIM] = new RegExp(makeSafeRe(src[t2.COMPARATORTRIM]), "g");
|
|
32799
32799
|
tok("HYPHENRANGE"), src[t2.HYPHENRANGE] = "^\\s*(" + src[t2.XRANGEPLAIN] + ")\\s+-\\s+(" + src[t2.XRANGEPLAIN] + ")\\s*$", tok("HYPHENRANGELOOSE"), src[t2.HYPHENRANGELOOSE] = "^\\s*(" + src[t2.XRANGEPLAINLOOSE] + ")\\s+-\\s+(" + src[t2.XRANGEPLAINLOOSE] + ")\\s*$", tok("STAR"), src[t2.STAR] = "(<|>)?=?\\s*\\*";
|
|
32800
32800
|
for (var i2 = 0; i2 < R4; i2++) debug2(i2, src[i2]), re3[i2] || (re3[i2] = new RegExp(src[i2]), safeRe[i2] = new RegExp(makeSafeRe(src[i2])));
|
|
32801
|
-
function
|
|
32801
|
+
function parse10(version4, options) {
|
|
32802
32802
|
if (options && "object" == typeof options || (options = { loose: !!options, includePrerelease: false }), version4 instanceof SemVer) return version4;
|
|
32803
32803
|
if ("string" != typeof version4) return null;
|
|
32804
32804
|
if (version4.length > MAX_LENGTH3) return null;
|
|
@@ -32830,11 +32830,11 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
32830
32830
|
return id;
|
|
32831
32831
|
}) : this.prerelease = [], this.build = m3[5] ? m3[5].split(".") : [], this.format();
|
|
32832
32832
|
}
|
|
32833
|
-
exports3.parse =
|
|
32834
|
-
var v5 =
|
|
32833
|
+
exports3.parse = parse10, exports3.valid = function(version4, options) {
|
|
32834
|
+
var v5 = parse10(version4, options);
|
|
32835
32835
|
return v5 ? v5.version : null;
|
|
32836
32836
|
}, exports3.clean = function(version4, options) {
|
|
32837
|
-
var s2 =
|
|
32837
|
+
var s2 = parse10(version4.trim().replace(/^[=v]+/, ""), options);
|
|
32838
32838
|
return s2 ? s2.version : null;
|
|
32839
32839
|
}, exports3.SemVer = SemVer, SemVer.prototype.format = function() {
|
|
32840
32840
|
return this.version = this.major + "." + this.minor + "." + this.patch, this.prerelease.length && (this.version += "-" + this.prerelease.join(".")), this.version;
|
|
@@ -32910,7 +32910,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
32910
32910
|
}
|
|
32911
32911
|
}, exports3.diff = function(version1, version22) {
|
|
32912
32912
|
if (eq(version1, version22)) return null;
|
|
32913
|
-
var v1 =
|
|
32913
|
+
var v1 = parse10(version1), v22 = parse10(version22), prefix = "";
|
|
32914
32914
|
if (v1.prerelease.length || v22.prerelease.length) {
|
|
32915
32915
|
prefix = "pre";
|
|
32916
32916
|
var defaultResult = "prerelease";
|
|
@@ -33224,7 +33224,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
33224
33224
|
}, exports3.gtr = function(version4, range, options) {
|
|
33225
33225
|
return outside(version4, range, ">", options);
|
|
33226
33226
|
}, exports3.outside = outside, exports3.prerelease = function(version4, options) {
|
|
33227
|
-
var parsed =
|
|
33227
|
+
var parsed = parse10(version4, options);
|
|
33228
33228
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
33229
33229
|
}, exports3.intersects = function(r1, r22, options) {
|
|
33230
33230
|
return r1 = new Range(r1, options), r22 = new Range(r22, options), r1.intersects(r22);
|
|
@@ -33238,7 +33238,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
33238
33238
|
safeRe[t2.COERCERTL].lastIndex = -1;
|
|
33239
33239
|
} else match2 = version4.match(safeRe[t2.COERCE]);
|
|
33240
33240
|
if (null === match2) return null;
|
|
33241
|
-
return
|
|
33241
|
+
return parse10(match2[2] + "." + (match2[3] || "0") + "." + (match2[4] || "0"), options);
|
|
33242
33242
|
};
|
|
33243
33243
|
}, "./node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
33244
33244
|
"use strict";
|
|
@@ -43769,9 +43769,9 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
43769
43769
|
var _node$extra;
|
|
43770
43770
|
this.toAssignableList(node.params, null == (_node$extra = node.extra) ? void 0 : _node$extra.trailingCommaLoc, false), this.scope.enter(6), super.checkParams(node, false, true), this.scope.exit();
|
|
43771
43771
|
}
|
|
43772
|
-
forwardNoArrowParamsConversionAt(node,
|
|
43772
|
+
forwardNoArrowParamsConversionAt(node, parse10) {
|
|
43773
43773
|
let result;
|
|
43774
|
-
return -1 !== this.state.noArrowParamsConversionAt.indexOf(node.start) ? (this.state.noArrowParamsConversionAt.push(this.state.start), result =
|
|
43774
|
+
return -1 !== this.state.noArrowParamsConversionAt.indexOf(node.start) ? (this.state.noArrowParamsConversionAt.push(this.state.start), result = parse10(), this.state.noArrowParamsConversionAt.pop()) : result = parse10(), result;
|
|
43775
43775
|
}
|
|
43776
43776
|
parseParenItem(node, startLoc) {
|
|
43777
43777
|
const newNode = super.parseParenItem(node, startLoc);
|
|
@@ -68677,7 +68677,7 @@ var require_large_numbers = __commonJS({
|
|
|
68677
68677
|
}
|
|
68678
68678
|
}
|
|
68679
68679
|
};
|
|
68680
|
-
var
|
|
68680
|
+
var parse10 = (buf) => {
|
|
68681
68681
|
const pre = buf[0];
|
|
68682
68682
|
const value2 = pre === 128 ? pos(buf.slice(1, buf.length)) : pre === 255 ? twos(buf) : null;
|
|
68683
68683
|
if (value2 === null) {
|
|
@@ -68724,7 +68724,7 @@ var require_large_numbers = __commonJS({
|
|
|
68724
68724
|
var twosComp = (byte) => (255 ^ byte) + 1 & 255;
|
|
68725
68725
|
module2.exports = {
|
|
68726
68726
|
encode: encode2,
|
|
68727
|
-
parse:
|
|
68727
|
+
parse: parse10
|
|
68728
68728
|
};
|
|
68729
68729
|
}
|
|
68730
68730
|
});
|
|
@@ -69119,15 +69119,15 @@ var require_winchars = __commonJS({
|
|
|
69119
69119
|
// node_modules/.pnpm/tar@6.2.1/node_modules/tar/lib/strip-absolute-path.js
|
|
69120
69120
|
var require_strip_absolute_path = __commonJS({
|
|
69121
69121
|
"node_modules/.pnpm/tar@6.2.1/node_modules/tar/lib/strip-absolute-path.js"(exports2, module2) {
|
|
69122
|
-
var { isAbsolute: isAbsolute5, parse:
|
|
69122
|
+
var { isAbsolute: isAbsolute5, parse: parse10 } = require("path").win32;
|
|
69123
69123
|
module2.exports = (path9) => {
|
|
69124
69124
|
let r3 = "";
|
|
69125
|
-
let parsed =
|
|
69125
|
+
let parsed = parse10(path9);
|
|
69126
69126
|
while (isAbsolute5(path9) || parsed.root) {
|
|
69127
69127
|
const root = path9.charAt(0) === "/" && path9.slice(0, 4) !== "//?/" ? "/" : parsed.root;
|
|
69128
69128
|
path9 = path9.slice(root.length);
|
|
69129
69129
|
r3 += root;
|
|
69130
|
-
parsed =
|
|
69130
|
+
parsed = parse10(path9);
|
|
69131
69131
|
}
|
|
69132
69132
|
return [r3, path9];
|
|
69133
69133
|
};
|
|
@@ -71263,12 +71263,12 @@ var require_list = __commonJS({
|
|
|
71263
71263
|
}
|
|
71264
71264
|
};
|
|
71265
71265
|
var listFile = (opt, cb) => {
|
|
71266
|
-
const
|
|
71266
|
+
const parse10 = new Parser3(opt);
|
|
71267
71267
|
const readSize = opt.maxReadSize || 16 * 1024 * 1024;
|
|
71268
71268
|
const file = opt.file;
|
|
71269
71269
|
const p2 = new Promise((resolve9, reject) => {
|
|
71270
|
-
|
|
71271
|
-
|
|
71270
|
+
parse10.on("error", reject);
|
|
71271
|
+
parse10.on("end", resolve9);
|
|
71272
71272
|
fs4.stat(file, (er2, stat3) => {
|
|
71273
71273
|
if (er2) {
|
|
71274
71274
|
reject(er2);
|
|
@@ -71278,7 +71278,7 @@ var require_list = __commonJS({
|
|
|
71278
71278
|
size: stat3.size
|
|
71279
71279
|
});
|
|
71280
71280
|
stream2.on("error", reject);
|
|
71281
|
-
stream2.pipe(
|
|
71281
|
+
stream2.pipe(parse10);
|
|
71282
71282
|
}
|
|
71283
71283
|
});
|
|
71284
71284
|
});
|
|
@@ -71660,7 +71660,7 @@ var require_opts_arg = __commonJS({
|
|
|
71660
71660
|
var require_path_arg = __commonJS({
|
|
71661
71661
|
"node_modules/.pnpm/mkdirp@1.0.4/node_modules/mkdirp/lib/path-arg.js"(exports2, module2) {
|
|
71662
71662
|
var platform3 = process.env.__TESTING_MKDIRP_PLATFORM__ || process.platform;
|
|
71663
|
-
var { resolve: resolve9, parse:
|
|
71663
|
+
var { resolve: resolve9, parse: parse10 } = require("path");
|
|
71664
71664
|
var pathArg = (path9) => {
|
|
71665
71665
|
if (/\0/.test(path9)) {
|
|
71666
71666
|
throw Object.assign(
|
|
@@ -71674,7 +71674,7 @@ var require_path_arg = __commonJS({
|
|
|
71674
71674
|
path9 = resolve9(path9);
|
|
71675
71675
|
if (platform3 === "win32") {
|
|
71676
71676
|
const badWinChars = /[*|"<>?:]/;
|
|
71677
|
-
const { root } =
|
|
71677
|
+
const { root } = parse10(path9);
|
|
71678
71678
|
if (badWinChars.test(path9.substr(root.length))) {
|
|
71679
71679
|
throw Object.assign(new Error("Illegal characters in path."), {
|
|
71680
71680
|
path: path9,
|
|
@@ -73513,7 +73513,7 @@ var require_parse2 = __commonJS({
|
|
|
73513
73513
|
}
|
|
73514
73514
|
return parsed;
|
|
73515
73515
|
}
|
|
73516
|
-
function
|
|
73516
|
+
function parse10(command, args, options) {
|
|
73517
73517
|
if (args && !Array.isArray(args)) {
|
|
73518
73518
|
options = args;
|
|
73519
73519
|
args = null;
|
|
@@ -73532,7 +73532,7 @@ var require_parse2 = __commonJS({
|
|
|
73532
73532
|
};
|
|
73533
73533
|
return options.shell ? parsed : parseNonShell(parsed);
|
|
73534
73534
|
}
|
|
73535
|
-
module2.exports =
|
|
73535
|
+
module2.exports = parse10;
|
|
73536
73536
|
}
|
|
73537
73537
|
});
|
|
73538
73538
|
|
|
@@ -73591,16 +73591,16 @@ var require_cross_spawn = __commonJS({
|
|
|
73591
73591
|
"node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/index.js"(exports2, module2) {
|
|
73592
73592
|
"use strict";
|
|
73593
73593
|
var cp = require("child_process");
|
|
73594
|
-
var
|
|
73594
|
+
var parse10 = require_parse2();
|
|
73595
73595
|
var enoent = require_enoent();
|
|
73596
73596
|
function spawn(command, args, options) {
|
|
73597
|
-
const parsed =
|
|
73597
|
+
const parsed = parse10(command, args, options);
|
|
73598
73598
|
const spawned = cp.spawn(parsed.command, parsed.args, parsed.options);
|
|
73599
73599
|
enoent.hookChildProcess(spawned, parsed);
|
|
73600
73600
|
return spawned;
|
|
73601
73601
|
}
|
|
73602
73602
|
function spawnSync2(command, args, options) {
|
|
73603
|
-
const parsed =
|
|
73603
|
+
const parsed = parse10(command, args, options);
|
|
73604
73604
|
const result = cp.spawnSync(parsed.command, parsed.args, parsed.options);
|
|
73605
73605
|
result.error = result.error || enoent.verifyENOENTSync(result.status, parsed);
|
|
73606
73606
|
return result;
|
|
@@ -73608,7 +73608,7 @@ var require_cross_spawn = __commonJS({
|
|
|
73608
73608
|
module2.exports = spawn;
|
|
73609
73609
|
module2.exports.spawn = spawn;
|
|
73610
73610
|
module2.exports.sync = spawnSync2;
|
|
73611
|
-
module2.exports._parse =
|
|
73611
|
+
module2.exports._parse = parse10;
|
|
73612
73612
|
module2.exports._enoent = enoent;
|
|
73613
73613
|
}
|
|
73614
73614
|
});
|
|
@@ -85713,10 +85713,10 @@ ${f2.toString(16)}\r
|
|
|
85713
85713
|
return Q5(U4, "getHeadersList"), util$3 = { isCTLExcludingHtab: t2, validateCookieName: r3, validateCookiePath: o, validateCookieValue: n2, toIMFDate: c, stringify: y3, getHeadersList: U4 }, util$3;
|
|
85714
85714
|
}
|
|
85715
85715
|
Q5(requireUtil$2, "requireUtil$2");
|
|
85716
|
-
var
|
|
85716
|
+
var parse10;
|
|
85717
85717
|
var hasRequiredParse;
|
|
85718
85718
|
function requireParse() {
|
|
85719
|
-
if (hasRequiredParse) return
|
|
85719
|
+
if (hasRequiredParse) return parse10;
|
|
85720
85720
|
hasRequiredParse = 1;
|
|
85721
85721
|
const { maxNameValuePairSize: e2, maxAttributeValueSize: A2 } = requireConstants$1(), { isCTLExcludingHtab: t2 } = requireUtil$2(), { collectASequenceOfCodePointsFast: r3 } = requireDataUrl(), n2 = require$$0__default;
|
|
85722
85722
|
function o(l2) {
|
|
@@ -85769,7 +85769,7 @@ ${f2.toString(16)}\r
|
|
|
85769
85769
|
} else C5.unparsed ?? (C5.unparsed = []), C5.unparsed.push(`${c}=${I4}`);
|
|
85770
85770
|
return B3(l2, C5);
|
|
85771
85771
|
}
|
|
85772
|
-
return Q5(B3, "parseUnparsedAttributes"),
|
|
85772
|
+
return Q5(B3, "parseUnparsedAttributes"), parse10 = { parseSetCookie: o, parseUnparsedAttributes: B3 }, parse10;
|
|
85773
85773
|
}
|
|
85774
85774
|
Q5(requireParse, "requireParse");
|
|
85775
85775
|
var cookies;
|
|
@@ -87771,7 +87771,7 @@ async function loadDotenv(options) {
|
|
|
87771
87771
|
}
|
|
87772
87772
|
return environment;
|
|
87773
87773
|
}
|
|
87774
|
-
function interpolate(target, source = {},
|
|
87774
|
+
function interpolate(target, source = {}, parse10 = (v5) => v5) {
|
|
87775
87775
|
function getValue(key) {
|
|
87776
87776
|
return source[key] === void 0 ? target[key] : source[key];
|
|
87777
87777
|
}
|
|
@@ -87780,7 +87780,7 @@ function interpolate(target, source = {}, parse11 = (v5) => v5) {
|
|
|
87780
87780
|
return value2;
|
|
87781
87781
|
}
|
|
87782
87782
|
const matches = value2.match(/(.?\${?(?:[\w:]+)?}?)/g) || [];
|
|
87783
|
-
return
|
|
87783
|
+
return parse10(
|
|
87784
87784
|
// eslint-disable-next-line unicorn/no-array-reduce
|
|
87785
87785
|
matches.reduce((newValue, match2) => {
|
|
87786
87786
|
const parts = /(.?)\${?([\w:]+)?}?/g.exec(match2) || [];
|
|
@@ -114590,14 +114590,14 @@ var require_lib7 = __commonJS({
|
|
|
114590
114590
|
super.checkParams(node, false, true);
|
|
114591
114591
|
this.scope.exit();
|
|
114592
114592
|
}
|
|
114593
|
-
forwardNoArrowParamsConversionAt(node,
|
|
114593
|
+
forwardNoArrowParamsConversionAt(node, parse11) {
|
|
114594
114594
|
let result;
|
|
114595
114595
|
if (this.state.noArrowParamsConversionAt.indexOf(node.start) !== -1) {
|
|
114596
114596
|
this.state.noArrowParamsConversionAt.push(this.state.start);
|
|
114597
|
-
result =
|
|
114597
|
+
result = parse11();
|
|
114598
114598
|
this.state.noArrowParamsConversionAt.pop();
|
|
114599
114599
|
} else {
|
|
114600
|
-
result =
|
|
114600
|
+
result = parse11();
|
|
114601
114601
|
}
|
|
114602
114602
|
return result;
|
|
114603
114603
|
}
|
|
@@ -123312,7 +123312,7 @@ var require_lib7 = __commonJS({
|
|
|
123312
123312
|
}
|
|
123313
123313
|
return pluginMap;
|
|
123314
123314
|
}
|
|
123315
|
-
function
|
|
123315
|
+
function parse10(input, options) {
|
|
123316
123316
|
var _options;
|
|
123317
123317
|
if (((_options = options) == null ? void 0 : _options.sourceType) === "unambiguous") {
|
|
123318
123318
|
options = Object.assign({}, options);
|
|
@@ -123382,7 +123382,7 @@ var require_lib7 = __commonJS({
|
|
|
123382
123382
|
}
|
|
123383
123383
|
return cls;
|
|
123384
123384
|
}
|
|
123385
|
-
exports2.parse =
|
|
123385
|
+
exports2.parse = parse10;
|
|
123386
123386
|
exports2.parseExpression = parseExpression2;
|
|
123387
123387
|
exports2.tokTypes = tokTypes;
|
|
123388
123388
|
}
|
|
@@ -126080,7 +126080,7 @@ var require_ms = __commonJS({
|
|
|
126080
126080
|
options = options || {};
|
|
126081
126081
|
var type = typeof val;
|
|
126082
126082
|
if (type === "string" && val.length > 0) {
|
|
126083
|
-
return
|
|
126083
|
+
return parse10(val);
|
|
126084
126084
|
} else if (type === "number" && isFinite(val)) {
|
|
126085
126085
|
return options.long ? fmtLong(val) : fmtShort(val);
|
|
126086
126086
|
}
|
|
@@ -126088,7 +126088,7 @@ var require_ms = __commonJS({
|
|
|
126088
126088
|
"val is not a non-empty string or a valid number. val=" + JSON.stringify(val)
|
|
126089
126089
|
);
|
|
126090
126090
|
};
|
|
126091
|
-
function
|
|
126091
|
+
function parse10(str) {
|
|
126092
126092
|
str = String(str);
|
|
126093
126093
|
if (str.length > 100) {
|
|
126094
126094
|
return;
|
|
@@ -130048,7 +130048,7 @@ var require_trace_mapping_umd = __commonJS({
|
|
|
130048
130048
|
return { __proto__: null };
|
|
130049
130049
|
}
|
|
130050
130050
|
const AnyMap = function(map, mapUrl) {
|
|
130051
|
-
const parsed =
|
|
130051
|
+
const parsed = parse10(map);
|
|
130052
130052
|
if (!("sections" in parsed)) {
|
|
130053
130053
|
return new TraceMap(parsed, mapUrl);
|
|
130054
130054
|
}
|
|
@@ -130069,7 +130069,7 @@ var require_trace_mapping_umd = __commonJS({
|
|
|
130069
130069
|
};
|
|
130070
130070
|
return presortedDecodedMap(joined);
|
|
130071
130071
|
};
|
|
130072
|
-
function
|
|
130072
|
+
function parse10(map) {
|
|
130073
130073
|
return typeof map === "string" ? JSON.parse(map) : map;
|
|
130074
130074
|
}
|
|
130075
130075
|
function recurse(input, mapUrl, mappings, sources, sourcesContent, names, ignoreList, lineOffset, columnOffset, stopLine, stopColumn) {
|
|
@@ -130091,7 +130091,7 @@ var require_trace_mapping_umd = __commonJS({
|
|
|
130091
130091
|
}
|
|
130092
130092
|
}
|
|
130093
130093
|
function addSection(input, mapUrl, mappings, sources, sourcesContent, names, ignoreList, lineOffset, columnOffset, stopLine, stopColumn) {
|
|
130094
|
-
const parsed =
|
|
130094
|
+
const parsed = parse10(input);
|
|
130095
130095
|
if ("sections" in parsed)
|
|
130096
130096
|
return recurse(...arguments);
|
|
130097
130097
|
const map = new TraceMap(parsed, mapUrl);
|
|
@@ -141817,8 +141817,8 @@ var require_semver = __commonJS({
|
|
|
141817
141817
|
}
|
|
141818
141818
|
}
|
|
141819
141819
|
var i2;
|
|
141820
|
-
exports2.parse =
|
|
141821
|
-
function
|
|
141820
|
+
exports2.parse = parse10;
|
|
141821
|
+
function parse10(version4, options) {
|
|
141822
141822
|
if (!options || typeof options !== "object") {
|
|
141823
141823
|
options = {
|
|
141824
141824
|
loose: !!options,
|
|
@@ -141846,12 +141846,12 @@ var require_semver = __commonJS({
|
|
|
141846
141846
|
}
|
|
141847
141847
|
exports2.valid = valid;
|
|
141848
141848
|
function valid(version4, options) {
|
|
141849
|
-
var v5 =
|
|
141849
|
+
var v5 = parse10(version4, options);
|
|
141850
141850
|
return v5 ? v5.version : null;
|
|
141851
141851
|
}
|
|
141852
141852
|
exports2.clean = clean;
|
|
141853
141853
|
function clean(version4, options) {
|
|
141854
|
-
var s2 =
|
|
141854
|
+
var s2 = parse10(version4.trim().replace(/^[=v]+/, ""), options);
|
|
141855
141855
|
return s2 ? s2.version : null;
|
|
141856
141856
|
}
|
|
141857
141857
|
exports2.SemVer = SemVer;
|
|
@@ -142083,8 +142083,8 @@ var require_semver = __commonJS({
|
|
|
142083
142083
|
if (eq(version1, version22)) {
|
|
142084
142084
|
return null;
|
|
142085
142085
|
} else {
|
|
142086
|
-
var v1 =
|
|
142087
|
-
var v22 =
|
|
142086
|
+
var v1 = parse10(version1);
|
|
142087
|
+
var v22 = parse10(version22);
|
|
142088
142088
|
var prefix = "";
|
|
142089
142089
|
if (v1.prerelease.length || v22.prerelease.length) {
|
|
142090
142090
|
prefix = "pre";
|
|
@@ -142788,7 +142788,7 @@ var require_semver = __commonJS({
|
|
|
142788
142788
|
}
|
|
142789
142789
|
exports2.prerelease = prerelease;
|
|
142790
142790
|
function prerelease(version4, options) {
|
|
142791
|
-
var parsed =
|
|
142791
|
+
var parsed = parse10(version4, options);
|
|
142792
142792
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
142793
142793
|
}
|
|
142794
142794
|
exports2.intersects = intersects;
|
|
@@ -142825,7 +142825,7 @@ var require_semver = __commonJS({
|
|
|
142825
142825
|
if (match2 === null) {
|
|
142826
142826
|
return null;
|
|
142827
142827
|
}
|
|
142828
|
-
return
|
|
142828
|
+
return parse10(match2[2] + "." + (match2[3] || "0") + "." + (match2[4] || "0"), options);
|
|
142829
142829
|
}
|
|
142830
142830
|
}
|
|
142831
142831
|
});
|
|
@@ -144236,7 +144236,7 @@ var require_parse4 = __commonJS({
|
|
|
144236
144236
|
var token;
|
|
144237
144237
|
var key;
|
|
144238
144238
|
var root;
|
|
144239
|
-
module2.exports = function
|
|
144239
|
+
module2.exports = function parse10(text, reviver) {
|
|
144240
144240
|
source = String(text);
|
|
144241
144241
|
parseState = "start";
|
|
144242
144242
|
stack = [];
|
|
@@ -145292,10 +145292,10 @@ var require_stringify = __commonJS({
|
|
|
145292
145292
|
// node_modules/.pnpm/json5@2.2.3/node_modules/json5/lib/index.js
|
|
145293
145293
|
var require_lib21 = __commonJS({
|
|
145294
145294
|
"node_modules/.pnpm/json5@2.2.3/node_modules/json5/lib/index.js"(exports2, module2) {
|
|
145295
|
-
var
|
|
145295
|
+
var parse10 = require_parse4();
|
|
145296
145296
|
var stringify2 = require_stringify();
|
|
145297
145297
|
var JSON5 = {
|
|
145298
|
-
parse:
|
|
145298
|
+
parse: parse10,
|
|
145299
145299
|
stringify: stringify2
|
|
145300
145300
|
};
|
|
145301
145301
|
module2.exports = JSON5;
|
|
@@ -145850,7 +145850,7 @@ var require_parse5 = __commonJS({
|
|
|
145850
145850
|
return false;
|
|
145851
145851
|
});
|
|
145852
145852
|
}
|
|
145853
|
-
module2.exports = function
|
|
145853
|
+
module2.exports = function parse10(all, queries) {
|
|
145854
145854
|
if (!Array.isArray(queries)) queries = [queries];
|
|
145855
145855
|
return flatten3(
|
|
145856
145856
|
queries.map(function(block) {
|
|
@@ -146349,7 +146349,7 @@ var require_browserslist = __commonJS({
|
|
|
146349
146349
|
var path9 = require("path");
|
|
146350
146350
|
var e2c = require_versions();
|
|
146351
146351
|
var BrowserslistError = require_error();
|
|
146352
|
-
var
|
|
146352
|
+
var parse10 = require_parse5();
|
|
146353
146353
|
var env2 = require_node4();
|
|
146354
146354
|
var YEAR = 365.259641 * 24 * 60 * 60 * 1e3;
|
|
146355
146355
|
var ANDROID_EVERGREEN_FIRST = "37";
|
|
@@ -146609,7 +146609,7 @@ var require_browserslist = __commonJS({
|
|
|
146609
146609
|
return typeof flags === "string" && (flags.indexOf("y") >= 0 || withPartial && flags.indexOf("a") >= 0);
|
|
146610
146610
|
}
|
|
146611
146611
|
function resolve9(queries, context) {
|
|
146612
|
-
return
|
|
146612
|
+
return parse10(QUERIES, queries).reduce(function(result, node, index) {
|
|
146613
146613
|
if (node.not && index === 0) {
|
|
146614
146614
|
throw new BrowserslistError(
|
|
146615
146615
|
"Write any browsers query (for instance, `defaults`) before `" + node.query + "`"
|
|
@@ -146715,7 +146715,7 @@ var require_browserslist = __commonJS({
|
|
|
146715
146715
|
opts = prepareOpts(opts);
|
|
146716
146716
|
queries = prepareQueries(queries, opts);
|
|
146717
146717
|
checkQueries(queries);
|
|
146718
|
-
return
|
|
146718
|
+
return parse10(QUERIES, queries);
|
|
146719
146719
|
};
|
|
146720
146720
|
browserslist.cache = {};
|
|
146721
146721
|
browserslist.data = {};
|
|
@@ -160588,14 +160588,14 @@ var require_parse6 = __commonJS({
|
|
|
160588
160588
|
var _index2 = require_parser();
|
|
160589
160589
|
var _normalizeOpts = require_normalize_opts();
|
|
160590
160590
|
var _rewriteStackTrace = require_rewrite_stack_trace();
|
|
160591
|
-
var parseRunner = _gensync()(function*
|
|
160591
|
+
var parseRunner = _gensync()(function* parse11(code, opts) {
|
|
160592
160592
|
const config = yield* (0, _index.default)(opts);
|
|
160593
160593
|
if (config === null) {
|
|
160594
160594
|
return null;
|
|
160595
160595
|
}
|
|
160596
160596
|
return yield* (0, _index2.default)(config.passes, (0, _normalizeOpts.default)(config), code);
|
|
160597
160597
|
});
|
|
160598
|
-
var
|
|
160598
|
+
var parse10 = exports2.parse = function parse11(code, opts, callback) {
|
|
160599
160599
|
if (typeof opts === "function") {
|
|
160600
160600
|
callback = opts;
|
|
160601
160601
|
opts = void 0;
|
|
@@ -161475,7 +161475,7 @@ var require_parse7 = __commonJS({
|
|
|
161475
161475
|
var syntaxError2 = (type, char) => {
|
|
161476
161476
|
return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
|
|
161477
161477
|
};
|
|
161478
|
-
var
|
|
161478
|
+
var parse10 = (input, options) => {
|
|
161479
161479
|
if (typeof input !== "string") {
|
|
161480
161480
|
throw new TypeError("Expected a string");
|
|
161481
161481
|
}
|
|
@@ -161624,7 +161624,7 @@ var require_parse7 = __commonJS({
|
|
|
161624
161624
|
output = token.close = `)$))${extglobStar}`;
|
|
161625
161625
|
}
|
|
161626
161626
|
if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
|
|
161627
|
-
const expression =
|
|
161627
|
+
const expression = parse10(rest, { ...options, fastpaths: false }).output;
|
|
161628
161628
|
output = token.close = `)${expression})${extglobStar})`;
|
|
161629
161629
|
}
|
|
161630
161630
|
if (token.prev.type === "bos") {
|
|
@@ -162149,7 +162149,7 @@ var require_parse7 = __commonJS({
|
|
|
162149
162149
|
}
|
|
162150
162150
|
return state;
|
|
162151
162151
|
};
|
|
162152
|
-
|
|
162152
|
+
parse10.fastpaths = (input, options) => {
|
|
162153
162153
|
const opts = { ...options };
|
|
162154
162154
|
const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH3, opts.maxLength) : MAX_LENGTH3;
|
|
162155
162155
|
const len = input.length;
|
|
@@ -162215,7 +162215,7 @@ var require_parse7 = __commonJS({
|
|
|
162215
162215
|
}
|
|
162216
162216
|
return source;
|
|
162217
162217
|
};
|
|
162218
|
-
module2.exports =
|
|
162218
|
+
module2.exports = parse10;
|
|
162219
162219
|
}
|
|
162220
162220
|
});
|
|
162221
162221
|
|
|
@@ -162225,7 +162225,7 @@ var require_picomatch = __commonJS({
|
|
|
162225
162225
|
"use strict";
|
|
162226
162226
|
var path9 = require("path");
|
|
162227
162227
|
var scan2 = require_scan();
|
|
162228
|
-
var
|
|
162228
|
+
var parse10 = require_parse7();
|
|
162229
162229
|
var utils3 = require_utils6();
|
|
162230
162230
|
var constants5 = require_constants3();
|
|
162231
162231
|
var isObject3 = (val) => val && typeof val === "object" && !Array.isArray(val);
|
|
@@ -162313,7 +162313,7 @@ var require_picomatch = __commonJS({
|
|
|
162313
162313
|
picomatch3.isMatch = (str, patterns, options) => picomatch3(patterns, options)(str);
|
|
162314
162314
|
picomatch3.parse = (pattern, options) => {
|
|
162315
162315
|
if (Array.isArray(pattern)) return pattern.map((p2) => picomatch3.parse(p2, options));
|
|
162316
|
-
return
|
|
162316
|
+
return parse10(pattern, { ...options, fastpaths: false });
|
|
162317
162317
|
};
|
|
162318
162318
|
picomatch3.scan = (input, options) => scan2(input, options);
|
|
162319
162319
|
picomatch3.compileRe = (state, options, returnOutput = false, returnState = false) => {
|
|
@@ -162339,10 +162339,10 @@ var require_picomatch = __commonJS({
|
|
|
162339
162339
|
}
|
|
162340
162340
|
let parsed = { negated: false, fastpaths: true };
|
|
162341
162341
|
if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
|
|
162342
|
-
parsed.output =
|
|
162342
|
+
parsed.output = parse10.fastpaths(input, options);
|
|
162343
162343
|
}
|
|
162344
162344
|
if (!parsed.output) {
|
|
162345
|
-
parsed =
|
|
162345
|
+
parsed = parse10(input, options);
|
|
162346
162346
|
}
|
|
162347
162347
|
return picomatch3.compileRe(parsed, options, returnOutput, returnState);
|
|
162348
162348
|
};
|
|
@@ -162515,7 +162515,7 @@ var require_path_parse = __commonJS({
|
|
|
162515
162515
|
var require_node_modules_paths = __commonJS({
|
|
162516
162516
|
"node_modules/.pnpm/resolve@1.22.8/node_modules/resolve/lib/node-modules-paths.js"(exports2, module2) {
|
|
162517
162517
|
var path9 = require("path");
|
|
162518
|
-
var
|
|
162518
|
+
var parse10 = path9.parse || require_path_parse();
|
|
162519
162519
|
var getNodeModulesDirs = function getNodeModulesDirs2(absoluteStart, modules) {
|
|
162520
162520
|
var prefix = "/";
|
|
162521
162521
|
if (/^([A-Za-z]:)/.test(absoluteStart)) {
|
|
@@ -162524,10 +162524,10 @@ var require_node_modules_paths = __commonJS({
|
|
|
162524
162524
|
prefix = "\\\\";
|
|
162525
162525
|
}
|
|
162526
162526
|
var paths = [absoluteStart];
|
|
162527
|
-
var parsed =
|
|
162527
|
+
var parsed = parse10(absoluteStart);
|
|
162528
162528
|
while (parsed.dir !== paths[paths.length - 1]) {
|
|
162529
162529
|
paths.push(parsed.dir);
|
|
162530
|
-
parsed =
|
|
162530
|
+
parsed = parse10(parsed.dir);
|
|
162531
162531
|
}
|
|
162532
162532
|
return paths.reduce(function(dirs, aPath) {
|
|
162533
162533
|
return dirs.concat(modules.map(function(moduleDir) {
|
|
@@ -167499,9 +167499,9 @@ var require_cjs3 = __commonJS({
|
|
|
167499
167499
|
var peerDependencies2 = {
|
|
167500
167500
|
rollup: "^2.68.0||^3.0.0||^4.0.0"
|
|
167501
167501
|
};
|
|
167502
|
-
function tryParse(
|
|
167502
|
+
function tryParse(parse10, code, id) {
|
|
167503
167503
|
try {
|
|
167504
|
-
return
|
|
167504
|
+
return parse10(code, { allowReturnOutsideFunction: true });
|
|
167505
167505
|
} catch (err) {
|
|
167506
167506
|
err.message += ` in ${id}`;
|
|
167507
167507
|
throw err;
|
|
@@ -167513,8 +167513,8 @@ var require_cjs3 = __commonJS({
|
|
|
167513
167513
|
const firstpass = ignoreGlobal ? firstpassNoGlobal : firstpassGlobal;
|
|
167514
167514
|
return firstpass.test(code);
|
|
167515
167515
|
}
|
|
167516
|
-
function analyzeTopLevelStatements(
|
|
167517
|
-
const ast = tryParse(
|
|
167516
|
+
function analyzeTopLevelStatements(parse10, code, id) {
|
|
167517
|
+
const ast = tryParse(parse10, code, id);
|
|
167518
167518
|
let isEsModule = false;
|
|
167519
167519
|
let hasDefaultExport = false;
|
|
167520
167520
|
let hasNamedExports = false;
|
|
@@ -168551,8 +168551,8 @@ ${exportDeclarations.join(";\n")};`;
|
|
|
168551
168551
|
}
|
|
168552
168552
|
var exportsPattern = /^(?:module\.)?exports(?:\.([a-zA-Z_$][a-zA-Z_$0-9]*))?$/;
|
|
168553
168553
|
var functionType2 = /^(?:FunctionDeclaration|FunctionExpression|ArrowFunctionExpression)$/;
|
|
168554
|
-
async function transformCommonjs(
|
|
168555
|
-
const ast = astCache || tryParse(
|
|
168554
|
+
async function transformCommonjs(parse10, code, id, isEsModule, ignoreGlobal, ignoreRequire, ignoreDynamicRequires, getIgnoreTryCatchRequireStatementMode, sourceMap, isDynamicRequireModulesEnabled, dynamicRequireModules, commonDir, astCache, defaultIsModuleExports, needsRequireWrapper, resolveRequireSourcesAndUpdateMeta, isRequired, checkDynamicRequire, commonjsMeta) {
|
|
168555
|
+
const ast = astCache || tryParse(parse10, code, id);
|
|
168556
168556
|
const magicString = new MagicString2(code);
|
|
168557
168557
|
const uses = {
|
|
168558
168558
|
module: false,
|
|
@@ -171787,9 +171787,9 @@ var require_minimatch2 = __commonJS({
|
|
|
171787
171787
|
throw new TypeError("pattern is too long");
|
|
171788
171788
|
}
|
|
171789
171789
|
};
|
|
171790
|
-
Minimatch2.prototype.parse =
|
|
171790
|
+
Minimatch2.prototype.parse = parse10;
|
|
171791
171791
|
var SUBPARSE = {};
|
|
171792
|
-
function
|
|
171792
|
+
function parse10(pattern, isSub) {
|
|
171793
171793
|
assertValidPattern2(pattern);
|
|
171794
171794
|
var options = this.options;
|
|
171795
171795
|
if (pattern === "**") {
|
|
@@ -174394,7 +174394,7 @@ var require_parse8 = __commonJS({
|
|
|
174394
174394
|
CHAR_NO_BREAK_SPACE: CHAR_NO_BREAK_SPACE2,
|
|
174395
174395
|
CHAR_ZERO_WIDTH_NOBREAK_SPACE: CHAR_ZERO_WIDTH_NOBREAK_SPACE2
|
|
174396
174396
|
} = require_constants4();
|
|
174397
|
-
var
|
|
174397
|
+
var parse10 = (input, options = {}) => {
|
|
174398
174398
|
if (typeof input !== "string") {
|
|
174399
174399
|
throw new TypeError("Expected a string");
|
|
174400
174400
|
}
|
|
@@ -174594,7 +174594,7 @@ var require_parse8 = __commonJS({
|
|
|
174594
174594
|
push({ type: "eos" });
|
|
174595
174595
|
return ast;
|
|
174596
174596
|
};
|
|
174597
|
-
module2.exports =
|
|
174597
|
+
module2.exports = parse10;
|
|
174598
174598
|
}
|
|
174599
174599
|
});
|
|
174600
174600
|
|
|
@@ -174605,7 +174605,7 @@ var require_braces = __commonJS({
|
|
|
174605
174605
|
var stringify2 = require_stringify2();
|
|
174606
174606
|
var compile2 = require_compile();
|
|
174607
174607
|
var expand3 = require_expand();
|
|
174608
|
-
var
|
|
174608
|
+
var parse10 = require_parse8();
|
|
174609
174609
|
var braces2 = (input, options = {}) => {
|
|
174610
174610
|
let output = [];
|
|
174611
174611
|
if (Array.isArray(input)) {
|
|
@@ -174625,7 +174625,7 @@ var require_braces = __commonJS({
|
|
|
174625
174625
|
}
|
|
174626
174626
|
return output;
|
|
174627
174627
|
};
|
|
174628
|
-
braces2.parse = (input, options = {}) =>
|
|
174628
|
+
braces2.parse = (input, options = {}) => parse10(input, options);
|
|
174629
174629
|
braces2.stringify = (input, options = {}) => {
|
|
174630
174630
|
if (typeof input === "string") {
|
|
174631
174631
|
return stringify2(braces2.parse(input, options), options);
|
|
@@ -178919,7 +178919,7 @@ var require_semver2 = __commonJS({
|
|
|
178919
178919
|
var require_parse9 = __commonJS({
|
|
178920
178920
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js"(exports2, module2) {
|
|
178921
178921
|
var SemVer = require_semver2();
|
|
178922
|
-
var
|
|
178922
|
+
var parse10 = (version4, options, throwErrors = false) => {
|
|
178923
178923
|
if (version4 instanceof SemVer) {
|
|
178924
178924
|
return version4;
|
|
178925
178925
|
}
|
|
@@ -178932,16 +178932,16 @@ var require_parse9 = __commonJS({
|
|
|
178932
178932
|
throw er2;
|
|
178933
178933
|
}
|
|
178934
178934
|
};
|
|
178935
|
-
module2.exports =
|
|
178935
|
+
module2.exports = parse10;
|
|
178936
178936
|
}
|
|
178937
178937
|
});
|
|
178938
178938
|
|
|
178939
178939
|
// node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/valid.js
|
|
178940
178940
|
var require_valid = __commonJS({
|
|
178941
178941
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/valid.js"(exports2, module2) {
|
|
178942
|
-
var
|
|
178942
|
+
var parse10 = require_parse9();
|
|
178943
178943
|
var valid = (version4, options) => {
|
|
178944
|
-
const v5 =
|
|
178944
|
+
const v5 = parse10(version4, options);
|
|
178945
178945
|
return v5 ? v5.version : null;
|
|
178946
178946
|
};
|
|
178947
178947
|
module2.exports = valid;
|
|
@@ -178951,9 +178951,9 @@ var require_valid = __commonJS({
|
|
|
178951
178951
|
// node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/clean.js
|
|
178952
178952
|
var require_clean = __commonJS({
|
|
178953
178953
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/clean.js"(exports2, module2) {
|
|
178954
|
-
var
|
|
178954
|
+
var parse10 = require_parse9();
|
|
178955
178955
|
var clean = (version4, options) => {
|
|
178956
|
-
const s2 =
|
|
178956
|
+
const s2 = parse10(version4.trim().replace(/^[=v]+/, ""), options);
|
|
178957
178957
|
return s2 ? s2.version : null;
|
|
178958
178958
|
};
|
|
178959
178959
|
module2.exports = clean;
|
|
@@ -178986,10 +178986,10 @@ var require_inc = __commonJS({
|
|
|
178986
178986
|
// node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/diff.js
|
|
178987
178987
|
var require_diff = __commonJS({
|
|
178988
178988
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/diff.js"(exports2, module2) {
|
|
178989
|
-
var
|
|
178989
|
+
var parse10 = require_parse9();
|
|
178990
178990
|
var diff2 = (version1, version22) => {
|
|
178991
|
-
const v1 =
|
|
178992
|
-
const v22 =
|
|
178991
|
+
const v1 = parse10(version1, null, true);
|
|
178992
|
+
const v22 = parse10(version22, null, true);
|
|
178993
178993
|
const comparison = v1.compare(v22);
|
|
178994
178994
|
if (comparison === 0) {
|
|
178995
178995
|
return null;
|
|
@@ -179057,9 +179057,9 @@ var require_patch = __commonJS({
|
|
|
179057
179057
|
// node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/prerelease.js
|
|
179058
179058
|
var require_prerelease = __commonJS({
|
|
179059
179059
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/prerelease.js"(exports2, module2) {
|
|
179060
|
-
var
|
|
179060
|
+
var parse10 = require_parse9();
|
|
179061
179061
|
var prerelease = (version4, options) => {
|
|
179062
|
-
const parsed =
|
|
179062
|
+
const parsed = parse10(version4, options);
|
|
179063
179063
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
179064
179064
|
};
|
|
179065
179065
|
module2.exports = prerelease;
|
|
@@ -179231,7 +179231,7 @@ var require_cmp = __commonJS({
|
|
|
179231
179231
|
var require_coerce = __commonJS({
|
|
179232
179232
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/coerce.js"(exports2, module2) {
|
|
179233
179233
|
var SemVer = require_semver2();
|
|
179234
|
-
var
|
|
179234
|
+
var parse10 = require_parse9();
|
|
179235
179235
|
var { safeRe: re3, t: t2 } = require_re();
|
|
179236
179236
|
var coerce2 = (version4, options) => {
|
|
179237
179237
|
if (version4 instanceof SemVer) {
|
|
@@ -179266,7 +179266,7 @@ var require_coerce = __commonJS({
|
|
|
179266
179266
|
const patch = match2[4] || "0";
|
|
179267
179267
|
const prerelease = options.includePrerelease && match2[5] ? `-${match2[5]}` : "";
|
|
179268
179268
|
const build = options.includePrerelease && match2[6] ? `+${match2[6]}` : "";
|
|
179269
|
-
return
|
|
179269
|
+
return parse10(`${major}.${minor}.${patch}${prerelease}${build}`, options);
|
|
179270
179270
|
};
|
|
179271
179271
|
module2.exports = coerce2;
|
|
179272
179272
|
}
|
|
@@ -180246,7 +180246,7 @@ var require_semver3 = __commonJS({
|
|
|
180246
180246
|
var constants5 = require_constants6();
|
|
180247
180247
|
var SemVer = require_semver2();
|
|
180248
180248
|
var identifiers = require_identifiers();
|
|
180249
|
-
var
|
|
180249
|
+
var parse10 = require_parse9();
|
|
180250
180250
|
var valid = require_valid();
|
|
180251
180251
|
var clean = require_clean();
|
|
180252
180252
|
var inc = require_inc();
|
|
@@ -180284,7 +180284,7 @@ var require_semver3 = __commonJS({
|
|
|
180284
180284
|
var simplifyRange = require_simplify();
|
|
180285
180285
|
var subset = require_subset();
|
|
180286
180286
|
module2.exports = {
|
|
180287
|
-
parse:
|
|
180287
|
+
parse: parse10,
|
|
180288
180288
|
valid,
|
|
180289
180289
|
clean,
|
|
180290
180290
|
inc,
|
|
@@ -202262,12 +202262,7 @@ function convertRpts2LogLevel(logLevel) {
|
|
|
202262
202262
|
async function createInput(options) {
|
|
202263
202263
|
const { correctPaths: correctPaths2 } = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
202264
202264
|
if (global.NX_GRAPH_CREATION) return {};
|
|
202265
|
-
const mainEntryFileName = options.outputFileName || options.main;
|
|
202266
202265
|
const input = {};
|
|
202267
|
-
input[(0, import_node_path13.parse)(mainEntryFileName).name] = (0, import_node_path13.join)(
|
|
202268
|
-
options.config.workspaceRoot,
|
|
202269
|
-
options.main
|
|
202270
|
-
);
|
|
202271
202266
|
options.additionalEntryPoints?.forEach((entry) => {
|
|
202272
202267
|
const entryPoint = correctPaths2((0, import_node_path13.join)(options.config.workspaceRoot, entry));
|
|
202273
202268
|
const entryName = `.${entryPoint.replace(
|
|
@@ -202302,7 +202297,8 @@ async function createTsCompilerOptions(parsedCommandLine, options, dependencies,
|
|
|
202302
202297
|
declaration: true,
|
|
202303
202298
|
skipLibCheck: true,
|
|
202304
202299
|
skipDefaultLibCheck: true,
|
|
202305
|
-
paths: compilerOptionPaths
|
|
202300
|
+
paths: compilerOptionPaths,
|
|
202301
|
+
pathsBasePath: baseDir
|
|
202306
202302
|
};
|
|
202307
202303
|
if (parsedCommandLine.options.module === import_typescript.ModuleKind.CommonJS) {
|
|
202308
202304
|
compilerOptions["module"] = "ESNext";
|