@storm-software/workspace-tools 1.182.1 → 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 +1 -1
- 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
package/index.js
CHANGED
|
@@ -305,7 +305,7 @@ var require_main = __commonJS({
|
|
|
305
305
|
var packageJson = require_package();
|
|
306
306
|
var version5 = packageJson.version;
|
|
307
307
|
var LINE = /(?:^|^)\s*(?:export\s+)?([\w.-]+)(?:\s*=\s*?|:\s+?)(\s*'(?:\\'|[^'])*'|\s*"(?:\\"|[^"])*"|\s*`(?:\\`|[^`])*`|[^#\r\n]+)?\s*(?:#.*)?(?:$|$)/mg;
|
|
308
|
-
function
|
|
308
|
+
function parse12(src) {
|
|
309
309
|
const obj = {};
|
|
310
310
|
let lines = src.toString();
|
|
311
311
|
lines = lines.replace(/\r\n?/mg, "\n");
|
|
@@ -548,7 +548,7 @@ var require_main = __commonJS({
|
|
|
548
548
|
_parseVault,
|
|
549
549
|
config,
|
|
550
550
|
decrypt,
|
|
551
|
-
parse:
|
|
551
|
+
parse: parse12,
|
|
552
552
|
populate
|
|
553
553
|
};
|
|
554
554
|
module2.exports.configDotenv = DotenvModule.configDotenv;
|
|
@@ -1060,9 +1060,9 @@ var require_jiti = __commonJS({
|
|
|
1060
1060
|
}
|
|
1061
1061
|
module3.exports = SemVer;
|
|
1062
1062
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/clean.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
1063
|
-
const
|
|
1063
|
+
const parse12 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js");
|
|
1064
1064
|
module3.exports = (version5, options) => {
|
|
1065
|
-
const s2 =
|
|
1065
|
+
const s2 = parse12(version5.trim().replace(/^[=v]+/, ""), options);
|
|
1066
1066
|
return s2 ? s2.version : null;
|
|
1067
1067
|
};
|
|
1068
1068
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/cmp.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
@@ -1092,7 +1092,7 @@ var require_jiti = __commonJS({
|
|
|
1092
1092
|
}
|
|
1093
1093
|
};
|
|
1094
1094
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/coerce.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
1095
|
-
const SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js"),
|
|
1095
|
+
const SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js"), parse12 = __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");
|
|
1096
1096
|
module3.exports = (version5, options) => {
|
|
1097
1097
|
if (version5 instanceof SemVer) return version5;
|
|
1098
1098
|
if ("number" == typeof version5 && (version5 = String(version5)), "string" != typeof version5) return null;
|
|
@@ -1105,7 +1105,7 @@ var require_jiti = __commonJS({
|
|
|
1105
1105
|
} else match2 = version5.match(options.includePrerelease ? re3[t2.COERCEFULL] : re3[t2.COERCE]);
|
|
1106
1106
|
if (null === match2) return null;
|
|
1107
1107
|
const major = match2[2], minor = match2[3] || "0", patch = match2[4] || "0", prerelease2 = options.includePrerelease && match2[5] ? `-${match2[5]}` : "", build2 = options.includePrerelease && match2[6] ? `+${match2[6]}` : "";
|
|
1108
|
-
return
|
|
1108
|
+
return parse12(`${major}.${minor}.${patch}${prerelease2}${build2}`, options);
|
|
1109
1109
|
};
|
|
1110
1110
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare-build.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
1111
1111
|
const SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js");
|
|
@@ -1120,9 +1120,9 @@ var require_jiti = __commonJS({
|
|
|
1120
1120
|
const SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js");
|
|
1121
1121
|
module3.exports = (a2, b6, loose) => new SemVer(a2, loose).compare(new SemVer(b6, loose));
|
|
1122
1122
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/diff.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
1123
|
-
const
|
|
1123
|
+
const parse12 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js");
|
|
1124
1124
|
module3.exports = (version1, version22) => {
|
|
1125
|
-
const v1 =
|
|
1125
|
+
const v1 = parse12(version1, null, true), v22 = parse12(version22, null, true), comparison = v1.compare(v22);
|
|
1126
1126
|
if (0 === comparison) return null;
|
|
1127
1127
|
const v1Higher = comparison > 0, highVersion = v1Higher ? v1 : v22, lowVersion = v1Higher ? v22 : v1, highHasPre = !!highVersion.prerelease.length;
|
|
1128
1128
|
if (!!lowVersion.prerelease.length && !highHasPre) return lowVersion.patch || lowVersion.minor ? highVersion.patch ? "patch" : highVersion.minor ? "minor" : "major" : "major";
|
|
@@ -1178,9 +1178,9 @@ var require_jiti = __commonJS({
|
|
|
1178
1178
|
const SemVer = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js");
|
|
1179
1179
|
module3.exports = (a2, loose) => new SemVer(a2, loose).patch;
|
|
1180
1180
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/prerelease.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
1181
|
-
const
|
|
1181
|
+
const parse12 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js");
|
|
1182
1182
|
module3.exports = (version5, options) => {
|
|
1183
|
-
const parsed =
|
|
1183
|
+
const parsed = parse12(version5, options);
|
|
1184
1184
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
1185
1185
|
};
|
|
1186
1186
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/rcompare.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
@@ -1203,14 +1203,14 @@ var require_jiti = __commonJS({
|
|
|
1203
1203
|
const compareBuild = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare-build.js");
|
|
1204
1204
|
module3.exports = (list, loose) => list.sort((a2, b6) => compareBuild(a2, b6, loose));
|
|
1205
1205
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/valid.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
1206
|
-
const
|
|
1206
|
+
const parse12 = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js");
|
|
1207
1207
|
module3.exports = (version5, options) => {
|
|
1208
|
-
const v5 =
|
|
1208
|
+
const v5 = parse12(version5, options);
|
|
1209
1209
|
return v5 ? v5.version : null;
|
|
1210
1210
|
};
|
|
1211
1211
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/index.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
1212
|
-
const internalRe = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/re.js"), constants6 = __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"),
|
|
1213
|
-
module3.exports = { parse:
|
|
1212
|
+
const internalRe = __webpack_require__2("./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/re.js"), constants6 = __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"), parse12 = __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"), prerelease2 = __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");
|
|
1213
|
+
module3.exports = { parse: parse12, valid, clean, inc, diff: diff2, major, minor, patch, prerelease: prerelease2, 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: constants6.SEMVER_SPEC_VERSION, RELEASE_TYPES: constants6.RELEASE_TYPES, compareIdentifiers: identifiers.compareIdentifiers, rcompareIdentifiers: identifiers.rcompareIdentifiers };
|
|
1214
1214
|
}, "./node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/constants.js": (module3) => {
|
|
1215
1215
|
const MAX_SAFE_INTEGER2 = Number.MAX_SAFE_INTEGER || 9007199254740991;
|
|
1216
1216
|
module3.exports = { MAX_LENGTH: 256, MAX_SAFE_COMPONENT_LENGTH: 16, MAX_SAFE_BUILD_LENGTH: 250, MAX_SAFE_INTEGER: MAX_SAFE_INTEGER2, RELEASE_TYPES: ["major", "premajor", "minor", "preminor", "patch", "prepatch", "prerelease"], SEMVER_SPEC_VERSION: "2.0.0", FLAG_INCLUDE_PRERELEASE: 1, FLAG_LOOSE: 2 };
|
|
@@ -4775,12 +4775,12 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
4775
4775
|
return { __proto__: null };
|
|
4776
4776
|
}
|
|
4777
4777
|
const AnyMap = function(map, mapUrl) {
|
|
4778
|
-
const parsed =
|
|
4778
|
+
const parsed = parse12(map);
|
|
4779
4779
|
if (!("sections" in parsed)) return new TraceMap(parsed, mapUrl);
|
|
4780
4780
|
const mappings = [], sources = [], sourcesContent = [], names4 = [], ignoreList = [];
|
|
4781
4781
|
return recurse(parsed, mapUrl, mappings, sources, sourcesContent, names4, ignoreList, 0, 0, 1 / 0, 1 / 0), presortedDecodedMap({ version: 3, file: parsed.file, names: names4, sources, sourcesContent, mappings, ignoreList });
|
|
4782
4782
|
};
|
|
4783
|
-
function
|
|
4783
|
+
function parse12(map) {
|
|
4784
4784
|
return "string" == typeof map ? JSON.parse(map) : map;
|
|
4785
4785
|
}
|
|
4786
4786
|
function recurse(input, mapUrl, mappings, sources, sourcesContent, names4, ignoreList, lineOffset, columnOffset, stopLine, stopColumn) {
|
|
@@ -4796,7 +4796,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
4796
4796
|
}
|
|
4797
4797
|
}
|
|
4798
4798
|
function addSection(input, mapUrl, mappings, sources, sourcesContent, names4, ignoreList, lineOffset, columnOffset, stopLine, stopColumn) {
|
|
4799
|
-
const parsed =
|
|
4799
|
+
const parsed = parse12(input);
|
|
4800
4800
|
if ("sections" in parsed) return recurse(...arguments);
|
|
4801
4801
|
const map = new TraceMap(parsed, mapUrl), sourcesOffset = sources.length, namesOffset = names4.length, decoded = decodedMappings(map), { resolvedSources, sourcesContent: contents, ignoreList: ignores } = map;
|
|
4802
4802
|
if (append2(sources, resolvedSources), append2(names4, map.names), contents) append2(sourcesContent, contents);
|
|
@@ -5884,7 +5884,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
5884
5884
|
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");
|
|
5885
5885
|
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*\\*";
|
|
5886
5886
|
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])));
|
|
5887
|
-
function
|
|
5887
|
+
function parse12(version5, options) {
|
|
5888
5888
|
if (options && "object" == typeof options || (options = { loose: !!options, includePrerelease: false }), version5 instanceof SemVer) return version5;
|
|
5889
5889
|
if ("string" != typeof version5) return null;
|
|
5890
5890
|
if (version5.length > MAX_LENGTH3) return null;
|
|
@@ -5916,11 +5916,11 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
5916
5916
|
return id;
|
|
5917
5917
|
}) : this.prerelease = [], this.build = m3[5] ? m3[5].split(".") : [], this.format();
|
|
5918
5918
|
}
|
|
5919
|
-
exports3.parse =
|
|
5920
|
-
var v5 =
|
|
5919
|
+
exports3.parse = parse12, exports3.valid = function(version5, options) {
|
|
5920
|
+
var v5 = parse12(version5, options);
|
|
5921
5921
|
return v5 ? v5.version : null;
|
|
5922
5922
|
}, exports3.clean = function(version5, options) {
|
|
5923
|
-
var s2 =
|
|
5923
|
+
var s2 = parse12(version5.trim().replace(/^[=v]+/, ""), options);
|
|
5924
5924
|
return s2 ? s2.version : null;
|
|
5925
5925
|
}, exports3.SemVer = SemVer, SemVer.prototype.format = function() {
|
|
5926
5926
|
return this.version = this.major + "." + this.minor + "." + this.patch, this.prerelease.length && (this.version += "-" + this.prerelease.join(".")), this.version;
|
|
@@ -5996,7 +5996,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
5996
5996
|
}
|
|
5997
5997
|
}, exports3.diff = function(version1, version22) {
|
|
5998
5998
|
if (eq(version1, version22)) return null;
|
|
5999
|
-
var v1 =
|
|
5999
|
+
var v1 = parse12(version1), v22 = parse12(version22), prefix = "";
|
|
6000
6000
|
if (v1.prerelease.length || v22.prerelease.length) {
|
|
6001
6001
|
prefix = "pre";
|
|
6002
6002
|
var defaultResult = "prerelease";
|
|
@@ -6310,7 +6310,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
6310
6310
|
}, exports3.gtr = function(version5, range, options) {
|
|
6311
6311
|
return outside(version5, range, ">", options);
|
|
6312
6312
|
}, exports3.outside = outside, exports3.prerelease = function(version5, options) {
|
|
6313
|
-
var parsed =
|
|
6313
|
+
var parsed = parse12(version5, options);
|
|
6314
6314
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
6315
6315
|
}, exports3.intersects = function(r1, r22, options) {
|
|
6316
6316
|
return r1 = new Range(r1, options), r22 = new Range(r22, options), r1.intersects(r22);
|
|
@@ -6324,7 +6324,7 @@ Did you specify these with the most recent transformation maps first?`);
|
|
|
6324
6324
|
safeRe[t2.COERCERTL].lastIndex = -1;
|
|
6325
6325
|
} else match2 = version5.match(safeRe[t2.COERCE]);
|
|
6326
6326
|
if (null === match2) return null;
|
|
6327
|
-
return
|
|
6327
|
+
return parse12(match2[2] + "." + (match2[3] || "0") + "." + (match2[4] || "0"), options);
|
|
6328
6328
|
};
|
|
6329
6329
|
}, "./node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js": (module3, __unused_webpack_exports, __webpack_require__2) => {
|
|
6330
6330
|
"use strict";
|
|
@@ -16855,9 +16855,9 @@ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
|
|
|
16855
16855
|
var _node$extra;
|
|
16856
16856
|
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();
|
|
16857
16857
|
}
|
|
16858
|
-
forwardNoArrowParamsConversionAt(node,
|
|
16858
|
+
forwardNoArrowParamsConversionAt(node, parse12) {
|
|
16859
16859
|
let result;
|
|
16860
|
-
return -1 !== this.state.noArrowParamsConversionAt.indexOf(node.start) ? (this.state.noArrowParamsConversionAt.push(this.state.start), result =
|
|
16860
|
+
return -1 !== this.state.noArrowParamsConversionAt.indexOf(node.start) ? (this.state.noArrowParamsConversionAt.push(this.state.start), result = parse12(), this.state.noArrowParamsConversionAt.pop()) : result = parse12(), result;
|
|
16861
16861
|
}
|
|
16862
16862
|
parseParenItem(node, startLoc) {
|
|
16863
16863
|
const newNode = super.parseParenItem(node, startLoc);
|
|
@@ -41763,7 +41763,7 @@ var require_large_numbers = __commonJS({
|
|
|
41763
41763
|
}
|
|
41764
41764
|
}
|
|
41765
41765
|
};
|
|
41766
|
-
var
|
|
41766
|
+
var parse12 = (buf) => {
|
|
41767
41767
|
const pre = buf[0];
|
|
41768
41768
|
const value2 = pre === 128 ? pos(buf.slice(1, buf.length)) : pre === 255 ? twos(buf) : null;
|
|
41769
41769
|
if (value2 === null) {
|
|
@@ -41810,7 +41810,7 @@ var require_large_numbers = __commonJS({
|
|
|
41810
41810
|
var twosComp = (byte) => (255 ^ byte) + 1 & 255;
|
|
41811
41811
|
module2.exports = {
|
|
41812
41812
|
encode: encode2,
|
|
41813
|
-
parse:
|
|
41813
|
+
parse: parse12
|
|
41814
41814
|
};
|
|
41815
41815
|
}
|
|
41816
41816
|
});
|
|
@@ -42205,15 +42205,15 @@ var require_winchars = __commonJS({
|
|
|
42205
42205
|
// node_modules/.pnpm/tar@6.2.1/node_modules/tar/lib/strip-absolute-path.js
|
|
42206
42206
|
var require_strip_absolute_path = __commonJS({
|
|
42207
42207
|
"node_modules/.pnpm/tar@6.2.1/node_modules/tar/lib/strip-absolute-path.js"(exports2, module2) {
|
|
42208
|
-
var { isAbsolute: isAbsolute5, parse:
|
|
42208
|
+
var { isAbsolute: isAbsolute5, parse: parse12 } = require("path").win32;
|
|
42209
42209
|
module2.exports = (path11) => {
|
|
42210
42210
|
let r3 = "";
|
|
42211
|
-
let parsed =
|
|
42211
|
+
let parsed = parse12(path11);
|
|
42212
42212
|
while (isAbsolute5(path11) || parsed.root) {
|
|
42213
42213
|
const root = path11.charAt(0) === "/" && path11.slice(0, 4) !== "//?/" ? "/" : parsed.root;
|
|
42214
42214
|
path11 = path11.slice(root.length);
|
|
42215
42215
|
r3 += root;
|
|
42216
|
-
parsed =
|
|
42216
|
+
parsed = parse12(path11);
|
|
42217
42217
|
}
|
|
42218
42218
|
return [r3, path11];
|
|
42219
42219
|
};
|
|
@@ -44349,12 +44349,12 @@ var require_list = __commonJS({
|
|
|
44349
44349
|
}
|
|
44350
44350
|
};
|
|
44351
44351
|
var listFile = (opt, cb) => {
|
|
44352
|
-
const
|
|
44352
|
+
const parse12 = new Parser3(opt);
|
|
44353
44353
|
const readSize = opt.maxReadSize || 16 * 1024 * 1024;
|
|
44354
44354
|
const file = opt.file;
|
|
44355
44355
|
const p2 = new Promise((resolve10, reject) => {
|
|
44356
|
-
|
|
44357
|
-
|
|
44356
|
+
parse12.on("error", reject);
|
|
44357
|
+
parse12.on("end", resolve10);
|
|
44358
44358
|
fs9.stat(file, (er2, stat4) => {
|
|
44359
44359
|
if (er2) {
|
|
44360
44360
|
reject(er2);
|
|
@@ -44364,7 +44364,7 @@ var require_list = __commonJS({
|
|
|
44364
44364
|
size: stat4.size
|
|
44365
44365
|
});
|
|
44366
44366
|
stream2.on("error", reject);
|
|
44367
|
-
stream2.pipe(
|
|
44367
|
+
stream2.pipe(parse12);
|
|
44368
44368
|
}
|
|
44369
44369
|
});
|
|
44370
44370
|
});
|
|
@@ -44746,7 +44746,7 @@ var require_opts_arg = __commonJS({
|
|
|
44746
44746
|
var require_path_arg = __commonJS({
|
|
44747
44747
|
"node_modules/.pnpm/mkdirp@1.0.4/node_modules/mkdirp/lib/path-arg.js"(exports2, module2) {
|
|
44748
44748
|
var platform4 = process.env.__TESTING_MKDIRP_PLATFORM__ || process.platform;
|
|
44749
|
-
var { resolve: resolve10, parse:
|
|
44749
|
+
var { resolve: resolve10, parse: parse12 } = require("path");
|
|
44750
44750
|
var pathArg = (path11) => {
|
|
44751
44751
|
if (/\0/.test(path11)) {
|
|
44752
44752
|
throw Object.assign(
|
|
@@ -44760,7 +44760,7 @@ var require_path_arg = __commonJS({
|
|
|
44760
44760
|
path11 = resolve10(path11);
|
|
44761
44761
|
if (platform4 === "win32") {
|
|
44762
44762
|
const badWinChars = /[*|"<>?:]/;
|
|
44763
|
-
const { root } =
|
|
44763
|
+
const { root } = parse12(path11);
|
|
44764
44764
|
if (badWinChars.test(path11.substr(root.length))) {
|
|
44765
44765
|
throw Object.assign(new Error("Illegal characters in path."), {
|
|
44766
44766
|
path: path11,
|
|
@@ -46599,7 +46599,7 @@ var require_parse2 = __commonJS({
|
|
|
46599
46599
|
}
|
|
46600
46600
|
return parsed;
|
|
46601
46601
|
}
|
|
46602
|
-
function
|
|
46602
|
+
function parse12(command, args, options) {
|
|
46603
46603
|
if (args && !Array.isArray(args)) {
|
|
46604
46604
|
options = args;
|
|
46605
46605
|
args = null;
|
|
@@ -46618,7 +46618,7 @@ var require_parse2 = __commonJS({
|
|
|
46618
46618
|
};
|
|
46619
46619
|
return options.shell ? parsed : parseNonShell(parsed);
|
|
46620
46620
|
}
|
|
46621
|
-
module2.exports =
|
|
46621
|
+
module2.exports = parse12;
|
|
46622
46622
|
}
|
|
46623
46623
|
});
|
|
46624
46624
|
|
|
@@ -46677,16 +46677,16 @@ var require_cross_spawn = __commonJS({
|
|
|
46677
46677
|
"node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/index.js"(exports2, module2) {
|
|
46678
46678
|
"use strict";
|
|
46679
46679
|
var cp = require("child_process");
|
|
46680
|
-
var
|
|
46680
|
+
var parse12 = require_parse2();
|
|
46681
46681
|
var enoent = require_enoent();
|
|
46682
46682
|
function spawn2(command, args, options) {
|
|
46683
|
-
const parsed =
|
|
46683
|
+
const parsed = parse12(command, args, options);
|
|
46684
46684
|
const spawned = cp.spawn(parsed.command, parsed.args, parsed.options);
|
|
46685
46685
|
enoent.hookChildProcess(spawned, parsed);
|
|
46686
46686
|
return spawned;
|
|
46687
46687
|
}
|
|
46688
46688
|
function spawnSync2(command, args, options) {
|
|
46689
|
-
const parsed =
|
|
46689
|
+
const parsed = parse12(command, args, options);
|
|
46690
46690
|
const result = cp.spawnSync(parsed.command, parsed.args, parsed.options);
|
|
46691
46691
|
result.error = result.error || enoent.verifyENOENTSync(result.status, parsed);
|
|
46692
46692
|
return result;
|
|
@@ -46694,7 +46694,7 @@ var require_cross_spawn = __commonJS({
|
|
|
46694
46694
|
module2.exports = spawn2;
|
|
46695
46695
|
module2.exports.spawn = spawn2;
|
|
46696
46696
|
module2.exports.sync = spawnSync2;
|
|
46697
|
-
module2.exports._parse =
|
|
46697
|
+
module2.exports._parse = parse12;
|
|
46698
46698
|
module2.exports._enoent = enoent;
|
|
46699
46699
|
}
|
|
46700
46700
|
});
|
|
@@ -58799,10 +58799,10 @@ ${f2.toString(16)}\r
|
|
|
58799
58799
|
return Q5(U4, "getHeadersList"), util$3 = { isCTLExcludingHtab: t2, validateCookieName: r3, validateCookiePath: o, validateCookieValue: n2, toIMFDate: c, stringify: y3, getHeadersList: U4 }, util$3;
|
|
58800
58800
|
}
|
|
58801
58801
|
Q5(requireUtil$2, "requireUtil$2");
|
|
58802
|
-
var
|
|
58802
|
+
var parse12;
|
|
58803
58803
|
var hasRequiredParse;
|
|
58804
58804
|
function requireParse() {
|
|
58805
|
-
if (hasRequiredParse) return
|
|
58805
|
+
if (hasRequiredParse) return parse12;
|
|
58806
58806
|
hasRequiredParse = 1;
|
|
58807
58807
|
const { maxNameValuePairSize: e2, maxAttributeValueSize: A2 } = requireConstants$1(), { isCTLExcludingHtab: t2 } = requireUtil$2(), { collectASequenceOfCodePointsFast: r3 } = requireDataUrl(), n2 = require$$0__default;
|
|
58808
58808
|
function o(l2) {
|
|
@@ -58855,7 +58855,7 @@ ${f2.toString(16)}\r
|
|
|
58855
58855
|
} else C5.unparsed ?? (C5.unparsed = []), C5.unparsed.push(`${c}=${I4}`);
|
|
58856
58856
|
return B3(l2, C5);
|
|
58857
58857
|
}
|
|
58858
|
-
return Q5(B3, "parseUnparsedAttributes"),
|
|
58858
|
+
return Q5(B3, "parseUnparsedAttributes"), parse12 = { parseSetCookie: o, parseUnparsedAttributes: B3 }, parse12;
|
|
58859
58859
|
}
|
|
58860
58860
|
Q5(requireParse, "requireParse");
|
|
58861
58861
|
var cookies;
|
|
@@ -60857,7 +60857,7 @@ async function loadDotenv(options) {
|
|
|
60857
60857
|
}
|
|
60858
60858
|
return environment;
|
|
60859
60859
|
}
|
|
60860
|
-
function interpolate(target, source = {},
|
|
60860
|
+
function interpolate(target, source = {}, parse12 = (v5) => v5) {
|
|
60861
60861
|
function getValue(key) {
|
|
60862
60862
|
return source[key] === void 0 ? target[key] : source[key];
|
|
60863
60863
|
}
|
|
@@ -60866,7 +60866,7 @@ function interpolate(target, source = {}, parse13 = (v5) => v5) {
|
|
|
60866
60866
|
return value2;
|
|
60867
60867
|
}
|
|
60868
60868
|
const matches = value2.match(/(.?\${?(?:[\w:]+)?}?)/g) || [];
|
|
60869
|
-
return
|
|
60869
|
+
return parse12(
|
|
60870
60870
|
// eslint-disable-next-line unicorn/no-array-reduce
|
|
60871
60871
|
matches.reduce((newValue, match2) => {
|
|
60872
60872
|
const parts = /(.?)\${?([\w:]+)?}?/g.exec(match2) || [];
|
|
@@ -71401,7 +71401,7 @@ var require_parse3 = __commonJS({
|
|
|
71401
71401
|
CHAR_NO_BREAK_SPACE: CHAR_NO_BREAK_SPACE2,
|
|
71402
71402
|
CHAR_ZERO_WIDTH_NOBREAK_SPACE: CHAR_ZERO_WIDTH_NOBREAK_SPACE2
|
|
71403
71403
|
} = require_constants2();
|
|
71404
|
-
var
|
|
71404
|
+
var parse12 = (input, options = {}) => {
|
|
71405
71405
|
if (typeof input !== "string") {
|
|
71406
71406
|
throw new TypeError("Expected a string");
|
|
71407
71407
|
}
|
|
@@ -71601,7 +71601,7 @@ var require_parse3 = __commonJS({
|
|
|
71601
71601
|
push2({ type: "eos" });
|
|
71602
71602
|
return ast;
|
|
71603
71603
|
};
|
|
71604
|
-
module2.exports =
|
|
71604
|
+
module2.exports = parse12;
|
|
71605
71605
|
}
|
|
71606
71606
|
});
|
|
71607
71607
|
|
|
@@ -71612,7 +71612,7 @@ var require_braces = __commonJS({
|
|
|
71612
71612
|
var stringify3 = require_stringify();
|
|
71613
71613
|
var compile2 = require_compile();
|
|
71614
71614
|
var expand3 = require_expand();
|
|
71615
|
-
var
|
|
71615
|
+
var parse12 = require_parse3();
|
|
71616
71616
|
var braces2 = (input, options = {}) => {
|
|
71617
71617
|
let output3 = [];
|
|
71618
71618
|
if (Array.isArray(input)) {
|
|
@@ -71632,7 +71632,7 @@ var require_braces = __commonJS({
|
|
|
71632
71632
|
}
|
|
71633
71633
|
return output3;
|
|
71634
71634
|
};
|
|
71635
|
-
braces2.parse = (input, options = {}) =>
|
|
71635
|
+
braces2.parse = (input, options = {}) => parse12(input, options);
|
|
71636
71636
|
braces2.stringify = (input, options = {}) => {
|
|
71637
71637
|
if (typeof input === "string") {
|
|
71638
71638
|
return stringify3(braces2.parse(input, options), options);
|
|
@@ -72285,7 +72285,7 @@ var require_parse4 = __commonJS({
|
|
|
72285
72285
|
var syntaxError2 = (type, char) => {
|
|
72286
72286
|
return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
|
|
72287
72287
|
};
|
|
72288
|
-
var
|
|
72288
|
+
var parse12 = (input, options) => {
|
|
72289
72289
|
if (typeof input !== "string") {
|
|
72290
72290
|
throw new TypeError("Expected a string");
|
|
72291
72291
|
}
|
|
@@ -72434,7 +72434,7 @@ var require_parse4 = __commonJS({
|
|
|
72434
72434
|
output3 = token.close = `)$))${extglobStar}`;
|
|
72435
72435
|
}
|
|
72436
72436
|
if (token.inner.includes("*") && (rest2 = remaining()) && /^\.[^\\/.]+$/.test(rest2)) {
|
|
72437
|
-
const expression =
|
|
72437
|
+
const expression = parse12(rest2, { ...options, fastpaths: false }).output;
|
|
72438
72438
|
output3 = token.close = `)${expression})${extglobStar})`;
|
|
72439
72439
|
}
|
|
72440
72440
|
if (token.prev.type === "bos") {
|
|
@@ -72959,7 +72959,7 @@ var require_parse4 = __commonJS({
|
|
|
72959
72959
|
}
|
|
72960
72960
|
return state;
|
|
72961
72961
|
};
|
|
72962
|
-
|
|
72962
|
+
parse12.fastpaths = (input, options) => {
|
|
72963
72963
|
const opts = { ...options };
|
|
72964
72964
|
const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH3, opts.maxLength) : MAX_LENGTH3;
|
|
72965
72965
|
const len = input.length;
|
|
@@ -73025,7 +73025,7 @@ var require_parse4 = __commonJS({
|
|
|
73025
73025
|
}
|
|
73026
73026
|
return source;
|
|
73027
73027
|
};
|
|
73028
|
-
module2.exports =
|
|
73028
|
+
module2.exports = parse12;
|
|
73029
73029
|
}
|
|
73030
73030
|
});
|
|
73031
73031
|
|
|
@@ -73035,7 +73035,7 @@ var require_picomatch = __commonJS({
|
|
|
73035
73035
|
"use strict";
|
|
73036
73036
|
var path11 = require("path");
|
|
73037
73037
|
var scan2 = require_scan();
|
|
73038
|
-
var
|
|
73038
|
+
var parse12 = require_parse4();
|
|
73039
73039
|
var utils3 = require_utils4();
|
|
73040
73040
|
var constants6 = require_constants3();
|
|
73041
73041
|
var isObject4 = (val) => val && typeof val === "object" && !Array.isArray(val);
|
|
@@ -73123,7 +73123,7 @@ var require_picomatch = __commonJS({
|
|
|
73123
73123
|
picomatch3.isMatch = (str, patterns, options) => picomatch3(patterns, options)(str);
|
|
73124
73124
|
picomatch3.parse = (pattern, options) => {
|
|
73125
73125
|
if (Array.isArray(pattern)) return pattern.map((p2) => picomatch3.parse(p2, options));
|
|
73126
|
-
return
|
|
73126
|
+
return parse12(pattern, { ...options, fastpaths: false });
|
|
73127
73127
|
};
|
|
73128
73128
|
picomatch3.scan = (input, options) => scan2(input, options);
|
|
73129
73129
|
picomatch3.compileRe = (state, options, returnOutput = false, returnState = false) => {
|
|
@@ -73149,10 +73149,10 @@ var require_picomatch = __commonJS({
|
|
|
73149
73149
|
}
|
|
73150
73150
|
let parsed = { negated: false, fastpaths: true };
|
|
73151
73151
|
if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
|
|
73152
|
-
parsed.output =
|
|
73152
|
+
parsed.output = parse12.fastpaths(input, options);
|
|
73153
73153
|
}
|
|
73154
73154
|
if (!parsed.output) {
|
|
73155
|
-
parsed =
|
|
73155
|
+
parsed = parse12(input, options);
|
|
73156
73156
|
}
|
|
73157
73157
|
return picomatch3.compileRe(parsed, options, returnOutput, returnState);
|
|
73158
73158
|
};
|
|
@@ -73388,7 +73388,7 @@ var require_native = __commonJS({
|
|
|
73388
73388
|
);
|
|
73389
73389
|
}
|
|
73390
73390
|
};
|
|
73391
|
-
var { parse:
|
|
73391
|
+
var { parse: parse12, parseAsync: parseAsync3, xxhashBase64Url: xxhashBase64Url2, xxhashBase36: xxhashBase362, xxhashBase16: xxhashBase162 } = requireWithFriendlyError(
|
|
73392
73392
|
existsSync11(path11.join(__dirname, localName)) ? localName : `@rollup/rollup-${packageBase}`
|
|
73393
73393
|
);
|
|
73394
73394
|
function getPackageBase() {
|
|
@@ -73416,7 +73416,7 @@ ${Object.entries(bindingsByPlatformAndArch).flatMap(
|
|
|
73416
73416
|
If this is important to you, please consider supporting Rollup to make a native build for your platform and architecture available.`
|
|
73417
73417
|
);
|
|
73418
73418
|
}
|
|
73419
|
-
module2.exports.parse =
|
|
73419
|
+
module2.exports.parse = parse12;
|
|
73420
73420
|
module2.exports.parseAsync = parseAsync3;
|
|
73421
73421
|
module2.exports.xxhashBase64Url = xxhashBase64Url2;
|
|
73422
73422
|
module2.exports.xxhashBase36 = xxhashBase362;
|
|
@@ -117338,14 +117338,14 @@ var require_lib7 = __commonJS({
|
|
|
117338
117338
|
super.checkParams(node, false, true);
|
|
117339
117339
|
this.scope.exit();
|
|
117340
117340
|
}
|
|
117341
|
-
forwardNoArrowParamsConversionAt(node,
|
|
117341
|
+
forwardNoArrowParamsConversionAt(node, parse13) {
|
|
117342
117342
|
let result;
|
|
117343
117343
|
if (this.state.noArrowParamsConversionAt.indexOf(node.start) !== -1) {
|
|
117344
117344
|
this.state.noArrowParamsConversionAt.push(this.state.start);
|
|
117345
|
-
result =
|
|
117345
|
+
result = parse13();
|
|
117346
117346
|
this.state.noArrowParamsConversionAt.pop();
|
|
117347
117347
|
} else {
|
|
117348
|
-
result =
|
|
117348
|
+
result = parse13();
|
|
117349
117349
|
}
|
|
117350
117350
|
return result;
|
|
117351
117351
|
}
|
|
@@ -126060,7 +126060,7 @@ var require_lib7 = __commonJS({
|
|
|
126060
126060
|
}
|
|
126061
126061
|
return pluginMap;
|
|
126062
126062
|
}
|
|
126063
|
-
function
|
|
126063
|
+
function parse12(input, options) {
|
|
126064
126064
|
var _options;
|
|
126065
126065
|
if (((_options = options) == null ? void 0 : _options.sourceType) === "unambiguous") {
|
|
126066
126066
|
options = Object.assign({}, options);
|
|
@@ -126130,7 +126130,7 @@ var require_lib7 = __commonJS({
|
|
|
126130
126130
|
}
|
|
126131
126131
|
return cls;
|
|
126132
126132
|
}
|
|
126133
|
-
exports2.parse =
|
|
126133
|
+
exports2.parse = parse12;
|
|
126134
126134
|
exports2.parseExpression = parseExpression2;
|
|
126135
126135
|
exports2.tokTypes = tokTypes;
|
|
126136
126136
|
}
|
|
@@ -128828,7 +128828,7 @@ var require_ms = __commonJS({
|
|
|
128828
128828
|
options = options || {};
|
|
128829
128829
|
var type = typeof val;
|
|
128830
128830
|
if (type === "string" && val.length > 0) {
|
|
128831
|
-
return
|
|
128831
|
+
return parse12(val);
|
|
128832
128832
|
} else if (type === "number" && isFinite(val)) {
|
|
128833
128833
|
return options.long ? fmtLong(val) : fmtShort(val);
|
|
128834
128834
|
}
|
|
@@ -128836,7 +128836,7 @@ var require_ms = __commonJS({
|
|
|
128836
128836
|
"val is not a non-empty string or a valid number. val=" + JSON.stringify(val)
|
|
128837
128837
|
);
|
|
128838
128838
|
};
|
|
128839
|
-
function
|
|
128839
|
+
function parse12(str) {
|
|
128840
128840
|
str = String(str);
|
|
128841
128841
|
if (str.length > 100) {
|
|
128842
128842
|
return;
|
|
@@ -132796,7 +132796,7 @@ var require_trace_mapping_umd = __commonJS({
|
|
|
132796
132796
|
return { __proto__: null };
|
|
132797
132797
|
}
|
|
132798
132798
|
const AnyMap = function(map, mapUrl) {
|
|
132799
|
-
const parsed =
|
|
132799
|
+
const parsed = parse12(map);
|
|
132800
132800
|
if (!("sections" in parsed)) {
|
|
132801
132801
|
return new TraceMap(parsed, mapUrl);
|
|
132802
132802
|
}
|
|
@@ -132817,7 +132817,7 @@ var require_trace_mapping_umd = __commonJS({
|
|
|
132817
132817
|
};
|
|
132818
132818
|
return presortedDecodedMap(joined);
|
|
132819
132819
|
};
|
|
132820
|
-
function
|
|
132820
|
+
function parse12(map) {
|
|
132821
132821
|
return typeof map === "string" ? JSON.parse(map) : map;
|
|
132822
132822
|
}
|
|
132823
132823
|
function recurse(input, mapUrl, mappings, sources, sourcesContent, names4, ignoreList, lineOffset, columnOffset, stopLine, stopColumn) {
|
|
@@ -132839,7 +132839,7 @@ var require_trace_mapping_umd = __commonJS({
|
|
|
132839
132839
|
}
|
|
132840
132840
|
}
|
|
132841
132841
|
function addSection(input, mapUrl, mappings, sources, sourcesContent, names4, ignoreList, lineOffset, columnOffset, stopLine, stopColumn) {
|
|
132842
|
-
const parsed =
|
|
132842
|
+
const parsed = parse12(input);
|
|
132843
132843
|
if ("sections" in parsed)
|
|
132844
132844
|
return recurse(...arguments);
|
|
132845
132845
|
const map = new TraceMap(parsed, mapUrl);
|
|
@@ -144565,8 +144565,8 @@ var require_semver = __commonJS({
|
|
|
144565
144565
|
}
|
|
144566
144566
|
}
|
|
144567
144567
|
var i2;
|
|
144568
|
-
exports2.parse =
|
|
144569
|
-
function
|
|
144568
|
+
exports2.parse = parse12;
|
|
144569
|
+
function parse12(version5, options) {
|
|
144570
144570
|
if (!options || typeof options !== "object") {
|
|
144571
144571
|
options = {
|
|
144572
144572
|
loose: !!options,
|
|
@@ -144594,12 +144594,12 @@ var require_semver = __commonJS({
|
|
|
144594
144594
|
}
|
|
144595
144595
|
exports2.valid = valid;
|
|
144596
144596
|
function valid(version5, options) {
|
|
144597
|
-
var v5 =
|
|
144597
|
+
var v5 = parse12(version5, options);
|
|
144598
144598
|
return v5 ? v5.version : null;
|
|
144599
144599
|
}
|
|
144600
144600
|
exports2.clean = clean;
|
|
144601
144601
|
function clean(version5, options) {
|
|
144602
|
-
var s2 =
|
|
144602
|
+
var s2 = parse12(version5.trim().replace(/^[=v]+/, ""), options);
|
|
144603
144603
|
return s2 ? s2.version : null;
|
|
144604
144604
|
}
|
|
144605
144605
|
exports2.SemVer = SemVer;
|
|
@@ -144831,8 +144831,8 @@ var require_semver = __commonJS({
|
|
|
144831
144831
|
if (eq(version1, version22)) {
|
|
144832
144832
|
return null;
|
|
144833
144833
|
} else {
|
|
144834
|
-
var v1 =
|
|
144835
|
-
var v22 =
|
|
144834
|
+
var v1 = parse12(version1);
|
|
144835
|
+
var v22 = parse12(version22);
|
|
144836
144836
|
var prefix = "";
|
|
144837
144837
|
if (v1.prerelease.length || v22.prerelease.length) {
|
|
144838
144838
|
prefix = "pre";
|
|
@@ -145536,7 +145536,7 @@ var require_semver = __commonJS({
|
|
|
145536
145536
|
}
|
|
145537
145537
|
exports2.prerelease = prerelease2;
|
|
145538
145538
|
function prerelease2(version5, options) {
|
|
145539
|
-
var parsed =
|
|
145539
|
+
var parsed = parse12(version5, options);
|
|
145540
145540
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
145541
145541
|
}
|
|
145542
145542
|
exports2.intersects = intersects;
|
|
@@ -145573,7 +145573,7 @@ var require_semver = __commonJS({
|
|
|
145573
145573
|
if (match2 === null) {
|
|
145574
145574
|
return null;
|
|
145575
145575
|
}
|
|
145576
|
-
return
|
|
145576
|
+
return parse12(match2[2] + "." + (match2[3] || "0") + "." + (match2[4] || "0"), options);
|
|
145577
145577
|
}
|
|
145578
145578
|
}
|
|
145579
145579
|
});
|
|
@@ -146984,7 +146984,7 @@ var require_parse6 = __commonJS({
|
|
|
146984
146984
|
var token;
|
|
146985
146985
|
var key;
|
|
146986
146986
|
var root;
|
|
146987
|
-
module2.exports = function
|
|
146987
|
+
module2.exports = function parse12(text, reviver) {
|
|
146988
146988
|
source = String(text);
|
|
146989
146989
|
parseState = "start";
|
|
146990
146990
|
stack = [];
|
|
@@ -148040,10 +148040,10 @@ var require_stringify2 = __commonJS({
|
|
|
148040
148040
|
// node_modules/.pnpm/json5@2.2.3/node_modules/json5/lib/index.js
|
|
148041
148041
|
var require_lib21 = __commonJS({
|
|
148042
148042
|
"node_modules/.pnpm/json5@2.2.3/node_modules/json5/lib/index.js"(exports2, module2) {
|
|
148043
|
-
var
|
|
148043
|
+
var parse12 = require_parse6();
|
|
148044
148044
|
var stringify3 = require_stringify2();
|
|
148045
148045
|
var JSON5 = {
|
|
148046
|
-
parse:
|
|
148046
|
+
parse: parse12,
|
|
148047
148047
|
stringify: stringify3
|
|
148048
148048
|
};
|
|
148049
148049
|
module2.exports = JSON5;
|
|
@@ -148598,7 +148598,7 @@ var require_parse7 = __commonJS({
|
|
|
148598
148598
|
return false;
|
|
148599
148599
|
});
|
|
148600
148600
|
}
|
|
148601
|
-
module2.exports = function
|
|
148601
|
+
module2.exports = function parse12(all, queries) {
|
|
148602
148602
|
if (!Array.isArray(queries)) queries = [queries];
|
|
148603
148603
|
return flatten3(
|
|
148604
148604
|
queries.map(function(block) {
|
|
@@ -149097,7 +149097,7 @@ var require_browserslist = __commonJS({
|
|
|
149097
149097
|
var path11 = require("path");
|
|
149098
149098
|
var e2c = require_versions();
|
|
149099
149099
|
var BrowserslistError = require_error();
|
|
149100
|
-
var
|
|
149100
|
+
var parse12 = require_parse7();
|
|
149101
149101
|
var env2 = require_node4();
|
|
149102
149102
|
var YEAR = 365.259641 * 24 * 60 * 60 * 1e3;
|
|
149103
149103
|
var ANDROID_EVERGREEN_FIRST = "37";
|
|
@@ -149357,7 +149357,7 @@ var require_browserslist = __commonJS({
|
|
|
149357
149357
|
return typeof flags === "string" && (flags.indexOf("y") >= 0 || withPartial && flags.indexOf("a") >= 0);
|
|
149358
149358
|
}
|
|
149359
149359
|
function resolve10(queries, context) {
|
|
149360
|
-
return
|
|
149360
|
+
return parse12(QUERIES, queries).reduce(function(result, node, index) {
|
|
149361
149361
|
if (node.not && index === 0) {
|
|
149362
149362
|
throw new BrowserslistError(
|
|
149363
149363
|
"Write any browsers query (for instance, `defaults`) before `" + node.query + "`"
|
|
@@ -149463,7 +149463,7 @@ var require_browserslist = __commonJS({
|
|
|
149463
149463
|
opts = prepareOpts(opts);
|
|
149464
149464
|
queries = prepareQueries(queries, opts);
|
|
149465
149465
|
checkQueries(queries);
|
|
149466
|
-
return
|
|
149466
|
+
return parse12(QUERIES, queries);
|
|
149467
149467
|
};
|
|
149468
149468
|
browserslist.cache = {};
|
|
149469
149469
|
browserslist.data = {};
|
|
@@ -163336,14 +163336,14 @@ var require_parse8 = __commonJS({
|
|
|
163336
163336
|
var _index2 = require_parser();
|
|
163337
163337
|
var _normalizeOpts = require_normalize_opts();
|
|
163338
163338
|
var _rewriteStackTrace = require_rewrite_stack_trace();
|
|
163339
|
-
var parseRunner = _gensync()(function*
|
|
163339
|
+
var parseRunner = _gensync()(function* parse13(code, opts) {
|
|
163340
163340
|
const config = yield* (0, _index.default)(opts);
|
|
163341
163341
|
if (config === null) {
|
|
163342
163342
|
return null;
|
|
163343
163343
|
}
|
|
163344
163344
|
return yield* (0, _index2.default)(config.passes, (0, _normalizeOpts.default)(config), code);
|
|
163345
163345
|
});
|
|
163346
|
-
var
|
|
163346
|
+
var parse12 = exports2.parse = function parse13(code, opts, callback) {
|
|
163347
163347
|
if (typeof opts === "function") {
|
|
163348
163348
|
callback = opts;
|
|
163349
163349
|
opts = void 0;
|
|
@@ -163753,7 +163753,7 @@ var require_path_parse = __commonJS({
|
|
|
163753
163753
|
var require_node_modules_paths = __commonJS({
|
|
163754
163754
|
"node_modules/.pnpm/resolve@1.22.8/node_modules/resolve/lib/node-modules-paths.js"(exports2, module2) {
|
|
163755
163755
|
var path11 = require("path");
|
|
163756
|
-
var
|
|
163756
|
+
var parse12 = path11.parse || require_path_parse();
|
|
163757
163757
|
var getNodeModulesDirs = function getNodeModulesDirs2(absoluteStart, modules) {
|
|
163758
163758
|
var prefix = "/";
|
|
163759
163759
|
if (/^([A-Za-z]:)/.test(absoluteStart)) {
|
|
@@ -163762,10 +163762,10 @@ var require_node_modules_paths = __commonJS({
|
|
|
163762
163762
|
prefix = "\\\\";
|
|
163763
163763
|
}
|
|
163764
163764
|
var paths = [absoluteStart];
|
|
163765
|
-
var parsed =
|
|
163765
|
+
var parsed = parse12(absoluteStart);
|
|
163766
163766
|
while (parsed.dir !== paths[paths.length - 1]) {
|
|
163767
163767
|
paths.push(parsed.dir);
|
|
163768
|
-
parsed =
|
|
163768
|
+
parsed = parse12(parsed.dir);
|
|
163769
163769
|
}
|
|
163770
163770
|
return paths.reduce(function(dirs, aPath) {
|
|
163771
163771
|
return dirs.concat(modules.map(function(moduleDir) {
|
|
@@ -168737,9 +168737,9 @@ var require_cjs3 = __commonJS({
|
|
|
168737
168737
|
var peerDependencies2 = {
|
|
168738
168738
|
rollup: "^2.68.0||^3.0.0||^4.0.0"
|
|
168739
168739
|
};
|
|
168740
|
-
function tryParse(
|
|
168740
|
+
function tryParse(parse12, code, id) {
|
|
168741
168741
|
try {
|
|
168742
|
-
return
|
|
168742
|
+
return parse12(code, { allowReturnOutsideFunction: true });
|
|
168743
168743
|
} catch (err) {
|
|
168744
168744
|
err.message += ` in ${id}`;
|
|
168745
168745
|
throw err;
|
|
@@ -168751,8 +168751,8 @@ var require_cjs3 = __commonJS({
|
|
|
168751
168751
|
const firstpass = ignoreGlobal ? firstpassNoGlobal : firstpassGlobal;
|
|
168752
168752
|
return firstpass.test(code);
|
|
168753
168753
|
}
|
|
168754
|
-
function analyzeTopLevelStatements(
|
|
168755
|
-
const ast = tryParse(
|
|
168754
|
+
function analyzeTopLevelStatements(parse12, code, id) {
|
|
168755
|
+
const ast = tryParse(parse12, code, id);
|
|
168756
168756
|
let isEsModule = false;
|
|
168757
168757
|
let hasDefaultExport = false;
|
|
168758
168758
|
let hasNamedExports = false;
|
|
@@ -169789,8 +169789,8 @@ ${exportDeclarations.join(";\n")};`;
|
|
|
169789
169789
|
}
|
|
169790
169790
|
var exportsPattern = /^(?:module\.)?exports(?:\.([a-zA-Z_$][a-zA-Z_$0-9]*))?$/;
|
|
169791
169791
|
var functionType2 = /^(?:FunctionDeclaration|FunctionExpression|ArrowFunctionExpression)$/;
|
|
169792
|
-
async function transformCommonjs(
|
|
169793
|
-
const ast = astCache || tryParse(
|
|
169792
|
+
async function transformCommonjs(parse12, code, id, isEsModule, ignoreGlobal, ignoreRequire, ignoreDynamicRequires, getIgnoreTryCatchRequireStatementMode, sourceMap, isDynamicRequireModulesEnabled, dynamicRequireModules, commonDir, astCache, defaultIsModuleExports, needsRequireWrapper, resolveRequireSourcesAndUpdateMeta, isRequired, checkDynamicRequire, commonjsMeta) {
|
|
169793
|
+
const ast = astCache || tryParse(parse12, code, id);
|
|
169794
169794
|
const magicString = new MagicString2(code);
|
|
169795
169795
|
const uses = {
|
|
169796
169796
|
module: false,
|
|
@@ -173025,9 +173025,9 @@ var require_minimatch2 = __commonJS({
|
|
|
173025
173025
|
throw new TypeError("pattern is too long");
|
|
173026
173026
|
}
|
|
173027
173027
|
};
|
|
173028
|
-
Minimatch2.prototype.parse =
|
|
173028
|
+
Minimatch2.prototype.parse = parse12;
|
|
173029
173029
|
var SUBPARSE = {};
|
|
173030
|
-
function
|
|
173030
|
+
function parse12(pattern, isSub) {
|
|
173031
173031
|
assertValidPattern2(pattern);
|
|
173032
173032
|
var options = this.options;
|
|
173033
173033
|
if (pattern === "**") {
|
|
@@ -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 parse12 = (version5, options, throwErrors = false) => {
|
|
178923
178923
|
if (version5 instanceof SemVer) {
|
|
178924
178924
|
return version5;
|
|
178925
178925
|
}
|
|
@@ -178932,16 +178932,16 @@ var require_parse9 = __commonJS({
|
|
|
178932
178932
|
throw er2;
|
|
178933
178933
|
}
|
|
178934
178934
|
};
|
|
178935
|
-
module2.exports =
|
|
178935
|
+
module2.exports = parse12;
|
|
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 parse12 = require_parse9();
|
|
178943
178943
|
var valid = (version5, options) => {
|
|
178944
|
-
const v5 =
|
|
178944
|
+
const v5 = parse12(version5, 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 parse12 = require_parse9();
|
|
178955
178955
|
var clean = (version5, options) => {
|
|
178956
|
-
const s2 =
|
|
178956
|
+
const s2 = parse12(version5.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 parse12 = require_parse9();
|
|
178990
178990
|
var diff2 = (version1, version22) => {
|
|
178991
|
-
const v1 =
|
|
178992
|
-
const v22 =
|
|
178991
|
+
const v1 = parse12(version1, null, true);
|
|
178992
|
+
const v22 = parse12(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 parse12 = require_parse9();
|
|
179061
179061
|
var prerelease2 = (version5, options) => {
|
|
179062
|
-
const parsed =
|
|
179062
|
+
const parsed = parse12(version5, options);
|
|
179063
179063
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
179064
179064
|
};
|
|
179065
179065
|
module2.exports = prerelease2;
|
|
@@ -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 parse12 = require_parse9();
|
|
179235
179235
|
var { safeRe: re3, t: t2 } = require_re();
|
|
179236
179236
|
var coerce2 = (version5, options) => {
|
|
179237
179237
|
if (version5 instanceof SemVer) {
|
|
@@ -179266,7 +179266,7 @@ var require_coerce = __commonJS({
|
|
|
179266
179266
|
const patch = match2[4] || "0";
|
|
179267
179267
|
const prerelease2 = options.includePrerelease && match2[5] ? `-${match2[5]}` : "";
|
|
179268
179268
|
const build2 = options.includePrerelease && match2[6] ? `+${match2[6]}` : "";
|
|
179269
|
-
return
|
|
179269
|
+
return parse12(`${major}.${minor}.${patch}${prerelease2}${build2}`, options);
|
|
179270
179270
|
};
|
|
179271
179271
|
module2.exports = coerce2;
|
|
179272
179272
|
}
|
|
@@ -180246,7 +180246,7 @@ var require_semver3 = __commonJS({
|
|
|
180246
180246
|
var constants6 = require_constants6();
|
|
180247
180247
|
var SemVer = require_semver2();
|
|
180248
180248
|
var identifiers = require_identifiers();
|
|
180249
|
-
var
|
|
180249
|
+
var parse12 = 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: parse12,
|
|
180288
180288
|
valid,
|
|
180289
180289
|
clean,
|
|
180290
180290
|
inc,
|
|
@@ -200081,7 +200081,7 @@ var require_MetadataCommentTagFactory = __commonJS({
|
|
|
200081
200081
|
try {
|
|
200082
200082
|
for (var commentList_1 = __values(commentList), commentList_1_1 = commentList_1.next(); !commentList_1_1.done; commentList_1_1 = commentList_1.next()) {
|
|
200083
200083
|
var comment = commentList_1_1.value;
|
|
200084
|
-
var tagger =
|
|
200084
|
+
var tagger = parse12(report)(comment);
|
|
200085
200085
|
if (tagger === null)
|
|
200086
200086
|
continue;
|
|
200087
200087
|
var _loop_1 = function(key2, value3) {
|
|
@@ -200199,7 +200199,7 @@ var require_MetadataCommentTagFactory = __commonJS({
|
|
|
200199
200199
|
};
|
|
200200
200200
|
};
|
|
200201
200201
|
};
|
|
200202
|
-
var
|
|
200202
|
+
var parse12 = function(report) {
|
|
200203
200203
|
return function(comment) {
|
|
200204
200204
|
var _a;
|
|
200205
200205
|
var parser = PARSER[comment.name];
|
|
@@ -230248,12 +230248,7 @@ function convertRpts2LogLevel(logLevel) {
|
|
|
230248
230248
|
async function createInput(options) {
|
|
230249
230249
|
const { correctPaths: correctPaths2 } = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
230250
230250
|
if (global.NX_GRAPH_CREATION) return {};
|
|
230251
|
-
const mainEntryFileName = options.outputFileName || options.main;
|
|
230252
230251
|
const input = {};
|
|
230253
|
-
input[(0, import_node_path14.parse)(mainEntryFileName).name] = (0, import_node_path14.join)(
|
|
230254
|
-
options.config.workspaceRoot,
|
|
230255
|
-
options.main
|
|
230256
|
-
);
|
|
230257
230252
|
options.additionalEntryPoints?.forEach((entry) => {
|
|
230258
230253
|
const entryPoint = correctPaths2((0, import_node_path14.join)(options.config.workspaceRoot, entry));
|
|
230259
230254
|
const entryName = `.${entryPoint.replace(
|
|
@@ -230288,7 +230283,8 @@ async function createTsCompilerOptions(parsedCommandLine, options, dependencies,
|
|
|
230288
230283
|
declaration: true,
|
|
230289
230284
|
skipLibCheck: true,
|
|
230290
230285
|
skipDefaultLibCheck: true,
|
|
230291
|
-
paths: compilerOptionPaths
|
|
230286
|
+
paths: compilerOptionPaths,
|
|
230287
|
+
pathsBasePath: baseDir
|
|
230292
230288
|
};
|
|
230293
230289
|
if (parsedCommandLine.options.module === import_typescript.ModuleKind.CommonJS) {
|
|
230294
230290
|
compilerOptions["module"] = "ESNext";
|