@unpackjs/core 3.3.4 → 3.3.5
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/compiled/css-loader/index.js +339 -217
- package/compiled/launch-editor/index.js +21 -20
- package/compiled/launch-editor/package.json +1 -1
- package/compiled/less-loader/index.js +8 -8
- package/compiled/postcss-loader/index.js +194 -192
- package/compiled/sass-loader/index.js +142 -156
- package/compiled/sass-loader/package.json +1 -1
- package/compiled/semver/index.js +164 -164
- package/compiled/style-loader/index.js +10 -10
- package/compiled/webpack-bundle-analyzer/index.js +2 -2
- package/compiled/webpack-merge/index.js +29 -29
- package/dist/index.cjs +139 -168
- package/dist/index.js +92 -122
- package/dist-types/bundler-config/index.d.ts.map +1 -1
- package/dist-types/bundler-config/typeCheck.d.ts.map +1 -1
- package/package.json +7 -7
package/compiled/semver/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
(() => {
|
|
2
2
|
"use strict";
|
|
3
3
|
var __webpack_modules__ = {
|
|
4
|
-
|
|
4
|
+
33: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
5
5
|
const ANY = Symbol("SemVer ANY");
|
|
6
6
|
class Comparator {
|
|
7
7
|
static get ANY() {
|
|
@@ -122,14 +122,14 @@
|
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
124
|
module.exports = Comparator;
|
|
125
|
-
const parseOptions = __nccwpck_require__(
|
|
126
|
-
const { safeRe: re, t } = __nccwpck_require__(
|
|
127
|
-
const cmp = __nccwpck_require__(
|
|
128
|
-
const debug = __nccwpck_require__(
|
|
129
|
-
const SemVer = __nccwpck_require__(
|
|
130
|
-
const Range = __nccwpck_require__(
|
|
125
|
+
const parseOptions = __nccwpck_require__(618);
|
|
126
|
+
const { safeRe: re, t } = __nccwpck_require__(213);
|
|
127
|
+
const cmp = __nccwpck_require__(552);
|
|
128
|
+
const debug = __nccwpck_require__(629);
|
|
129
|
+
const SemVer = __nccwpck_require__(25);
|
|
130
|
+
const Range = __nccwpck_require__(512);
|
|
131
131
|
},
|
|
132
|
-
|
|
132
|
+
512: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
133
133
|
const SPACE_CHARACTERS = /\s+/g;
|
|
134
134
|
class Range {
|
|
135
135
|
constructor(range, options) {
|
|
@@ -291,20 +291,20 @@
|
|
|
291
291
|
}
|
|
292
292
|
}
|
|
293
293
|
module.exports = Range;
|
|
294
|
-
const LRU = __nccwpck_require__(
|
|
294
|
+
const LRU = __nccwpck_require__(965);
|
|
295
295
|
const cache = new LRU();
|
|
296
|
-
const parseOptions = __nccwpck_require__(
|
|
297
|
-
const Comparator = __nccwpck_require__(
|
|
298
|
-
const debug = __nccwpck_require__(
|
|
299
|
-
const SemVer = __nccwpck_require__(
|
|
296
|
+
const parseOptions = __nccwpck_require__(618);
|
|
297
|
+
const Comparator = __nccwpck_require__(33);
|
|
298
|
+
const debug = __nccwpck_require__(629);
|
|
299
|
+
const SemVer = __nccwpck_require__(25);
|
|
300
300
|
const {
|
|
301
301
|
safeRe: re,
|
|
302
302
|
t,
|
|
303
303
|
comparatorTrimReplace,
|
|
304
304
|
tildeTrimReplace,
|
|
305
305
|
caretTrimReplace,
|
|
306
|
-
} = __nccwpck_require__(
|
|
307
|
-
const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __nccwpck_require__(
|
|
306
|
+
} = __nccwpck_require__(213);
|
|
307
|
+
const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __nccwpck_require__(675);
|
|
308
308
|
const isNullSet = (c) => c.value === "<0.0.0-0";
|
|
309
309
|
const isAny = (c) => c.value === "";
|
|
310
310
|
const isSatisfiable = (comparators, options) => {
|
|
@@ -538,12 +538,12 @@
|
|
|
538
538
|
return true;
|
|
539
539
|
};
|
|
540
540
|
},
|
|
541
|
-
|
|
542
|
-
const debug = __nccwpck_require__(
|
|
543
|
-
const { MAX_LENGTH, MAX_SAFE_INTEGER } = __nccwpck_require__(
|
|
544
|
-
const { safeRe: re, t } = __nccwpck_require__(
|
|
545
|
-
const parseOptions = __nccwpck_require__(
|
|
546
|
-
const { compareIdentifiers } = __nccwpck_require__(
|
|
541
|
+
25: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
542
|
+
const debug = __nccwpck_require__(629);
|
|
543
|
+
const { MAX_LENGTH, MAX_SAFE_INTEGER } = __nccwpck_require__(675);
|
|
544
|
+
const { safeRe: re, t } = __nccwpck_require__(213);
|
|
545
|
+
const parseOptions = __nccwpck_require__(618);
|
|
546
|
+
const { compareIdentifiers } = __nccwpck_require__(714);
|
|
547
547
|
class SemVer {
|
|
548
548
|
constructor(version, options) {
|
|
549
549
|
options = parseOptions(options);
|
|
@@ -826,21 +826,21 @@
|
|
|
826
826
|
}
|
|
827
827
|
module.exports = SemVer;
|
|
828
828
|
},
|
|
829
|
-
|
|
830
|
-
const parse = __nccwpck_require__(
|
|
829
|
+
253: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
830
|
+
const parse = __nccwpck_require__(239);
|
|
831
831
|
const clean = (version, options) => {
|
|
832
832
|
const s = parse(version.trim().replace(/^[=v]+/, ""), options);
|
|
833
833
|
return s ? s.version : null;
|
|
834
834
|
};
|
|
835
835
|
module.exports = clean;
|
|
836
836
|
},
|
|
837
|
-
|
|
838
|
-
const eq = __nccwpck_require__(
|
|
839
|
-
const neq = __nccwpck_require__(
|
|
840
|
-
const gt = __nccwpck_require__(
|
|
841
|
-
const gte = __nccwpck_require__(
|
|
842
|
-
const lt = __nccwpck_require__(
|
|
843
|
-
const lte = __nccwpck_require__(
|
|
837
|
+
552: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
838
|
+
const eq = __nccwpck_require__(188);
|
|
839
|
+
const neq = __nccwpck_require__(864);
|
|
840
|
+
const gt = __nccwpck_require__(693);
|
|
841
|
+
const gte = __nccwpck_require__(438);
|
|
842
|
+
const lt = __nccwpck_require__(18);
|
|
843
|
+
const lte = __nccwpck_require__(56);
|
|
844
844
|
const cmp = (a, op, b, loose) => {
|
|
845
845
|
switch (op) {
|
|
846
846
|
case "===":
|
|
@@ -879,10 +879,10 @@
|
|
|
879
879
|
};
|
|
880
880
|
module.exports = cmp;
|
|
881
881
|
},
|
|
882
|
-
|
|
883
|
-
const SemVer = __nccwpck_require__(
|
|
884
|
-
const parse = __nccwpck_require__(
|
|
885
|
-
const { safeRe: re, t } = __nccwpck_require__(
|
|
882
|
+
355: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
883
|
+
const SemVer = __nccwpck_require__(25);
|
|
884
|
+
const parse = __nccwpck_require__(239);
|
|
885
|
+
const { safeRe: re, t } = __nccwpck_require__(213);
|
|
886
886
|
const coerce = (version, options) => {
|
|
887
887
|
if (version instanceof SemVer) {
|
|
888
888
|
return version;
|
|
@@ -936,8 +936,8 @@
|
|
|
936
936
|
};
|
|
937
937
|
module.exports = coerce;
|
|
938
938
|
},
|
|
939
|
-
|
|
940
|
-
const SemVer = __nccwpck_require__(
|
|
939
|
+
486: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
940
|
+
const SemVer = __nccwpck_require__(25);
|
|
941
941
|
const compareBuild = (a, b, loose) => {
|
|
942
942
|
const versionA = new SemVer(a, loose);
|
|
943
943
|
const versionB = new SemVer(b, loose);
|
|
@@ -945,19 +945,19 @@
|
|
|
945
945
|
};
|
|
946
946
|
module.exports = compareBuild;
|
|
947
947
|
},
|
|
948
|
-
|
|
949
|
-
const compare = __nccwpck_require__(
|
|
948
|
+
288: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
949
|
+
const compare = __nccwpck_require__(895);
|
|
950
950
|
const compareLoose = (a, b) => compare(a, b, true);
|
|
951
951
|
module.exports = compareLoose;
|
|
952
952
|
},
|
|
953
|
-
|
|
954
|
-
const SemVer = __nccwpck_require__(
|
|
953
|
+
895: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
954
|
+
const SemVer = __nccwpck_require__(25);
|
|
955
955
|
const compare = (a, b, loose) =>
|
|
956
956
|
new SemVer(a, loose).compare(new SemVer(b, loose));
|
|
957
957
|
module.exports = compare;
|
|
958
958
|
},
|
|
959
|
-
|
|
960
|
-
const parse = __nccwpck_require__(
|
|
959
|
+
353: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
960
|
+
const parse = __nccwpck_require__(239);
|
|
961
961
|
const diff = (version1, version2) => {
|
|
962
962
|
const v1 = parse(version1, null, true);
|
|
963
963
|
const v2 = parse(version2, null, true);
|
|
@@ -995,23 +995,23 @@
|
|
|
995
995
|
};
|
|
996
996
|
module.exports = diff;
|
|
997
997
|
},
|
|
998
|
-
|
|
999
|
-
const compare = __nccwpck_require__(
|
|
998
|
+
188: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
999
|
+
const compare = __nccwpck_require__(895);
|
|
1000
1000
|
const eq = (a, b, loose) => compare(a, b, loose) === 0;
|
|
1001
1001
|
module.exports = eq;
|
|
1002
1002
|
},
|
|
1003
|
-
|
|
1004
|
-
const compare = __nccwpck_require__(
|
|
1003
|
+
693: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1004
|
+
const compare = __nccwpck_require__(895);
|
|
1005
1005
|
const gt = (a, b, loose) => compare(a, b, loose) > 0;
|
|
1006
1006
|
module.exports = gt;
|
|
1007
1007
|
},
|
|
1008
|
-
|
|
1009
|
-
const compare = __nccwpck_require__(
|
|
1008
|
+
438: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1009
|
+
const compare = __nccwpck_require__(895);
|
|
1010
1010
|
const gte = (a, b, loose) => compare(a, b, loose) >= 0;
|
|
1011
1011
|
module.exports = gte;
|
|
1012
1012
|
},
|
|
1013
|
-
|
|
1014
|
-
const SemVer = __nccwpck_require__(
|
|
1013
|
+
104: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1014
|
+
const SemVer = __nccwpck_require__(25);
|
|
1015
1015
|
const inc = (version, release, options, identifier, identifierBase) => {
|
|
1016
1016
|
if (typeof options === "string") {
|
|
1017
1017
|
identifierBase = identifier;
|
|
@@ -1029,33 +1029,33 @@
|
|
|
1029
1029
|
};
|
|
1030
1030
|
module.exports = inc;
|
|
1031
1031
|
},
|
|
1032
|
-
|
|
1033
|
-
const compare = __nccwpck_require__(
|
|
1032
|
+
18: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1033
|
+
const compare = __nccwpck_require__(895);
|
|
1034
1034
|
const lt = (a, b, loose) => compare(a, b, loose) < 0;
|
|
1035
1035
|
module.exports = lt;
|
|
1036
1036
|
},
|
|
1037
|
-
|
|
1038
|
-
const compare = __nccwpck_require__(
|
|
1037
|
+
56: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1038
|
+
const compare = __nccwpck_require__(895);
|
|
1039
1039
|
const lte = (a, b, loose) => compare(a, b, loose) <= 0;
|
|
1040
1040
|
module.exports = lte;
|
|
1041
1041
|
},
|
|
1042
|
-
|
|
1043
|
-
const SemVer = __nccwpck_require__(
|
|
1042
|
+
497: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1043
|
+
const SemVer = __nccwpck_require__(25);
|
|
1044
1044
|
const major = (a, loose) => new SemVer(a, loose).major;
|
|
1045
1045
|
module.exports = major;
|
|
1046
1046
|
},
|
|
1047
|
-
|
|
1048
|
-
const SemVer = __nccwpck_require__(
|
|
1047
|
+
37: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1048
|
+
const SemVer = __nccwpck_require__(25);
|
|
1049
1049
|
const minor = (a, loose) => new SemVer(a, loose).minor;
|
|
1050
1050
|
module.exports = minor;
|
|
1051
1051
|
},
|
|
1052
|
-
|
|
1053
|
-
const compare = __nccwpck_require__(
|
|
1052
|
+
864: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1053
|
+
const compare = __nccwpck_require__(895);
|
|
1054
1054
|
const neq = (a, b, loose) => compare(a, b, loose) !== 0;
|
|
1055
1055
|
module.exports = neq;
|
|
1056
1056
|
},
|
|
1057
|
-
|
|
1058
|
-
const SemVer = __nccwpck_require__(
|
|
1057
|
+
239: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1058
|
+
const SemVer = __nccwpck_require__(25);
|
|
1059
1059
|
const parse = (version, options, throwErrors = false) => {
|
|
1060
1060
|
if (version instanceof SemVer) {
|
|
1061
1061
|
return version;
|
|
@@ -1071,32 +1071,32 @@
|
|
|
1071
1071
|
};
|
|
1072
1072
|
module.exports = parse;
|
|
1073
1073
|
},
|
|
1074
|
-
|
|
1075
|
-
const SemVer = __nccwpck_require__(
|
|
1074
|
+
518: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1075
|
+
const SemVer = __nccwpck_require__(25);
|
|
1076
1076
|
const patch = (a, loose) => new SemVer(a, loose).patch;
|
|
1077
1077
|
module.exports = patch;
|
|
1078
1078
|
},
|
|
1079
|
-
|
|
1080
|
-
const parse = __nccwpck_require__(
|
|
1079
|
+
216: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1080
|
+
const parse = __nccwpck_require__(239);
|
|
1081
1081
|
const prerelease = (version, options) => {
|
|
1082
1082
|
const parsed = parse(version, options);
|
|
1083
1083
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
1084
1084
|
};
|
|
1085
1085
|
module.exports = prerelease;
|
|
1086
1086
|
},
|
|
1087
|
-
|
|
1088
|
-
const compare = __nccwpck_require__(
|
|
1087
|
+
135: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1088
|
+
const compare = __nccwpck_require__(895);
|
|
1089
1089
|
const rcompare = (a, b, loose) => compare(b, a, loose);
|
|
1090
1090
|
module.exports = rcompare;
|
|
1091
1091
|
},
|
|
1092
|
-
|
|
1093
|
-
const compareBuild = __nccwpck_require__(
|
|
1092
|
+
942: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1093
|
+
const compareBuild = __nccwpck_require__(486);
|
|
1094
1094
|
const rsort = (list, loose) =>
|
|
1095
1095
|
list.sort((a, b) => compareBuild(b, a, loose));
|
|
1096
1096
|
module.exports = rsort;
|
|
1097
1097
|
},
|
|
1098
|
-
|
|
1099
|
-
const Range = __nccwpck_require__(
|
|
1098
|
+
505: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1099
|
+
const Range = __nccwpck_require__(512);
|
|
1100
1100
|
const satisfies = (version, range, options) => {
|
|
1101
1101
|
try {
|
|
1102
1102
|
range = new Range(range, options);
|
|
@@ -1107,62 +1107,62 @@
|
|
|
1107
1107
|
};
|
|
1108
1108
|
module.exports = satisfies;
|
|
1109
1109
|
},
|
|
1110
|
-
|
|
1111
|
-
const compareBuild = __nccwpck_require__(
|
|
1110
|
+
182: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1111
|
+
const compareBuild = __nccwpck_require__(486);
|
|
1112
1112
|
const sort = (list, loose) =>
|
|
1113
1113
|
list.sort((a, b) => compareBuild(a, b, loose));
|
|
1114
1114
|
module.exports = sort;
|
|
1115
1115
|
},
|
|
1116
|
-
|
|
1117
|
-
const parse = __nccwpck_require__(
|
|
1116
|
+
238: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1117
|
+
const parse = __nccwpck_require__(239);
|
|
1118
1118
|
const valid = (version, options) => {
|
|
1119
1119
|
const v = parse(version, options);
|
|
1120
1120
|
return v ? v.version : null;
|
|
1121
1121
|
};
|
|
1122
1122
|
module.exports = valid;
|
|
1123
1123
|
},
|
|
1124
|
-
|
|
1125
|
-
const internalRe = __nccwpck_require__(
|
|
1126
|
-
const constants = __nccwpck_require__(
|
|
1127
|
-
const SemVer = __nccwpck_require__(
|
|
1128
|
-
const identifiers = __nccwpck_require__(
|
|
1129
|
-
const parse = __nccwpck_require__(
|
|
1130
|
-
const valid = __nccwpck_require__(
|
|
1131
|
-
const clean = __nccwpck_require__(
|
|
1132
|
-
const inc = __nccwpck_require__(
|
|
1133
|
-
const diff = __nccwpck_require__(
|
|
1134
|
-
const major = __nccwpck_require__(
|
|
1135
|
-
const minor = __nccwpck_require__(
|
|
1136
|
-
const patch = __nccwpck_require__(
|
|
1137
|
-
const prerelease = __nccwpck_require__(
|
|
1138
|
-
const compare = __nccwpck_require__(
|
|
1139
|
-
const rcompare = __nccwpck_require__(
|
|
1140
|
-
const compareLoose = __nccwpck_require__(
|
|
1141
|
-
const compareBuild = __nccwpck_require__(
|
|
1142
|
-
const sort = __nccwpck_require__(
|
|
1143
|
-
const rsort = __nccwpck_require__(
|
|
1144
|
-
const gt = __nccwpck_require__(
|
|
1145
|
-
const lt = __nccwpck_require__(
|
|
1146
|
-
const eq = __nccwpck_require__(
|
|
1147
|
-
const neq = __nccwpck_require__(
|
|
1148
|
-
const gte = __nccwpck_require__(
|
|
1149
|
-
const lte = __nccwpck_require__(
|
|
1150
|
-
const cmp = __nccwpck_require__(
|
|
1151
|
-
const coerce = __nccwpck_require__(
|
|
1152
|
-
const Comparator = __nccwpck_require__(
|
|
1153
|
-
const Range = __nccwpck_require__(
|
|
1154
|
-
const satisfies = __nccwpck_require__(
|
|
1155
|
-
const toComparators = __nccwpck_require__(
|
|
1156
|
-
const maxSatisfying = __nccwpck_require__(
|
|
1157
|
-
const minSatisfying = __nccwpck_require__(
|
|
1158
|
-
const minVersion = __nccwpck_require__(
|
|
1159
|
-
const validRange = __nccwpck_require__(
|
|
1160
|
-
const outside = __nccwpck_require__(
|
|
1161
|
-
const gtr = __nccwpck_require__(
|
|
1162
|
-
const ltr = __nccwpck_require__(
|
|
1163
|
-
const intersects = __nccwpck_require__(
|
|
1164
|
-
const simplifyRange = __nccwpck_require__(
|
|
1165
|
-
const subset = __nccwpck_require__(
|
|
1124
|
+
758: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1125
|
+
const internalRe = __nccwpck_require__(213);
|
|
1126
|
+
const constants = __nccwpck_require__(675);
|
|
1127
|
+
const SemVer = __nccwpck_require__(25);
|
|
1128
|
+
const identifiers = __nccwpck_require__(714);
|
|
1129
|
+
const parse = __nccwpck_require__(239);
|
|
1130
|
+
const valid = __nccwpck_require__(238);
|
|
1131
|
+
const clean = __nccwpck_require__(253);
|
|
1132
|
+
const inc = __nccwpck_require__(104);
|
|
1133
|
+
const diff = __nccwpck_require__(353);
|
|
1134
|
+
const major = __nccwpck_require__(497);
|
|
1135
|
+
const minor = __nccwpck_require__(37);
|
|
1136
|
+
const patch = __nccwpck_require__(518);
|
|
1137
|
+
const prerelease = __nccwpck_require__(216);
|
|
1138
|
+
const compare = __nccwpck_require__(895);
|
|
1139
|
+
const rcompare = __nccwpck_require__(135);
|
|
1140
|
+
const compareLoose = __nccwpck_require__(288);
|
|
1141
|
+
const compareBuild = __nccwpck_require__(486);
|
|
1142
|
+
const sort = __nccwpck_require__(182);
|
|
1143
|
+
const rsort = __nccwpck_require__(942);
|
|
1144
|
+
const gt = __nccwpck_require__(693);
|
|
1145
|
+
const lt = __nccwpck_require__(18);
|
|
1146
|
+
const eq = __nccwpck_require__(188);
|
|
1147
|
+
const neq = __nccwpck_require__(864);
|
|
1148
|
+
const gte = __nccwpck_require__(438);
|
|
1149
|
+
const lte = __nccwpck_require__(56);
|
|
1150
|
+
const cmp = __nccwpck_require__(552);
|
|
1151
|
+
const coerce = __nccwpck_require__(355);
|
|
1152
|
+
const Comparator = __nccwpck_require__(33);
|
|
1153
|
+
const Range = __nccwpck_require__(512);
|
|
1154
|
+
const satisfies = __nccwpck_require__(505);
|
|
1155
|
+
const toComparators = __nccwpck_require__(440);
|
|
1156
|
+
const maxSatisfying = __nccwpck_require__(691);
|
|
1157
|
+
const minSatisfying = __nccwpck_require__(729);
|
|
1158
|
+
const minVersion = __nccwpck_require__(900);
|
|
1159
|
+
const validRange = __nccwpck_require__(831);
|
|
1160
|
+
const outside = __nccwpck_require__(938);
|
|
1161
|
+
const gtr = __nccwpck_require__(814);
|
|
1162
|
+
const ltr = __nccwpck_require__(571);
|
|
1163
|
+
const intersects = __nccwpck_require__(515);
|
|
1164
|
+
const simplifyRange = __nccwpck_require__(418);
|
|
1165
|
+
const subset = __nccwpck_require__(283);
|
|
1166
1166
|
module.exports = {
|
|
1167
1167
|
parse,
|
|
1168
1168
|
valid,
|
|
@@ -1211,7 +1211,7 @@
|
|
|
1211
1211
|
rcompareIdentifiers: identifiers.rcompareIdentifiers,
|
|
1212
1212
|
};
|
|
1213
1213
|
},
|
|
1214
|
-
|
|
1214
|
+
675: (module) => {
|
|
1215
1215
|
const SEMVER_SPEC_VERSION = "2.0.0";
|
|
1216
1216
|
const MAX_LENGTH = 256;
|
|
1217
1217
|
const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991;
|
|
@@ -1237,7 +1237,7 @@
|
|
|
1237
1237
|
FLAG_LOOSE: 2,
|
|
1238
1238
|
};
|
|
1239
1239
|
},
|
|
1240
|
-
|
|
1240
|
+
629: (module) => {
|
|
1241
1241
|
const debug =
|
|
1242
1242
|
typeof process === "object" &&
|
|
1243
1243
|
process.env &&
|
|
@@ -1247,7 +1247,7 @@
|
|
|
1247
1247
|
: () => {};
|
|
1248
1248
|
module.exports = debug;
|
|
1249
1249
|
},
|
|
1250
|
-
|
|
1250
|
+
714: (module) => {
|
|
1251
1251
|
const numeric = /^[0-9]+$/;
|
|
1252
1252
|
const compareIdentifiers = (a, b) => {
|
|
1253
1253
|
if (typeof a === "number" && typeof b === "number") {
|
|
@@ -1272,7 +1272,7 @@
|
|
|
1272
1272
|
const rcompareIdentifiers = (a, b) => compareIdentifiers(b, a);
|
|
1273
1273
|
module.exports = { compareIdentifiers, rcompareIdentifiers };
|
|
1274
1274
|
},
|
|
1275
|
-
|
|
1275
|
+
965: (module) => {
|
|
1276
1276
|
class LRUCache {
|
|
1277
1277
|
constructor() {
|
|
1278
1278
|
this.max = 1e3;
|
|
@@ -1305,7 +1305,7 @@
|
|
|
1305
1305
|
}
|
|
1306
1306
|
module.exports = LRUCache;
|
|
1307
1307
|
},
|
|
1308
|
-
|
|
1308
|
+
618: (module) => {
|
|
1309
1309
|
const looseOption = Object.freeze({ loose: true });
|
|
1310
1310
|
const emptyOpts = Object.freeze({});
|
|
1311
1311
|
const parseOptions = (options) => {
|
|
@@ -1319,10 +1319,10 @@
|
|
|
1319
1319
|
};
|
|
1320
1320
|
module.exports = parseOptions;
|
|
1321
1321
|
},
|
|
1322
|
-
|
|
1322
|
+
213: (module, exports, __nccwpck_require__) => {
|
|
1323
1323
|
const { MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH, MAX_LENGTH } =
|
|
1324
|
-
__nccwpck_require__(
|
|
1325
|
-
const debug = __nccwpck_require__(
|
|
1324
|
+
__nccwpck_require__(675);
|
|
1325
|
+
const debug = __nccwpck_require__(629);
|
|
1326
1326
|
exports = module.exports = {};
|
|
1327
1327
|
const re = (exports.re = []);
|
|
1328
1328
|
const safeRe = (exports.safeRe = []);
|
|
@@ -1490,14 +1490,14 @@
|
|
|
1490
1490
|
createToken("GTE0", "^\\s*>=\\s*0\\.0\\.0\\s*$");
|
|
1491
1491
|
createToken("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$");
|
|
1492
1492
|
},
|
|
1493
|
-
|
|
1494
|
-
const outside = __nccwpck_require__(
|
|
1493
|
+
814: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1494
|
+
const outside = __nccwpck_require__(938);
|
|
1495
1495
|
const gtr = (version, range, options) =>
|
|
1496
1496
|
outside(version, range, ">", options);
|
|
1497
1497
|
module.exports = gtr;
|
|
1498
1498
|
},
|
|
1499
|
-
|
|
1500
|
-
const Range = __nccwpck_require__(
|
|
1499
|
+
515: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1500
|
+
const Range = __nccwpck_require__(512);
|
|
1501
1501
|
const intersects = (r1, r2, options) => {
|
|
1502
1502
|
r1 = new Range(r1, options);
|
|
1503
1503
|
r2 = new Range(r2, options);
|
|
@@ -1505,15 +1505,15 @@
|
|
|
1505
1505
|
};
|
|
1506
1506
|
module.exports = intersects;
|
|
1507
1507
|
},
|
|
1508
|
-
|
|
1509
|
-
const outside = __nccwpck_require__(
|
|
1508
|
+
571: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1509
|
+
const outside = __nccwpck_require__(938);
|
|
1510
1510
|
const ltr = (version, range, options) =>
|
|
1511
1511
|
outside(version, range, "<", options);
|
|
1512
1512
|
module.exports = ltr;
|
|
1513
1513
|
},
|
|
1514
|
-
|
|
1515
|
-
const SemVer = __nccwpck_require__(
|
|
1516
|
-
const Range = __nccwpck_require__(
|
|
1514
|
+
691: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1515
|
+
const SemVer = __nccwpck_require__(25);
|
|
1516
|
+
const Range = __nccwpck_require__(512);
|
|
1517
1517
|
const maxSatisfying = (versions, range, options) => {
|
|
1518
1518
|
let max = null;
|
|
1519
1519
|
let maxSV = null;
|
|
@@ -1535,9 +1535,9 @@
|
|
|
1535
1535
|
};
|
|
1536
1536
|
module.exports = maxSatisfying;
|
|
1537
1537
|
},
|
|
1538
|
-
|
|
1539
|
-
const SemVer = __nccwpck_require__(
|
|
1540
|
-
const Range = __nccwpck_require__(
|
|
1538
|
+
729: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1539
|
+
const SemVer = __nccwpck_require__(25);
|
|
1540
|
+
const Range = __nccwpck_require__(512);
|
|
1541
1541
|
const minSatisfying = (versions, range, options) => {
|
|
1542
1542
|
let min = null;
|
|
1543
1543
|
let minSV = null;
|
|
@@ -1559,10 +1559,10 @@
|
|
|
1559
1559
|
};
|
|
1560
1560
|
module.exports = minSatisfying;
|
|
1561
1561
|
},
|
|
1562
|
-
|
|
1563
|
-
const SemVer = __nccwpck_require__(
|
|
1564
|
-
const Range = __nccwpck_require__(
|
|
1565
|
-
const gt = __nccwpck_require__(
|
|
1562
|
+
900: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1563
|
+
const SemVer = __nccwpck_require__(25);
|
|
1564
|
+
const Range = __nccwpck_require__(512);
|
|
1565
|
+
const gt = __nccwpck_require__(693);
|
|
1566
1566
|
const minVersion = (range, loose) => {
|
|
1567
1567
|
range = new Range(range, loose);
|
|
1568
1568
|
let minver = new SemVer("0.0.0");
|
|
@@ -1611,16 +1611,16 @@
|
|
|
1611
1611
|
};
|
|
1612
1612
|
module.exports = minVersion;
|
|
1613
1613
|
},
|
|
1614
|
-
|
|
1615
|
-
const SemVer = __nccwpck_require__(
|
|
1616
|
-
const Comparator = __nccwpck_require__(
|
|
1614
|
+
938: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1615
|
+
const SemVer = __nccwpck_require__(25);
|
|
1616
|
+
const Comparator = __nccwpck_require__(33);
|
|
1617
1617
|
const { ANY } = Comparator;
|
|
1618
|
-
const Range = __nccwpck_require__(
|
|
1619
|
-
const satisfies = __nccwpck_require__(
|
|
1620
|
-
const gt = __nccwpck_require__(
|
|
1621
|
-
const lt = __nccwpck_require__(
|
|
1622
|
-
const lte = __nccwpck_require__(
|
|
1623
|
-
const gte = __nccwpck_require__(
|
|
1618
|
+
const Range = __nccwpck_require__(512);
|
|
1619
|
+
const satisfies = __nccwpck_require__(505);
|
|
1620
|
+
const gt = __nccwpck_require__(693);
|
|
1621
|
+
const lt = __nccwpck_require__(18);
|
|
1622
|
+
const lte = __nccwpck_require__(56);
|
|
1623
|
+
const gte = __nccwpck_require__(438);
|
|
1624
1624
|
const outside = (version, range, hilo, options) => {
|
|
1625
1625
|
version = new SemVer(version, options);
|
|
1626
1626
|
range = new Range(range, options);
|
|
@@ -1678,9 +1678,9 @@
|
|
|
1678
1678
|
};
|
|
1679
1679
|
module.exports = outside;
|
|
1680
1680
|
},
|
|
1681
|
-
|
|
1682
|
-
const satisfies = __nccwpck_require__(
|
|
1683
|
-
const compare = __nccwpck_require__(
|
|
1681
|
+
418: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1682
|
+
const satisfies = __nccwpck_require__(505);
|
|
1683
|
+
const compare = __nccwpck_require__(895);
|
|
1684
1684
|
module.exports = (versions, range, options) => {
|
|
1685
1685
|
const set = [];
|
|
1686
1686
|
let first = null;
|
|
@@ -1724,12 +1724,12 @@
|
|
|
1724
1724
|
return simplified.length < original.length ? simplified : range;
|
|
1725
1725
|
};
|
|
1726
1726
|
},
|
|
1727
|
-
|
|
1728
|
-
const Range = __nccwpck_require__(
|
|
1729
|
-
const Comparator = __nccwpck_require__(
|
|
1727
|
+
283: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1728
|
+
const Range = __nccwpck_require__(512);
|
|
1729
|
+
const Comparator = __nccwpck_require__(33);
|
|
1730
1730
|
const { ANY } = Comparator;
|
|
1731
|
-
const satisfies = __nccwpck_require__(
|
|
1732
|
-
const compare = __nccwpck_require__(
|
|
1731
|
+
const satisfies = __nccwpck_require__(505);
|
|
1732
|
+
const compare = __nccwpck_require__(895);
|
|
1733
1733
|
const subset = (sub, dom, options = {}) => {
|
|
1734
1734
|
if (sub === dom) {
|
|
1735
1735
|
return true;
|
|
@@ -1925,8 +1925,8 @@
|
|
|
1925
1925
|
};
|
|
1926
1926
|
module.exports = subset;
|
|
1927
1927
|
},
|
|
1928
|
-
|
|
1929
|
-
const Range = __nccwpck_require__(
|
|
1928
|
+
440: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1929
|
+
const Range = __nccwpck_require__(512);
|
|
1930
1930
|
const toComparators = (range, options) =>
|
|
1931
1931
|
new Range(range, options).set.map((comp) =>
|
|
1932
1932
|
comp
|
|
@@ -1937,8 +1937,8 @@
|
|
|
1937
1937
|
);
|
|
1938
1938
|
module.exports = toComparators;
|
|
1939
1939
|
},
|
|
1940
|
-
|
|
1941
|
-
const Range = __nccwpck_require__(
|
|
1940
|
+
831: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1941
|
+
const Range = __nccwpck_require__(512);
|
|
1942
1942
|
const validRange = (range, options) => {
|
|
1943
1943
|
try {
|
|
1944
1944
|
return new Range(range, options).range || "*";
|
|
@@ -1971,6 +1971,6 @@
|
|
|
1971
1971
|
}
|
|
1972
1972
|
if (typeof __nccwpck_require__ !== "undefined")
|
|
1973
1973
|
__nccwpck_require__.ab = __dirname + "/";
|
|
1974
|
-
var __webpack_exports__ = __nccwpck_require__(
|
|
1974
|
+
var __webpack_exports__ = __nccwpck_require__(758);
|
|
1975
1975
|
module.exports = __webpack_exports__;
|
|
1976
1976
|
})();
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
(() => {
|
|
2
2
|
"use strict";
|
|
3
3
|
var __webpack_modules__ = {
|
|
4
|
-
|
|
5
|
-
const loader = __nccwpck_require__(
|
|
4
|
+
253: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
5
|
+
const loader = __nccwpck_require__(255);
|
|
6
6
|
module.exports = loader.default;
|
|
7
7
|
},
|
|
8
|
-
|
|
8
|
+
255: (__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
10
|
exports["default"] = void 0;
|
|
11
11
|
var _path = _interopRequireDefault(__nccwpck_require__(928));
|
|
12
|
-
var _utils = __nccwpck_require__(
|
|
13
|
-
var _options = _interopRequireDefault(__nccwpck_require__(
|
|
12
|
+
var _utils = __nccwpck_require__(586);
|
|
13
|
+
var _options = _interopRequireDefault(__nccwpck_require__(121));
|
|
14
14
|
function _interopRequireDefault(obj) {
|
|
15
15
|
return obj && obj.__esModule ? obj : { default: obj };
|
|
16
16
|
}
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
};
|
|
96
96
|
var _default = (exports["default"] = loader);
|
|
97
97
|
},
|
|
98
|
-
|
|
98
|
+
132: (module) => {
|
|
99
99
|
function isEqualLocals(a, b, isNamedExport) {
|
|
100
100
|
if ((!a && b) || (a && !b)) {
|
|
101
101
|
return false;
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
}
|
|
122
122
|
module.exports = isEqualLocals;
|
|
123
123
|
},
|
|
124
|
-
|
|
124
|
+
586: (__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
125
125
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126
126
|
exports.getExportLazyStyleCode = getExportLazyStyleCode;
|
|
127
127
|
exports.getExportStyleCode = getExportStyleCode;
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
exports.getdomAPI = getdomAPI;
|
|
143
143
|
exports.stringifyRequest = stringifyRequest;
|
|
144
144
|
var _path = _interopRequireDefault(__nccwpck_require__(928));
|
|
145
|
-
var _isEqualLocals = _interopRequireDefault(__nccwpck_require__(
|
|
145
|
+
var _isEqualLocals = _interopRequireDefault(__nccwpck_require__(132));
|
|
146
146
|
function _interopRequireDefault(obj) {
|
|
147
147
|
return obj && obj.__esModule ? obj : { default: obj };
|
|
148
148
|
}
|
|
@@ -337,7 +337,7 @@
|
|
|
337
337
|
928: (module) => {
|
|
338
338
|
module.exports = require("path");
|
|
339
339
|
},
|
|
340
|
-
|
|
340
|
+
121: (module) => {
|
|
341
341
|
module.exports = JSON.parse(
|
|
342
342
|
'{"title":"Style Loader options","type":"object","properties":{"injectType":{"description":"Allows to setup how styles will be injected into DOM.","link":"https://github.com/webpack-contrib/style-loader#injecttype","enum":["styleTag","singletonStyleTag","autoStyleTag","lazyStyleTag","lazySingletonStyleTag","lazyAutoStyleTag","linkTag"]},"attributes":{"description":"Adds custom attributes to tag.","link":"https://github.com/webpack-contrib/style-loader#attributes","type":"object"},"insert":{"description":"Inserts `<style>`/`<link>` at the given position.","link":"https://github.com/webpack-contrib/style-loader#insert","type":"string"},"base":{"description":"Sets module ID base for DLLPlugin.","link":"https://github.com/webpack-contrib/style-loader#base","type":"number"},"esModule":{"description":"Use the ES modules syntax.","link":"https://github.com/webpack-contrib/css-loader#esmodule","type":"boolean"},"styleTagTransform":{"description":"Transform tag and css when insert \'style\' tag into the DOM","link":"https://github.com/webpack-contrib/style-loader#styleTagTransform","type":"string"}},"additionalProperties":false}',
|
|
343
343
|
);
|
|
@@ -365,6 +365,6 @@
|
|
|
365
365
|
}
|
|
366
366
|
if (typeof __nccwpck_require__ !== "undefined")
|
|
367
367
|
__nccwpck_require__.ab = __dirname + "/";
|
|
368
|
-
var __webpack_exports__ = __nccwpck_require__(
|
|
368
|
+
var __webpack_exports__ = __nccwpck_require__(253);
|
|
369
369
|
module.exports = __webpack_exports__;
|
|
370
370
|
})();
|