@jsii/runtime 1.97.0 → 1.99.0
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/package.json +10 -10
- package/webpack/bin/jsii-runtime.js +229 -218
- package/webpack/lib/program.js +713 -700
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var __webpack_modules__ = {
|
|
2
|
-
|
|
2
|
+
821: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3
3
|
"use strict";
|
|
4
4
|
module = __webpack_require__.nmd(module);
|
|
5
5
|
const wrapAnsi16 = (fn, offset) => (...args) => {
|
|
@@ -34,7 +34,7 @@ var __webpack_modules__ = {
|
|
|
34
34
|
let colorConvert;
|
|
35
35
|
const makeDynamicStyles = (wrap, targetSpace, identity, isBackground) => {
|
|
36
36
|
if (colorConvert === undefined) {
|
|
37
|
-
colorConvert = __webpack_require__(
|
|
37
|
+
colorConvert = __webpack_require__(2172);
|
|
38
38
|
}
|
|
39
39
|
const offset = isBackground ? 10 : 0;
|
|
40
40
|
const styles = {};
|
|
@@ -135,11 +135,11 @@ var __webpack_modules__ = {
|
|
|
135
135
|
get: assembleStyles
|
|
136
136
|
});
|
|
137
137
|
},
|
|
138
|
-
|
|
138
|
+
6042: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
139
139
|
"use strict";
|
|
140
|
-
const ansiStyles = __webpack_require__(
|
|
141
|
-
const {stdout: stdoutColor, stderr: stderrColor} = __webpack_require__(
|
|
142
|
-
const {stringReplaceAll, stringEncaseCRLFWithFirstIndex} = __webpack_require__(
|
|
140
|
+
const ansiStyles = __webpack_require__(821);
|
|
141
|
+
const {stdout: stdoutColor, stderr: stderrColor} = __webpack_require__(3533);
|
|
142
|
+
const {stringReplaceAll, stringEncaseCRLFWithFirstIndex} = __webpack_require__(4932);
|
|
143
143
|
const {isArray} = Array;
|
|
144
144
|
const levelMapping = [ "ansi", "ansi", "ansi256", "ansi16m" ];
|
|
145
145
|
const styles = Object.create(null);
|
|
@@ -290,7 +290,7 @@ var __webpack_modules__ = {
|
|
|
290
290
|
parts.push(String(arguments_[i - 1]).replace(/[{}\\]/g, "\\$&"), String(firstString.raw[i]));
|
|
291
291
|
}
|
|
292
292
|
if (template === undefined) {
|
|
293
|
-
template = __webpack_require__(
|
|
293
|
+
template = __webpack_require__(8993);
|
|
294
294
|
}
|
|
295
295
|
return template(chalk, parts.join(""));
|
|
296
296
|
};
|
|
@@ -303,7 +303,7 @@ var __webpack_modules__ = {
|
|
|
303
303
|
chalk.stderr.supportsColor = stderrColor;
|
|
304
304
|
module.exports = chalk;
|
|
305
305
|
},
|
|
306
|
-
|
|
306
|
+
8993: module => {
|
|
307
307
|
"use strict";
|
|
308
308
|
const TEMPLATE_REGEX = /(?:\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi;
|
|
309
309
|
const STYLE_REGEX = /(?:^|\.)(\w+)(?:\(([^)]*)\))?/g;
|
|
@@ -405,7 +405,7 @@ var __webpack_modules__ = {
|
|
|
405
405
|
return chunks.join("");
|
|
406
406
|
};
|
|
407
407
|
},
|
|
408
|
-
|
|
408
|
+
4932: module => {
|
|
409
409
|
"use strict";
|
|
410
410
|
const stringReplaceAll = (string, substring, replacer) => {
|
|
411
411
|
let index = string.indexOf(substring);
|
|
@@ -440,8 +440,8 @@ var __webpack_modules__ = {
|
|
|
440
440
|
stringEncaseCRLFWithFirstIndex
|
|
441
441
|
};
|
|
442
442
|
},
|
|
443
|
-
|
|
444
|
-
const cssKeywords = __webpack_require__(
|
|
443
|
+
1873: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
444
|
+
const cssKeywords = __webpack_require__(2694);
|
|
445
445
|
const reverseKeywords = {};
|
|
446
446
|
for (const key of Object.keys(cssKeywords)) {
|
|
447
447
|
reverseKeywords[cssKeywords[key]] = key;
|
|
@@ -1161,9 +1161,9 @@ var __webpack_modules__ = {
|
|
|
1161
1161
|
return [ val / 255 * 100 ];
|
|
1162
1162
|
};
|
|
1163
1163
|
},
|
|
1164
|
-
|
|
1165
|
-
const conversions = __webpack_require__(
|
|
1166
|
-
const route = __webpack_require__(
|
|
1164
|
+
2172: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1165
|
+
const conversions = __webpack_require__(1873);
|
|
1166
|
+
const route = __webpack_require__(3701);
|
|
1167
1167
|
const convert = {};
|
|
1168
1168
|
const models = Object.keys(conversions);
|
|
1169
1169
|
function wrapRaw(fn) {
|
|
@@ -1222,8 +1222,8 @@ var __webpack_modules__ = {
|
|
|
1222
1222
|
}));
|
|
1223
1223
|
module.exports = convert;
|
|
1224
1224
|
},
|
|
1225
|
-
|
|
1226
|
-
const conversions = __webpack_require__(
|
|
1225
|
+
3701: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1226
|
+
const conversions = __webpack_require__(1873);
|
|
1227
1227
|
function buildGraph() {
|
|
1228
1228
|
const graph = {};
|
|
1229
1229
|
const models = Object.keys(conversions);
|
|
@@ -1286,7 +1286,7 @@ var __webpack_modules__ = {
|
|
|
1286
1286
|
return conversion;
|
|
1287
1287
|
};
|
|
1288
1288
|
},
|
|
1289
|
-
|
|
1289
|
+
2694: module => {
|
|
1290
1290
|
"use strict";
|
|
1291
1291
|
module.exports = {
|
|
1292
1292
|
aliceblue: [ 240, 248, 255 ],
|
|
@@ -1439,7 +1439,7 @@ var __webpack_modules__ = {
|
|
|
1439
1439
|
yellowgreen: [ 154, 205, 50 ]
|
|
1440
1440
|
};
|
|
1441
1441
|
},
|
|
1442
|
-
|
|
1442
|
+
9614: module => {
|
|
1443
1443
|
"use strict";
|
|
1444
1444
|
module.exports = (flag, argv = process.argv) => {
|
|
1445
1445
|
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
@@ -1448,7 +1448,7 @@ var __webpack_modules__ = {
|
|
|
1448
1448
|
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
1449
1449
|
};
|
|
1450
1450
|
},
|
|
1451
|
-
|
|
1451
|
+
3114: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1452
1452
|
const ANY = Symbol("SemVer ANY");
|
|
1453
1453
|
class Comparator {
|
|
1454
1454
|
static get ANY() {
|
|
@@ -1549,14 +1549,14 @@ var __webpack_modules__ = {
|
|
|
1549
1549
|
}
|
|
1550
1550
|
}
|
|
1551
1551
|
module.exports = Comparator;
|
|
1552
|
-
const parseOptions = __webpack_require__(
|
|
1553
|
-
const {safeRe: re, t} = __webpack_require__(
|
|
1554
|
-
const cmp = __webpack_require__(
|
|
1555
|
-
const debug = __webpack_require__(
|
|
1556
|
-
const SemVer = __webpack_require__(
|
|
1557
|
-
const Range = __webpack_require__(
|
|
1558
|
-
},
|
|
1559
|
-
|
|
1552
|
+
const parseOptions = __webpack_require__(6837);
|
|
1553
|
+
const {safeRe: re, t} = __webpack_require__(928);
|
|
1554
|
+
const cmp = __webpack_require__(1005);
|
|
1555
|
+
const debug = __webpack_require__(4122);
|
|
1556
|
+
const SemVer = __webpack_require__(8038);
|
|
1557
|
+
const Range = __webpack_require__(3597);
|
|
1558
|
+
},
|
|
1559
|
+
3597: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1560
1560
|
class Range {
|
|
1561
1561
|
constructor(range, options) {
|
|
1562
1562
|
options = parseOptions(options);
|
|
@@ -1670,16 +1670,16 @@ var __webpack_modules__ = {
|
|
|
1670
1670
|
}
|
|
1671
1671
|
}
|
|
1672
1672
|
module.exports = Range;
|
|
1673
|
-
const LRU = __webpack_require__(
|
|
1673
|
+
const LRU = __webpack_require__(8163);
|
|
1674
1674
|
const cache = new LRU({
|
|
1675
1675
|
max: 1e3
|
|
1676
1676
|
});
|
|
1677
|
-
const parseOptions = __webpack_require__(
|
|
1678
|
-
const Comparator = __webpack_require__(
|
|
1679
|
-
const debug = __webpack_require__(
|
|
1680
|
-
const SemVer = __webpack_require__(
|
|
1681
|
-
const {safeRe: re, t, comparatorTrimReplace, tildeTrimReplace, caretTrimReplace} = __webpack_require__(
|
|
1682
|
-
const {FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE} = __webpack_require__(
|
|
1677
|
+
const parseOptions = __webpack_require__(6837);
|
|
1678
|
+
const Comparator = __webpack_require__(3114);
|
|
1679
|
+
const debug = __webpack_require__(4122);
|
|
1680
|
+
const SemVer = __webpack_require__(8038);
|
|
1681
|
+
const {safeRe: re, t, comparatorTrimReplace, tildeTrimReplace, caretTrimReplace} = __webpack_require__(928);
|
|
1682
|
+
const {FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE} = __webpack_require__(3932);
|
|
1683
1683
|
const isNullSet = c => c.value === "<0.0.0-0";
|
|
1684
1684
|
const isAny = c => c.value === "";
|
|
1685
1685
|
const isSatisfiable = (comparators, options) => {
|
|
@@ -1890,12 +1890,12 @@ var __webpack_modules__ = {
|
|
|
1890
1890
|
return true;
|
|
1891
1891
|
};
|
|
1892
1892
|
},
|
|
1893
|
-
|
|
1894
|
-
const debug = __webpack_require__(
|
|
1895
|
-
const {MAX_LENGTH, MAX_SAFE_INTEGER} = __webpack_require__(
|
|
1896
|
-
const {safeRe: re, t} = __webpack_require__(
|
|
1897
|
-
const parseOptions = __webpack_require__(
|
|
1898
|
-
const {compareIdentifiers} = __webpack_require__(
|
|
1893
|
+
8038: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1894
|
+
const debug = __webpack_require__(4122);
|
|
1895
|
+
const {MAX_LENGTH, MAX_SAFE_INTEGER} = __webpack_require__(3932);
|
|
1896
|
+
const {safeRe: re, t} = __webpack_require__(928);
|
|
1897
|
+
const parseOptions = __webpack_require__(6837);
|
|
1898
|
+
const {compareIdentifiers} = __webpack_require__(6741);
|
|
1899
1899
|
class SemVer {
|
|
1900
1900
|
constructor(version, options) {
|
|
1901
1901
|
options = parseOptions(options);
|
|
@@ -2133,21 +2133,21 @@ var __webpack_modules__ = {
|
|
|
2133
2133
|
}
|
|
2134
2134
|
module.exports = SemVer;
|
|
2135
2135
|
},
|
|
2136
|
-
|
|
2137
|
-
const parse = __webpack_require__(
|
|
2136
|
+
4592: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2137
|
+
const parse = __webpack_require__(3770);
|
|
2138
2138
|
const clean = (version, options) => {
|
|
2139
2139
|
const s = parse(version.trim().replace(/^[=v]+/, ""), options);
|
|
2140
2140
|
return s ? s.version : null;
|
|
2141
2141
|
};
|
|
2142
2142
|
module.exports = clean;
|
|
2143
2143
|
},
|
|
2144
|
-
|
|
2145
|
-
const eq = __webpack_require__(
|
|
2146
|
-
const neq = __webpack_require__(
|
|
2147
|
-
const gt = __webpack_require__(
|
|
2148
|
-
const gte = __webpack_require__(
|
|
2149
|
-
const lt = __webpack_require__(
|
|
2150
|
-
const lte = __webpack_require__(
|
|
2144
|
+
1005: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2145
|
+
const eq = __webpack_require__(8935);
|
|
2146
|
+
const neq = __webpack_require__(8661);
|
|
2147
|
+
const gt = __webpack_require__(6670);
|
|
2148
|
+
const gte = __webpack_require__(6999);
|
|
2149
|
+
const lt = __webpack_require__(5169);
|
|
2150
|
+
const lte = __webpack_require__(9746);
|
|
2151
2151
|
const cmp = (a, op, b, loose) => {
|
|
2152
2152
|
switch (op) {
|
|
2153
2153
|
case "===":
|
|
@@ -2194,10 +2194,10 @@ var __webpack_modules__ = {
|
|
|
2194
2194
|
};
|
|
2195
2195
|
module.exports = cmp;
|
|
2196
2196
|
},
|
|
2197
|
-
|
|
2198
|
-
const SemVer = __webpack_require__(
|
|
2199
|
-
const parse = __webpack_require__(
|
|
2200
|
-
const {safeRe: re, t} = __webpack_require__(
|
|
2197
|
+
3328: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2198
|
+
const SemVer = __webpack_require__(8038);
|
|
2199
|
+
const parse = __webpack_require__(3770);
|
|
2200
|
+
const {safeRe: re, t} = __webpack_require__(928);
|
|
2201
2201
|
const coerce = (version, options) => {
|
|
2202
2202
|
if (version instanceof SemVer) {
|
|
2203
2203
|
return version;
|
|
@@ -2211,26 +2211,32 @@ var __webpack_modules__ = {
|
|
|
2211
2211
|
options = options || {};
|
|
2212
2212
|
let match = null;
|
|
2213
2213
|
if (!options.rtl) {
|
|
2214
|
-
match = version.match(re[t.COERCE]);
|
|
2214
|
+
match = version.match(options.includePrerelease ? re[t.COERCEFULL] : re[t.COERCE]);
|
|
2215
2215
|
} else {
|
|
2216
|
+
const coerceRtlRegex = options.includePrerelease ? re[t.COERCERTLFULL] : re[t.COERCERTL];
|
|
2216
2217
|
let next;
|
|
2217
|
-
while ((next =
|
|
2218
|
+
while ((next = coerceRtlRegex.exec(version)) && (!match || match.index + match[0].length !== version.length)) {
|
|
2218
2219
|
if (!match || next.index + next[0].length !== match.index + match[0].length) {
|
|
2219
2220
|
match = next;
|
|
2220
2221
|
}
|
|
2221
|
-
|
|
2222
|
+
coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length;
|
|
2222
2223
|
}
|
|
2223
|
-
|
|
2224
|
+
coerceRtlRegex.lastIndex = -1;
|
|
2224
2225
|
}
|
|
2225
2226
|
if (match === null) {
|
|
2226
2227
|
return null;
|
|
2227
2228
|
}
|
|
2228
|
-
|
|
2229
|
+
const major = match[2];
|
|
2230
|
+
const minor = match[3] || "0";
|
|
2231
|
+
const patch = match[4] || "0";
|
|
2232
|
+
const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : "";
|
|
2233
|
+
const build = options.includePrerelease && match[6] ? `+${match[6]}` : "";
|
|
2234
|
+
return parse(`${major}.${minor}.${patch}${prerelease}${build}`, options);
|
|
2229
2235
|
};
|
|
2230
2236
|
module.exports = coerce;
|
|
2231
2237
|
},
|
|
2232
|
-
|
|
2233
|
-
const SemVer = __webpack_require__(
|
|
2238
|
+
8471: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2239
|
+
const SemVer = __webpack_require__(8038);
|
|
2234
2240
|
const compareBuild = (a, b, loose) => {
|
|
2235
2241
|
const versionA = new SemVer(a, loose);
|
|
2236
2242
|
const versionB = new SemVer(b, loose);
|
|
@@ -2238,18 +2244,18 @@ var __webpack_modules__ = {
|
|
|
2238
2244
|
};
|
|
2239
2245
|
module.exports = compareBuild;
|
|
2240
2246
|
},
|
|
2241
|
-
|
|
2242
|
-
const compare = __webpack_require__(
|
|
2247
|
+
3949: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2248
|
+
const compare = __webpack_require__(6278);
|
|
2243
2249
|
const compareLoose = (a, b) => compare(a, b, true);
|
|
2244
2250
|
module.exports = compareLoose;
|
|
2245
2251
|
},
|
|
2246
|
-
|
|
2247
|
-
const SemVer = __webpack_require__(
|
|
2252
|
+
6278: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2253
|
+
const SemVer = __webpack_require__(8038);
|
|
2248
2254
|
const compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
|
|
2249
2255
|
module.exports = compare;
|
|
2250
2256
|
},
|
|
2251
|
-
|
|
2252
|
-
const parse = __webpack_require__(
|
|
2257
|
+
5782: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2258
|
+
const parse = __webpack_require__(3770);
|
|
2253
2259
|
const diff = (version1, version2) => {
|
|
2254
2260
|
const v1 = parse(version1, null, true);
|
|
2255
2261
|
const v2 = parse(version2, null, true);
|
|
@@ -2288,23 +2294,23 @@ var __webpack_modules__ = {
|
|
|
2288
2294
|
};
|
|
2289
2295
|
module.exports = diff;
|
|
2290
2296
|
},
|
|
2291
|
-
|
|
2292
|
-
const compare = __webpack_require__(
|
|
2297
|
+
8935: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2298
|
+
const compare = __webpack_require__(6278);
|
|
2293
2299
|
const eq = (a, b, loose) => compare(a, b, loose) === 0;
|
|
2294
2300
|
module.exports = eq;
|
|
2295
2301
|
},
|
|
2296
|
-
|
|
2297
|
-
const compare = __webpack_require__(
|
|
2302
|
+
6670: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2303
|
+
const compare = __webpack_require__(6278);
|
|
2298
2304
|
const gt = (a, b, loose) => compare(a, b, loose) > 0;
|
|
2299
2305
|
module.exports = gt;
|
|
2300
2306
|
},
|
|
2301
|
-
|
|
2302
|
-
const compare = __webpack_require__(
|
|
2307
|
+
6999: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2308
|
+
const compare = __webpack_require__(6278);
|
|
2303
2309
|
const gte = (a, b, loose) => compare(a, b, loose) >= 0;
|
|
2304
2310
|
module.exports = gte;
|
|
2305
2311
|
},
|
|
2306
|
-
|
|
2307
|
-
const SemVer = __webpack_require__(
|
|
2312
|
+
305: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2313
|
+
const SemVer = __webpack_require__(8038);
|
|
2308
2314
|
const inc = (version, release, options, identifier, identifierBase) => {
|
|
2309
2315
|
if (typeof options === "string") {
|
|
2310
2316
|
identifierBase = identifier;
|
|
@@ -2319,33 +2325,33 @@ var __webpack_modules__ = {
|
|
|
2319
2325
|
};
|
|
2320
2326
|
module.exports = inc;
|
|
2321
2327
|
},
|
|
2322
|
-
|
|
2323
|
-
const compare = __webpack_require__(
|
|
2328
|
+
5169: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2329
|
+
const compare = __webpack_require__(6278);
|
|
2324
2330
|
const lt = (a, b, loose) => compare(a, b, loose) < 0;
|
|
2325
2331
|
module.exports = lt;
|
|
2326
2332
|
},
|
|
2327
|
-
|
|
2328
|
-
const compare = __webpack_require__(
|
|
2333
|
+
9746: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2334
|
+
const compare = __webpack_require__(6278);
|
|
2329
2335
|
const lte = (a, b, loose) => compare(a, b, loose) <= 0;
|
|
2330
2336
|
module.exports = lte;
|
|
2331
2337
|
},
|
|
2332
|
-
|
|
2333
|
-
const SemVer = __webpack_require__(
|
|
2338
|
+
6680: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2339
|
+
const SemVer = __webpack_require__(8038);
|
|
2334
2340
|
const major = (a, loose) => new SemVer(a, loose).major;
|
|
2335
2341
|
module.exports = major;
|
|
2336
2342
|
},
|
|
2337
|
-
|
|
2338
|
-
const SemVer = __webpack_require__(
|
|
2343
|
+
7748: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2344
|
+
const SemVer = __webpack_require__(8038);
|
|
2339
2345
|
const minor = (a, loose) => new SemVer(a, loose).minor;
|
|
2340
2346
|
module.exports = minor;
|
|
2341
2347
|
},
|
|
2342
|
-
|
|
2343
|
-
const compare = __webpack_require__(
|
|
2348
|
+
8661: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2349
|
+
const compare = __webpack_require__(6278);
|
|
2344
2350
|
const neq = (a, b, loose) => compare(a, b, loose) !== 0;
|
|
2345
2351
|
module.exports = neq;
|
|
2346
2352
|
},
|
|
2347
|
-
|
|
2348
|
-
const SemVer = __webpack_require__(
|
|
2353
|
+
3770: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2354
|
+
const SemVer = __webpack_require__(8038);
|
|
2349
2355
|
const parse = (version, options, throwErrors = false) => {
|
|
2350
2356
|
if (version instanceof SemVer) {
|
|
2351
2357
|
return version;
|
|
@@ -2361,31 +2367,31 @@ var __webpack_modules__ = {
|
|
|
2361
2367
|
};
|
|
2362
2368
|
module.exports = parse;
|
|
2363
2369
|
},
|
|
2364
|
-
|
|
2365
|
-
const SemVer = __webpack_require__(
|
|
2370
|
+
6219: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2371
|
+
const SemVer = __webpack_require__(8038);
|
|
2366
2372
|
const patch = (a, loose) => new SemVer(a, loose).patch;
|
|
2367
2373
|
module.exports = patch;
|
|
2368
2374
|
},
|
|
2369
|
-
|
|
2370
|
-
const parse = __webpack_require__(
|
|
2375
|
+
5003: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2376
|
+
const parse = __webpack_require__(3770);
|
|
2371
2377
|
const prerelease = (version, options) => {
|
|
2372
2378
|
const parsed = parse(version, options);
|
|
2373
2379
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
2374
2380
|
};
|
|
2375
2381
|
module.exports = prerelease;
|
|
2376
2382
|
},
|
|
2377
|
-
|
|
2378
|
-
const compare = __webpack_require__(
|
|
2383
|
+
3360: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2384
|
+
const compare = __webpack_require__(6278);
|
|
2379
2385
|
const rcompare = (a, b, loose) => compare(b, a, loose);
|
|
2380
2386
|
module.exports = rcompare;
|
|
2381
2387
|
},
|
|
2382
|
-
|
|
2383
|
-
const compareBuild = __webpack_require__(
|
|
2388
|
+
5063: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2389
|
+
const compareBuild = __webpack_require__(8471);
|
|
2384
2390
|
const rsort = (list, loose) => list.sort(((a, b) => compareBuild(b, a, loose)));
|
|
2385
2391
|
module.exports = rsort;
|
|
2386
2392
|
},
|
|
2387
|
-
|
|
2388
|
-
const Range = __webpack_require__(
|
|
2393
|
+
6336: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2394
|
+
const Range = __webpack_require__(3597);
|
|
2389
2395
|
const satisfies = (version, range, options) => {
|
|
2390
2396
|
try {
|
|
2391
2397
|
range = new Range(range, options);
|
|
@@ -2396,61 +2402,61 @@ var __webpack_modules__ = {
|
|
|
2396
2402
|
};
|
|
2397
2403
|
module.exports = satisfies;
|
|
2398
2404
|
},
|
|
2399
|
-
|
|
2400
|
-
const compareBuild = __webpack_require__(
|
|
2405
|
+
2393: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2406
|
+
const compareBuild = __webpack_require__(8471);
|
|
2401
2407
|
const sort = (list, loose) => list.sort(((a, b) => compareBuild(a, b, loose)));
|
|
2402
2408
|
module.exports = sort;
|
|
2403
2409
|
},
|
|
2404
|
-
|
|
2405
|
-
const parse = __webpack_require__(
|
|
2410
|
+
1519: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2411
|
+
const parse = __webpack_require__(3770);
|
|
2406
2412
|
const valid = (version, options) => {
|
|
2407
2413
|
const v = parse(version, options);
|
|
2408
2414
|
return v ? v.version : null;
|
|
2409
2415
|
};
|
|
2410
2416
|
module.exports = valid;
|
|
2411
2417
|
},
|
|
2412
|
-
|
|
2413
|
-
const internalRe = __webpack_require__(
|
|
2414
|
-
const constants = __webpack_require__(
|
|
2415
|
-
const SemVer = __webpack_require__(
|
|
2416
|
-
const identifiers = __webpack_require__(
|
|
2417
|
-
const parse = __webpack_require__(
|
|
2418
|
-
const valid = __webpack_require__(
|
|
2419
|
-
const clean = __webpack_require__(
|
|
2420
|
-
const inc = __webpack_require__(
|
|
2421
|
-
const diff = __webpack_require__(
|
|
2422
|
-
const major = __webpack_require__(
|
|
2423
|
-
const minor = __webpack_require__(
|
|
2424
|
-
const patch = __webpack_require__(
|
|
2425
|
-
const prerelease = __webpack_require__(
|
|
2426
|
-
const compare = __webpack_require__(
|
|
2427
|
-
const rcompare = __webpack_require__(
|
|
2428
|
-
const compareLoose = __webpack_require__(
|
|
2429
|
-
const compareBuild = __webpack_require__(
|
|
2430
|
-
const sort = __webpack_require__(
|
|
2431
|
-
const rsort = __webpack_require__(
|
|
2432
|
-
const gt = __webpack_require__(
|
|
2433
|
-
const lt = __webpack_require__(
|
|
2434
|
-
const eq = __webpack_require__(
|
|
2435
|
-
const neq = __webpack_require__(
|
|
2436
|
-
const gte = __webpack_require__(
|
|
2437
|
-
const lte = __webpack_require__(
|
|
2438
|
-
const cmp = __webpack_require__(
|
|
2439
|
-
const coerce = __webpack_require__(
|
|
2440
|
-
const Comparator = __webpack_require__(
|
|
2441
|
-
const Range = __webpack_require__(
|
|
2442
|
-
const satisfies = __webpack_require__(
|
|
2443
|
-
const toComparators = __webpack_require__(
|
|
2444
|
-
const maxSatisfying = __webpack_require__(
|
|
2445
|
-
const minSatisfying = __webpack_require__(
|
|
2446
|
-
const minVersion = __webpack_require__(
|
|
2447
|
-
const validRange = __webpack_require__(
|
|
2448
|
-
const outside = __webpack_require__(
|
|
2449
|
-
const gtr = __webpack_require__(
|
|
2450
|
-
const ltr = __webpack_require__(
|
|
2451
|
-
const intersects = __webpack_require__(
|
|
2452
|
-
const simplifyRange = __webpack_require__(
|
|
2453
|
-
const subset = __webpack_require__(
|
|
2418
|
+
5263: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2419
|
+
const internalRe = __webpack_require__(928);
|
|
2420
|
+
const constants = __webpack_require__(3932);
|
|
2421
|
+
const SemVer = __webpack_require__(8038);
|
|
2422
|
+
const identifiers = __webpack_require__(6741);
|
|
2423
|
+
const parse = __webpack_require__(3770);
|
|
2424
|
+
const valid = __webpack_require__(1519);
|
|
2425
|
+
const clean = __webpack_require__(4592);
|
|
2426
|
+
const inc = __webpack_require__(305);
|
|
2427
|
+
const diff = __webpack_require__(5782);
|
|
2428
|
+
const major = __webpack_require__(6680);
|
|
2429
|
+
const minor = __webpack_require__(7748);
|
|
2430
|
+
const patch = __webpack_require__(6219);
|
|
2431
|
+
const prerelease = __webpack_require__(5003);
|
|
2432
|
+
const compare = __webpack_require__(6278);
|
|
2433
|
+
const rcompare = __webpack_require__(3360);
|
|
2434
|
+
const compareLoose = __webpack_require__(3949);
|
|
2435
|
+
const compareBuild = __webpack_require__(8471);
|
|
2436
|
+
const sort = __webpack_require__(2393);
|
|
2437
|
+
const rsort = __webpack_require__(5063);
|
|
2438
|
+
const gt = __webpack_require__(6670);
|
|
2439
|
+
const lt = __webpack_require__(5169);
|
|
2440
|
+
const eq = __webpack_require__(8935);
|
|
2441
|
+
const neq = __webpack_require__(8661);
|
|
2442
|
+
const gte = __webpack_require__(6999);
|
|
2443
|
+
const lte = __webpack_require__(9746);
|
|
2444
|
+
const cmp = __webpack_require__(1005);
|
|
2445
|
+
const coerce = __webpack_require__(3328);
|
|
2446
|
+
const Comparator = __webpack_require__(3114);
|
|
2447
|
+
const Range = __webpack_require__(3597);
|
|
2448
|
+
const satisfies = __webpack_require__(6336);
|
|
2449
|
+
const toComparators = __webpack_require__(9533);
|
|
2450
|
+
const maxSatisfying = __webpack_require__(274);
|
|
2451
|
+
const minSatisfying = __webpack_require__(9304);
|
|
2452
|
+
const minVersion = __webpack_require__(7955);
|
|
2453
|
+
const validRange = __webpack_require__(7348);
|
|
2454
|
+
const outside = __webpack_require__(2641);
|
|
2455
|
+
const gtr = __webpack_require__(7369);
|
|
2456
|
+
const ltr = __webpack_require__(9024);
|
|
2457
|
+
const intersects = __webpack_require__(8474);
|
|
2458
|
+
const simplifyRange = __webpack_require__(6927);
|
|
2459
|
+
const subset = __webpack_require__(4302);
|
|
2454
2460
|
module.exports = {
|
|
2455
2461
|
parse,
|
|
2456
2462
|
valid,
|
|
@@ -2499,7 +2505,7 @@ var __webpack_modules__ = {
|
|
|
2499
2505
|
rcompareIdentifiers: identifiers.rcompareIdentifiers
|
|
2500
2506
|
};
|
|
2501
2507
|
},
|
|
2502
|
-
|
|
2508
|
+
3932: module => {
|
|
2503
2509
|
const SEMVER_SPEC_VERSION = "2.0.0";
|
|
2504
2510
|
const MAX_LENGTH = 256;
|
|
2505
2511
|
const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991;
|
|
@@ -2517,11 +2523,11 @@ var __webpack_modules__ = {
|
|
|
2517
2523
|
FLAG_LOOSE: 2
|
|
2518
2524
|
};
|
|
2519
2525
|
},
|
|
2520
|
-
|
|
2526
|
+
4122: module => {
|
|
2521
2527
|
const debug = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {};
|
|
2522
2528
|
module.exports = debug;
|
|
2523
2529
|
},
|
|
2524
|
-
|
|
2530
|
+
6741: module => {
|
|
2525
2531
|
const numeric = /^[0-9]+$/;
|
|
2526
2532
|
const compareIdentifiers = (a, b) => {
|
|
2527
2533
|
const anum = numeric.test(a);
|
|
@@ -2538,7 +2544,7 @@ var __webpack_modules__ = {
|
|
|
2538
2544
|
rcompareIdentifiers
|
|
2539
2545
|
};
|
|
2540
2546
|
},
|
|
2541
|
-
|
|
2547
|
+
6837: module => {
|
|
2542
2548
|
const looseOption = Object.freeze({
|
|
2543
2549
|
loose: true
|
|
2544
2550
|
});
|
|
@@ -2554,9 +2560,9 @@ var __webpack_modules__ = {
|
|
|
2554
2560
|
};
|
|
2555
2561
|
module.exports = parseOptions;
|
|
2556
2562
|
},
|
|
2557
|
-
|
|
2558
|
-
const {MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH, MAX_LENGTH} = __webpack_require__(
|
|
2559
|
-
const debug = __webpack_require__(
|
|
2563
|
+
928: (module, exports, __webpack_require__) => {
|
|
2564
|
+
const {MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH, MAX_LENGTH} = __webpack_require__(3932);
|
|
2565
|
+
const debug = __webpack_require__(4122);
|
|
2560
2566
|
exports = module.exports = {};
|
|
2561
2567
|
const re = exports.re = [];
|
|
2562
2568
|
const safeRe = exports.safeRe = [];
|
|
@@ -2602,8 +2608,11 @@ var __webpack_modules__ = {
|
|
|
2602
2608
|
createToken("XRANGEPLAINLOOSE", `[v=\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})` + `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` + `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` + `(?:${src[t.PRERELEASELOOSE]})?${src[t.BUILD]}?` + `)?)?`);
|
|
2603
2609
|
createToken("XRANGE", `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAIN]}$`);
|
|
2604
2610
|
createToken("XRANGELOOSE", `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAINLOOSE]}$`);
|
|
2605
|
-
createToken("
|
|
2611
|
+
createToken("COERCEPLAIN", `${"(^|[^\\d])" + "(\\d{1,"}${MAX_SAFE_COMPONENT_LENGTH}})` + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`);
|
|
2612
|
+
createToken("COERCE", `${src[t.COERCEPLAIN]}(?:$|[^\\d])`);
|
|
2613
|
+
createToken("COERCEFULL", src[t.COERCEPLAIN] + `(?:${src[t.PRERELEASE]})?` + `(?:${src[t.BUILD]})?` + `(?:$|[^\\d])`);
|
|
2606
2614
|
createToken("COERCERTL", src[t.COERCE], true);
|
|
2615
|
+
createToken("COERCERTLFULL", src[t.COERCEFULL], true);
|
|
2607
2616
|
createToken("LONETILDE", "(?:~>?)");
|
|
2608
2617
|
createToken("TILDETRIM", `(\\s*)${src[t.LONETILDE]}\\s+`, true);
|
|
2609
2618
|
exports.tildeTrimReplace = "$1~";
|
|
@@ -2624,9 +2633,9 @@ var __webpack_modules__ = {
|
|
|
2624
2633
|
createToken("GTE0", "^\\s*>=\\s*0\\.0\\.0\\s*$");
|
|
2625
2634
|
createToken("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$");
|
|
2626
2635
|
},
|
|
2627
|
-
|
|
2636
|
+
8163: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2628
2637
|
"use strict";
|
|
2629
|
-
const Yallist = __webpack_require__(
|
|
2638
|
+
const Yallist = __webpack_require__(5773);
|
|
2630
2639
|
const MAX = Symbol("max");
|
|
2631
2640
|
const LENGTH = Symbol("length");
|
|
2632
2641
|
const LENGTH_CALCULATOR = Symbol("lengthCalculator");
|
|
@@ -2870,13 +2879,13 @@ var __webpack_modules__ = {
|
|
|
2870
2879
|
};
|
|
2871
2880
|
module.exports = LRUCache;
|
|
2872
2881
|
},
|
|
2873
|
-
|
|
2874
|
-
const outside = __webpack_require__(
|
|
2882
|
+
7369: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2883
|
+
const outside = __webpack_require__(2641);
|
|
2875
2884
|
const gtr = (version, range, options) => outside(version, range, ">", options);
|
|
2876
2885
|
module.exports = gtr;
|
|
2877
2886
|
},
|
|
2878
|
-
|
|
2879
|
-
const Range = __webpack_require__(
|
|
2887
|
+
8474: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2888
|
+
const Range = __webpack_require__(3597);
|
|
2880
2889
|
const intersects = (r1, r2, options) => {
|
|
2881
2890
|
r1 = new Range(r1, options);
|
|
2882
2891
|
r2 = new Range(r2, options);
|
|
@@ -2884,14 +2893,14 @@ var __webpack_modules__ = {
|
|
|
2884
2893
|
};
|
|
2885
2894
|
module.exports = intersects;
|
|
2886
2895
|
},
|
|
2887
|
-
|
|
2888
|
-
const outside = __webpack_require__(
|
|
2896
|
+
9024: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2897
|
+
const outside = __webpack_require__(2641);
|
|
2889
2898
|
const ltr = (version, range, options) => outside(version, range, "<", options);
|
|
2890
2899
|
module.exports = ltr;
|
|
2891
2900
|
},
|
|
2892
|
-
|
|
2893
|
-
const SemVer = __webpack_require__(
|
|
2894
|
-
const Range = __webpack_require__(
|
|
2901
|
+
274: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2902
|
+
const SemVer = __webpack_require__(8038);
|
|
2903
|
+
const Range = __webpack_require__(3597);
|
|
2895
2904
|
const maxSatisfying = (versions, range, options) => {
|
|
2896
2905
|
let max = null;
|
|
2897
2906
|
let maxSV = null;
|
|
@@ -2913,9 +2922,9 @@ var __webpack_modules__ = {
|
|
|
2913
2922
|
};
|
|
2914
2923
|
module.exports = maxSatisfying;
|
|
2915
2924
|
},
|
|
2916
|
-
|
|
2917
|
-
const SemVer = __webpack_require__(
|
|
2918
|
-
const Range = __webpack_require__(
|
|
2925
|
+
9304: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2926
|
+
const SemVer = __webpack_require__(8038);
|
|
2927
|
+
const Range = __webpack_require__(3597);
|
|
2919
2928
|
const minSatisfying = (versions, range, options) => {
|
|
2920
2929
|
let min = null;
|
|
2921
2930
|
let minSV = null;
|
|
@@ -2937,10 +2946,10 @@ var __webpack_modules__ = {
|
|
|
2937
2946
|
};
|
|
2938
2947
|
module.exports = minSatisfying;
|
|
2939
2948
|
},
|
|
2940
|
-
|
|
2941
|
-
const SemVer = __webpack_require__(
|
|
2942
|
-
const Range = __webpack_require__(
|
|
2943
|
-
const gt = __webpack_require__(
|
|
2949
|
+
7955: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2950
|
+
const SemVer = __webpack_require__(8038);
|
|
2951
|
+
const Range = __webpack_require__(3597);
|
|
2952
|
+
const gt = __webpack_require__(6670);
|
|
2944
2953
|
const minVersion = (range, loose) => {
|
|
2945
2954
|
range = new Range(range, loose);
|
|
2946
2955
|
let minver = new SemVer("0.0.0");
|
|
@@ -2992,16 +3001,16 @@ var __webpack_modules__ = {
|
|
|
2992
3001
|
};
|
|
2993
3002
|
module.exports = minVersion;
|
|
2994
3003
|
},
|
|
2995
|
-
|
|
2996
|
-
const SemVer = __webpack_require__(
|
|
2997
|
-
const Comparator = __webpack_require__(
|
|
3004
|
+
2641: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3005
|
+
const SemVer = __webpack_require__(8038);
|
|
3006
|
+
const Comparator = __webpack_require__(3114);
|
|
2998
3007
|
const {ANY} = Comparator;
|
|
2999
|
-
const Range = __webpack_require__(
|
|
3000
|
-
const satisfies = __webpack_require__(
|
|
3001
|
-
const gt = __webpack_require__(
|
|
3002
|
-
const lt = __webpack_require__(
|
|
3003
|
-
const lte = __webpack_require__(
|
|
3004
|
-
const gte = __webpack_require__(
|
|
3008
|
+
const Range = __webpack_require__(3597);
|
|
3009
|
+
const satisfies = __webpack_require__(6336);
|
|
3010
|
+
const gt = __webpack_require__(6670);
|
|
3011
|
+
const lt = __webpack_require__(5169);
|
|
3012
|
+
const lte = __webpack_require__(9746);
|
|
3013
|
+
const gte = __webpack_require__(6999);
|
|
3005
3014
|
const outside = (version, range, hilo, options) => {
|
|
3006
3015
|
version = new SemVer(version, options);
|
|
3007
3016
|
range = new Range(range, options);
|
|
@@ -3058,9 +3067,9 @@ var __webpack_modules__ = {
|
|
|
3058
3067
|
};
|
|
3059
3068
|
module.exports = outside;
|
|
3060
3069
|
},
|
|
3061
|
-
|
|
3062
|
-
const satisfies = __webpack_require__(
|
|
3063
|
-
const compare = __webpack_require__(
|
|
3070
|
+
6927: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3071
|
+
const satisfies = __webpack_require__(6336);
|
|
3072
|
+
const compare = __webpack_require__(6278);
|
|
3064
3073
|
module.exports = (versions, range, options) => {
|
|
3065
3074
|
const set = [];
|
|
3066
3075
|
let first = null;
|
|
@@ -3103,12 +3112,12 @@ var __webpack_modules__ = {
|
|
|
3103
3112
|
return simplified.length < original.length ? simplified : range;
|
|
3104
3113
|
};
|
|
3105
3114
|
},
|
|
3106
|
-
|
|
3107
|
-
const Range = __webpack_require__(
|
|
3108
|
-
const Comparator = __webpack_require__(
|
|
3115
|
+
4302: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3116
|
+
const Range = __webpack_require__(3597);
|
|
3117
|
+
const Comparator = __webpack_require__(3114);
|
|
3109
3118
|
const {ANY} = Comparator;
|
|
3110
|
-
const satisfies = __webpack_require__(
|
|
3111
|
-
const compare = __webpack_require__(
|
|
3119
|
+
const satisfies = __webpack_require__(6336);
|
|
3120
|
+
const compare = __webpack_require__(6278);
|
|
3112
3121
|
const subset = (sub, dom, options = {}) => {
|
|
3113
3122
|
if (sub === dom) {
|
|
3114
3123
|
return true;
|
|
@@ -3260,13 +3269,13 @@ var __webpack_modules__ = {
|
|
|
3260
3269
|
};
|
|
3261
3270
|
module.exports = subset;
|
|
3262
3271
|
},
|
|
3263
|
-
|
|
3264
|
-
const Range = __webpack_require__(
|
|
3272
|
+
9533: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3273
|
+
const Range = __webpack_require__(3597);
|
|
3265
3274
|
const toComparators = (range, options) => new Range(range, options).set.map((comp => comp.map((c => c.value)).join(" ").trim().split(" ")));
|
|
3266
3275
|
module.exports = toComparators;
|
|
3267
3276
|
},
|
|
3268
|
-
|
|
3269
|
-
const Range = __webpack_require__(
|
|
3277
|
+
7348: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3278
|
+
const Range = __webpack_require__(3597);
|
|
3270
3279
|
const validRange = (range, options) => {
|
|
3271
3280
|
try {
|
|
3272
3281
|
return new Range(range, options).range || "*";
|
|
@@ -3276,11 +3285,11 @@ var __webpack_modules__ = {
|
|
|
3276
3285
|
};
|
|
3277
3286
|
module.exports = validRange;
|
|
3278
3287
|
},
|
|
3279
|
-
|
|
3288
|
+
3533: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3280
3289
|
"use strict";
|
|
3281
|
-
const os = __webpack_require__(
|
|
3282
|
-
const tty = __webpack_require__(
|
|
3283
|
-
const hasFlag = __webpack_require__(
|
|
3290
|
+
const os = __webpack_require__(857);
|
|
3291
|
+
const tty = __webpack_require__(2018);
|
|
3292
|
+
const hasFlag = __webpack_require__(9614);
|
|
3284
3293
|
const {env} = process;
|
|
3285
3294
|
let forceColor;
|
|
3286
3295
|
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
|
|
@@ -3375,7 +3384,7 @@ var __webpack_modules__ = {
|
|
|
3375
3384
|
stderr: translateLevel(supportsColor(true, tty.isatty(2)))
|
|
3376
3385
|
};
|
|
3377
3386
|
},
|
|
3378
|
-
|
|
3387
|
+
6949: module => {
|
|
3379
3388
|
"use strict";
|
|
3380
3389
|
module.exports = function(Yallist) {
|
|
3381
3390
|
Yallist.prototype[Symbol.iterator] = function*() {
|
|
@@ -3385,7 +3394,7 @@ var __webpack_modules__ = {
|
|
|
3385
3394
|
};
|
|
3386
3395
|
};
|
|
3387
3396
|
},
|
|
3388
|
-
|
|
3397
|
+
5773: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3389
3398
|
"use strict";
|
|
3390
3399
|
module.exports = Yallist;
|
|
3391
3400
|
Yallist.Node = Node;
|
|
@@ -3746,17 +3755,17 @@ var __webpack_modules__ = {
|
|
|
3746
3755
|
}
|
|
3747
3756
|
}
|
|
3748
3757
|
try {
|
|
3749
|
-
__webpack_require__(
|
|
3758
|
+
__webpack_require__(6949)(Yallist);
|
|
3750
3759
|
} catch (er) {}
|
|
3751
3760
|
},
|
|
3752
|
-
|
|
3761
|
+
268: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
3753
3762
|
"use strict";
|
|
3754
3763
|
Object.defineProperty(exports, "__esModule", {
|
|
3755
3764
|
value: true
|
|
3756
3765
|
});
|
|
3757
3766
|
exports.NodeRelease = void 0;
|
|
3758
|
-
const process = __webpack_require__(
|
|
3759
|
-
const semver_1 = __webpack_require__(
|
|
3767
|
+
const process = __webpack_require__(932);
|
|
3768
|
+
const semver_1 = __webpack_require__(5263);
|
|
3760
3769
|
const ONE_DAY_IN_MILLISECONDS = 864e5;
|
|
3761
3770
|
class NodeRelease {
|
|
3762
3771
|
constructor(majorVersion, opts) {
|
|
@@ -3823,19 +3832,21 @@ var __webpack_modules__ = {
|
|
|
3823
3832
|
}), new NodeRelease(21, {
|
|
3824
3833
|
endOfLife: new Date("2024-06-01"),
|
|
3825
3834
|
untested: true
|
|
3835
|
+
}), new NodeRelease(22, {
|
|
3836
|
+
endOfLife: new Date("2027-04-30")
|
|
3826
3837
|
}) ];
|
|
3827
3838
|
},
|
|
3828
|
-
|
|
3839
|
+
8261: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
3829
3840
|
"use strict";
|
|
3830
3841
|
Object.defineProperty(exports, "__esModule", {
|
|
3831
3842
|
value: true
|
|
3832
3843
|
});
|
|
3833
3844
|
exports.checkNode = exports.NodeRelease = void 0;
|
|
3834
|
-
const chalk_1 = __webpack_require__(
|
|
3835
|
-
const console_1 = __webpack_require__(
|
|
3836
|
-
const process_1 = __webpack_require__(
|
|
3837
|
-
const constants_1 = __webpack_require__(
|
|
3838
|
-
var constants_2 = __webpack_require__(
|
|
3845
|
+
const chalk_1 = __webpack_require__(6042);
|
|
3846
|
+
const console_1 = __webpack_require__(4236);
|
|
3847
|
+
const process_1 = __webpack_require__(932);
|
|
3848
|
+
const constants_1 = __webpack_require__(268);
|
|
3849
|
+
var constants_2 = __webpack_require__(268);
|
|
3839
3850
|
Object.defineProperty(exports, "NodeRelease", {
|
|
3840
3851
|
enumerable: true,
|
|
3841
3852
|
get: function() {
|
|
@@ -3885,33 +3896,33 @@ var __webpack_modules__ = {
|
|
|
3885
3896
|
}
|
|
3886
3897
|
exports.checkNode = checkNode;
|
|
3887
3898
|
},
|
|
3888
|
-
|
|
3899
|
+
5276: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3889
3900
|
"use strict";
|
|
3890
|
-
const index_1 = __webpack_require__(
|
|
3901
|
+
const index_1 = __webpack_require__(8261);
|
|
3891
3902
|
(0, index_1.checkNode)();
|
|
3892
3903
|
module.exports = {};
|
|
3893
3904
|
},
|
|
3894
|
-
|
|
3905
|
+
5317: module => {
|
|
3895
3906
|
"use strict";
|
|
3896
3907
|
module.exports = require("child_process");
|
|
3897
3908
|
},
|
|
3898
|
-
|
|
3909
|
+
4236: module => {
|
|
3899
3910
|
"use strict";
|
|
3900
3911
|
module.exports = require("console");
|
|
3901
3912
|
},
|
|
3902
|
-
|
|
3913
|
+
857: module => {
|
|
3903
3914
|
"use strict";
|
|
3904
3915
|
module.exports = require("os");
|
|
3905
3916
|
},
|
|
3906
|
-
|
|
3917
|
+
6928: module => {
|
|
3907
3918
|
"use strict";
|
|
3908
3919
|
module.exports = require("path");
|
|
3909
3920
|
},
|
|
3910
|
-
|
|
3921
|
+
932: module => {
|
|
3911
3922
|
"use strict";
|
|
3912
3923
|
module.exports = require("process");
|
|
3913
3924
|
},
|
|
3914
|
-
|
|
3925
|
+
2018: module => {
|
|
3915
3926
|
"use strict";
|
|
3916
3927
|
module.exports = require("tty");
|
|
3917
3928
|
}
|
|
@@ -3951,11 +3962,11 @@ var __webpack_exports__ = {};
|
|
|
3951
3962
|
__webpack_unused_export__ = {
|
|
3952
3963
|
value: true
|
|
3953
3964
|
};
|
|
3954
|
-
__webpack_require__(
|
|
3955
|
-
const child_process_1 = __webpack_require__(
|
|
3956
|
-
const console_1 = __webpack_require__(
|
|
3957
|
-
const os_1 = __webpack_require__(
|
|
3958
|
-
const path_1 = __webpack_require__(
|
|
3965
|
+
__webpack_require__(5276);
|
|
3966
|
+
const child_process_1 = __webpack_require__(5317);
|
|
3967
|
+
const console_1 = __webpack_require__(4236);
|
|
3968
|
+
const os_1 = __webpack_require__(857);
|
|
3969
|
+
const path_1 = __webpack_require__(6928);
|
|
3959
3970
|
const child = (0, child_process_1.spawn)(process.execPath, [ ...process.execArgv, "--preserve-symlinks", (0,
|
|
3960
3971
|
path_1.resolve)(__dirname, "..", "lib", "program.js") ], {
|
|
3961
3972
|
stdio: [ "ignore", "pipe", "pipe", "pipe" ]
|