@intelligentgraphics/ig.gfx.packager 2.0.5 → 2.0.9
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/build/index.js +918 -413
- package/build/index.js.map +1 -1
- package/locales/en.json +6 -3
- package/package.json +4 -4
- package/readme.md +33 -0
package/build/index.js
CHANGED
|
@@ -1321,29 +1321,30 @@ async function iterateAsync(basePath, filePath, segments) {
|
|
|
1321
1321
|
Object.defineProperty(exports, "__esModule", ({
|
|
1322
1322
|
value: true
|
|
1323
1323
|
}));
|
|
1324
|
-
exports.
|
|
1325
|
-
exports.
|
|
1326
|
-
exports.
|
|
1327
|
-
exports.
|
|
1328
|
-
exports.
|
|
1324
|
+
exports.__assign = void 0;
|
|
1325
|
+
exports.__asyncDelegator = __asyncDelegator;
|
|
1326
|
+
exports.__asyncGenerator = __asyncGenerator;
|
|
1327
|
+
exports.__asyncValues = __asyncValues;
|
|
1328
|
+
exports.__await = __await;
|
|
1329
1329
|
exports.__awaiter = __awaiter;
|
|
1330
|
-
exports.
|
|
1330
|
+
exports.__classPrivateFieldGet = __classPrivateFieldGet;
|
|
1331
|
+
exports.__classPrivateFieldSet = __classPrivateFieldSet;
|
|
1332
|
+
exports.__createBinding = void 0;
|
|
1333
|
+
exports.__decorate = __decorate;
|
|
1331
1334
|
exports.__exportStar = __exportStar;
|
|
1332
|
-
exports.
|
|
1335
|
+
exports.__extends = __extends;
|
|
1336
|
+
exports.__generator = __generator;
|
|
1337
|
+
exports.__importDefault = __importDefault;
|
|
1338
|
+
exports.__importStar = __importStar;
|
|
1339
|
+
exports.__makeTemplateObject = __makeTemplateObject;
|
|
1340
|
+
exports.__metadata = __metadata;
|
|
1341
|
+
exports.__param = __param;
|
|
1333
1342
|
exports.__read = __read;
|
|
1343
|
+
exports.__rest = __rest;
|
|
1334
1344
|
exports.__spread = __spread;
|
|
1335
|
-
exports.__spreadArrays = __spreadArrays;
|
|
1336
1345
|
exports.__spreadArray = __spreadArray;
|
|
1337
|
-
exports.
|
|
1338
|
-
exports.
|
|
1339
|
-
exports.__asyncDelegator = __asyncDelegator;
|
|
1340
|
-
exports.__asyncValues = __asyncValues;
|
|
1341
|
-
exports.__makeTemplateObject = __makeTemplateObject;
|
|
1342
|
-
exports.__importStar = __importStar;
|
|
1343
|
-
exports.__importDefault = __importDefault;
|
|
1344
|
-
exports.__classPrivateFieldGet = __classPrivateFieldGet;
|
|
1345
|
-
exports.__classPrivateFieldSet = __classPrivateFieldSet;
|
|
1346
|
-
exports.__createBinding = exports.__assign = void 0;
|
|
1346
|
+
exports.__spreadArrays = __spreadArrays;
|
|
1347
|
+
exports.__values = __values;
|
|
1347
1348
|
|
|
1348
1349
|
__webpack_require__(/*! core-js/modules/es.promise.js */ "../../node_modules/core-js/modules/es.promise.js");
|
|
1349
1350
|
|
|
@@ -1660,7 +1661,7 @@ function __spreadArray(to, from, pack) {
|
|
|
1660
1661
|
ar[i] = from[i];
|
|
1661
1662
|
}
|
|
1662
1663
|
}
|
|
1663
|
-
return to.concat(ar || from);
|
|
1664
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
1664
1665
|
}
|
|
1665
1666
|
|
|
1666
1667
|
function __await(v) {
|
|
@@ -1835,7 +1836,7 @@ class Command {
|
|
|
1835
1836
|
}
|
|
1836
1837
|
|
|
1837
1838
|
const options = this.params.createOptions();
|
|
1838
|
-
const configValues = config_1.getConfigValues(this.params.name);
|
|
1839
|
+
const configValues = (0, config_1.getConfigValues)(this.params.name);
|
|
1839
1840
|
|
|
1840
1841
|
for (const entry in configValues) {
|
|
1841
1842
|
const option = options[entry];
|
|
@@ -1855,7 +1856,7 @@ class Command {
|
|
|
1855
1856
|
configOptions[params.name + "." + key] = params.configuration[key];
|
|
1856
1857
|
}
|
|
1857
1858
|
|
|
1858
|
-
config_1.registerConfigOptions(configOptions);
|
|
1859
|
+
(0, config_1.registerConfigOptions)(configOptions);
|
|
1859
1860
|
}
|
|
1860
1861
|
}
|
|
1861
1862
|
|
|
@@ -1940,14 +1941,14 @@ const configOptions = new Map();
|
|
|
1940
1941
|
let cached;
|
|
1941
1942
|
|
|
1942
1943
|
const getConfigValue = name => {
|
|
1943
|
-
const config = exports.readConfig();
|
|
1944
|
+
const config = (0, exports.readConfig)();
|
|
1944
1945
|
return config[name];
|
|
1945
1946
|
};
|
|
1946
1947
|
|
|
1947
1948
|
exports.getConfigValue = getConfigValue;
|
|
1948
1949
|
|
|
1949
1950
|
const getConfigValues = namespace => {
|
|
1950
|
-
const config = exports.readConfig();
|
|
1951
|
+
const config = (0, exports.readConfig)();
|
|
1951
1952
|
|
|
1952
1953
|
if (!namespace) {
|
|
1953
1954
|
return config;
|
|
@@ -1969,7 +1970,7 @@ const setConfigValue = (key, value) => {
|
|
|
1969
1970
|
throw new Error("Unkown config option");
|
|
1970
1971
|
}
|
|
1971
1972
|
|
|
1972
|
-
let config = exports.readConfig();
|
|
1973
|
+
let config = (0, exports.readConfig)();
|
|
1973
1974
|
|
|
1974
1975
|
if (!config) {
|
|
1975
1976
|
config = {};
|
|
@@ -1990,7 +1991,7 @@ const setConfigValue = (key, value) => {
|
|
|
1990
1991
|
}
|
|
1991
1992
|
|
|
1992
1993
|
config[key] = value;
|
|
1993
|
-
exports.writeConfig(config);
|
|
1994
|
+
(0, exports.writeConfig)(config);
|
|
1994
1995
|
console.log(`Set "${key}" to "${value}"`);
|
|
1995
1996
|
return config;
|
|
1996
1997
|
};
|
|
@@ -2139,7 +2140,7 @@ const findExecutable = (command, tryDirs) => {
|
|
|
2139
2140
|
try {
|
|
2140
2141
|
const commandPath = path.join(binPath, fileName);
|
|
2141
2142
|
fs.readFileSync(commandPath);
|
|
2142
|
-
return exports.escapePathArg(commandPath);
|
|
2143
|
+
return (0, exports.escapePathArg)(commandPath);
|
|
2143
2144
|
} catch (err) {}
|
|
2144
2145
|
}
|
|
2145
2146
|
|
|
@@ -2152,7 +2153,7 @@ const escapeArg = input => `"${input}"`;
|
|
|
2152
2153
|
|
|
2153
2154
|
exports.escapeArg = escapeArg;
|
|
2154
2155
|
|
|
2155
|
-
const escapePathArg = input => path.isAbsolute(input) ? exports.escapeArg(true_case_path_1.trueCasePathSync(input) || input) : exports.escapeArg(input);
|
|
2156
|
+
const escapePathArg = input => path.isAbsolute(input) ? (0, exports.escapeArg)((0, true_case_path_1.trueCasePathSync)(input) || input) : (0, exports.escapeArg)(input);
|
|
2156
2157
|
|
|
2157
2158
|
exports.escapePathArg = escapePathArg;
|
|
2158
2159
|
|
|
@@ -2189,7 +2190,7 @@ const findFile = (fileName, basePath) => {
|
|
|
2189
2190
|
|
|
2190
2191
|
while (currentPath !== undefined) {
|
|
2191
2192
|
const filePath = path.join(currentPath, fileName);
|
|
2192
|
-
const file = exports.readFile(filePath);
|
|
2193
|
+
const file = (0, exports.readFile)(filePath);
|
|
2193
2194
|
|
|
2194
2195
|
if (file !== undefined) {
|
|
2195
2196
|
return filePath;
|
|
@@ -2242,7 +2243,7 @@ const readJsonFile = filePath => {
|
|
|
2242
2243
|
return cached;
|
|
2243
2244
|
}
|
|
2244
2245
|
|
|
2245
|
-
const file = exports.readFile(filePath);
|
|
2246
|
+
const file = (0, exports.readFile)(filePath);
|
|
2246
2247
|
|
|
2247
2248
|
if (!file) {
|
|
2248
2249
|
return undefined;
|
|
@@ -2258,11 +2259,11 @@ const readJsonFile = filePath => {
|
|
|
2258
2259
|
exports.readJsonFile = readJsonFile;
|
|
2259
2260
|
|
|
2260
2261
|
const updateJSONFile = (filePath, update) => {
|
|
2261
|
-
const currentContent = exports.readJsonFile(filePath);
|
|
2262
|
+
const currentContent = (0, exports.readJsonFile)(filePath);
|
|
2262
2263
|
const newContent = update(currentContent);
|
|
2263
2264
|
|
|
2264
2265
|
if (newContent) {
|
|
2265
|
-
exports.writeFile(filePath, newContent);
|
|
2266
|
+
(0, exports.writeFile)(filePath, newContent);
|
|
2266
2267
|
}
|
|
2267
2268
|
|
|
2268
2269
|
return newContent;
|
|
@@ -2372,7 +2373,7 @@ const getDir = async (cwd = process.cwd()) => {
|
|
|
2372
2373
|
exports.getDir = getDir;
|
|
2373
2374
|
|
|
2374
2375
|
const getLastTag = async (packageName, packageFolder) => {
|
|
2375
|
-
const rootGitDir = await exports.getDir(packageFolder);
|
|
2376
|
+
const rootGitDir = await (0, exports.getDir)(packageFolder);
|
|
2376
2377
|
|
|
2377
2378
|
try {
|
|
2378
2379
|
const {
|
|
@@ -2426,18 +2427,12 @@ exports.PathUtil = PathUtil;
|
|
|
2426
2427
|
const GitUtil = __webpack_require__(/*! ./gitUtil */ "../core/build/gitUtil.js");
|
|
2427
2428
|
|
|
2428
2429
|
exports.GitUtil = GitUtil;
|
|
2429
|
-
|
|
2430
|
-
tslib_1.__exportStar(__webpack_require__(/*! ./
|
|
2431
|
-
|
|
2432
|
-
tslib_1.__exportStar(__webpack_require__(/*! ./
|
|
2433
|
-
|
|
2434
|
-
tslib_1.__exportStar(__webpack_require__(/*! ./
|
|
2435
|
-
|
|
2436
|
-
tslib_1.__exportStar(__webpack_require__(/*! ./config */ "../core/build/config.js"), exports);
|
|
2437
|
-
|
|
2438
|
-
tslib_1.__exportStar(__webpack_require__(/*! ./types/pjson */ "../core/build/types/pjson.js"), exports);
|
|
2439
|
-
|
|
2440
|
-
tslib_1.__exportStar(__webpack_require__(/*! ./workers */ "../core/build/workers/index.js"), exports);
|
|
2430
|
+
(0, tslib_1.__exportStar)(__webpack_require__(/*! ./limiter */ "../core/build/limiter.js"), exports);
|
|
2431
|
+
(0, tslib_1.__exportStar)(__webpack_require__(/*! ./typedEmitter */ "../core/build/typedEmitter.js"), exports);
|
|
2432
|
+
(0, tslib_1.__exportStar)(__webpack_require__(/*! ./packageVersion */ "../core/build/packageVersion.js"), exports);
|
|
2433
|
+
(0, tslib_1.__exportStar)(__webpack_require__(/*! ./config */ "../core/build/config.js"), exports);
|
|
2434
|
+
(0, tslib_1.__exportStar)(__webpack_require__(/*! ./types/pjson */ "../core/build/types/pjson.js"), exports);
|
|
2435
|
+
(0, tslib_1.__exportStar)(__webpack_require__(/*! ./workers */ "../core/build/workers/index.js"), exports);
|
|
2441
2436
|
|
|
2442
2437
|
var commandRegistry_1 = __webpack_require__(/*! ./commandRegistry */ "../core/build/commandRegistry.js");
|
|
2443
2438
|
|
|
@@ -2456,10 +2451,8 @@ Object.defineProperty(exports, "Command", ({
|
|
|
2456
2451
|
return command_1.Command;
|
|
2457
2452
|
}
|
|
2458
2453
|
}));
|
|
2459
|
-
|
|
2460
|
-
tslib_1.__exportStar(__webpack_require__(/*! ./
|
|
2461
|
-
|
|
2462
|
-
tslib_1.__exportStar(__webpack_require__(/*! ./findLargest */ "../core/build/findLargest.js"), exports);
|
|
2454
|
+
(0, tslib_1.__exportStar)(__webpack_require__(/*! ./toposort */ "../core/build/toposort.js"), exports);
|
|
2455
|
+
(0, tslib_1.__exportStar)(__webpack_require__(/*! ./findLargest */ "../core/build/findLargest.js"), exports);
|
|
2463
2456
|
|
|
2464
2457
|
/***/ }),
|
|
2465
2458
|
|
|
@@ -2909,11 +2902,11 @@ const generateDescriptionName = (currentDescription, packageName) => {
|
|
|
2909
2902
|
return match[1];
|
|
2910
2903
|
}
|
|
2911
2904
|
|
|
2912
|
-
const normalizedName = exports.removeOrg(packageName);
|
|
2905
|
+
const normalizedName = (0, exports.removeOrg)(packageName);
|
|
2913
2906
|
const split = normalizedName.split(".");
|
|
2914
2907
|
const namespaces = split.splice(0, split.length - 1);
|
|
2915
2908
|
let name = split[0];
|
|
2916
|
-
name = name.length <= 3 ? name.toUpperCase() : exports.upperCaseFirst(name);
|
|
2909
|
+
name = name.length <= 3 ? name.toUpperCase() : (0, exports.upperCaseFirst)(name);
|
|
2917
2910
|
return namespaces.map(namespace => namespace.toUpperCase()).concat([name]).join(".");
|
|
2918
2911
|
};
|
|
2919
2912
|
|
|
@@ -3092,7 +3085,7 @@ class WorkMaster extends typedEmitter_1.TypedEmitter {
|
|
|
3092
3085
|
|
|
3093
3086
|
this.worker = new Proxy({}, {
|
|
3094
3087
|
get: (_, property) => (...args) => new Promise((resolve, reject) => {
|
|
3095
|
-
const messageId = stringUtil_1.generateId();
|
|
3088
|
+
const messageId = (0, stringUtil_1.generateId)();
|
|
3096
3089
|
this.messageCbs.set(messageId, message => {
|
|
3097
3090
|
this.messageCbs.delete(messageId);
|
|
3098
3091
|
|
|
@@ -3126,8 +3119,7 @@ class WorkMaster extends typedEmitter_1.TypedEmitter {
|
|
|
3126
3119
|
}
|
|
3127
3120
|
|
|
3128
3121
|
exports.WorkMaster = WorkMaster;
|
|
3129
|
-
|
|
3130
|
-
tslib_1.__exportStar(__webpack_require__(/*! ./slave */ "../core/build/workers/slave.js"), exports);
|
|
3122
|
+
(0, tslib_1.__exportStar)(__webpack_require__(/*! ./slave */ "../core/build/workers/slave.js"), exports);
|
|
3131
3123
|
|
|
3132
3124
|
/***/ }),
|
|
3133
3125
|
|
|
@@ -3249,15 +3241,16 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
3249
3241
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
3250
3242
|
|
|
3251
3243
|
const buildFolders = async options => {
|
|
3252
|
-
if (!options.directories || options.directories.length === 0) {
|
|
3253
|
-
return console.log((0, _localization.translate)("messages.buildSkipEmpty"));
|
|
3254
|
-
}
|
|
3255
|
-
|
|
3256
3244
|
if (options.outDir !== undefined && options.clean) {
|
|
3257
3245
|
rimraf.sync(options.outDir);
|
|
3258
3246
|
}
|
|
3259
3247
|
|
|
3260
3248
|
const folders = (0, _util.resolveArgs)(options.directories, options.cwd);
|
|
3249
|
+
|
|
3250
|
+
if (folders.length === 0) {
|
|
3251
|
+
return console.log((0, _localization.translate)("messages.buildSkipEmpty"));
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3261
3254
|
const sortedPackages = buildSortedPackageMap(folders);
|
|
3262
3255
|
let index = 1;
|
|
3263
3256
|
|
|
@@ -3265,6 +3258,7 @@ const buildFolders = async options => {
|
|
|
3265
3258
|
path: folderPath,
|
|
3266
3259
|
data: packageData
|
|
3267
3260
|
}] of sortedPackages) {
|
|
3261
|
+
ensureTsConfig(folderPath);
|
|
3268
3262
|
const data = (0, _packages.loadDataFromFolder)(folderPath);
|
|
3269
3263
|
|
|
3270
3264
|
const logStep = step => (0, _util.logPackageMessage)(data.Package, step, index, sortedPackages.size);
|
|
@@ -3299,6 +3293,28 @@ const buildFolders = async options => {
|
|
|
3299
3293
|
|
|
3300
3294
|
exports.buildFolders = buildFolders;
|
|
3301
3295
|
|
|
3296
|
+
const ensureTsConfig = folderPath => {
|
|
3297
|
+
const tsconfigPath = path.join(folderPath, "tsconfig.json");
|
|
3298
|
+
|
|
3299
|
+
if (!fs.existsSync(tsconfigPath)) {
|
|
3300
|
+
const content = {};
|
|
3301
|
+
applyTsConfigOption(content);
|
|
3302
|
+
fs.writeFileSync(tsconfigPath, JSON.stringify(content, undefined, "\t"), "utf8");
|
|
3303
|
+
} else {
|
|
3304
|
+
const content = JSON.parse(fs.readFileSync(tsconfigPath, "utf8"));
|
|
3305
|
+
applyTsConfigOption(content);
|
|
3306
|
+
fs.writeFileSync(tsconfigPath, JSON.stringify(content, undefined, "\t"), "utf8");
|
|
3307
|
+
}
|
|
3308
|
+
};
|
|
3309
|
+
|
|
3310
|
+
const applyTsConfigOption = data => {
|
|
3311
|
+
var _data$compilerOptions;
|
|
3312
|
+
|
|
3313
|
+
data.compilerOptions = (_data$compilerOptions = data.compilerOptions) !== null && _data$compilerOptions !== void 0 ? _data$compilerOptions : {};
|
|
3314
|
+
data.compilerOptions.target = "es5";
|
|
3315
|
+
data.compilerOptions.lib = ["es5", "dom"];
|
|
3316
|
+
};
|
|
3317
|
+
|
|
3302
3318
|
const buildSortedPackageMap = folders => {
|
|
3303
3319
|
const packages = Array.from(folders).reduce((acc, folderPath) => {
|
|
3304
3320
|
const data = _igTools.FileUtil.readJsonFile(path.join(folderPath, "package.json"));
|
|
@@ -3383,12 +3399,12 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
3383
3399
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
3384
3400
|
|
|
3385
3401
|
const releaseFolders = async options => {
|
|
3386
|
-
|
|
3402
|
+
const folders = (0, _util.resolveArgs)(options.directories, options.cwd);
|
|
3403
|
+
|
|
3404
|
+
if (folders.length === 0) {
|
|
3387
3405
|
return console.log((0, _localization.translate)("messages.releaseSkipEmpty"));
|
|
3388
3406
|
}
|
|
3389
3407
|
|
|
3390
|
-
const folders = (0, _util.resolveArgs)(options.directories, options.cwd);
|
|
3391
|
-
|
|
3392
3408
|
for (const folder of folders) {
|
|
3393
3409
|
await releaseFolder(folder, options);
|
|
3394
3410
|
}
|
|
@@ -3410,17 +3426,30 @@ const releaseFolder = async (folderPath, options) => {
|
|
|
3410
3426
|
domain,
|
|
3411
3427
|
subdomain
|
|
3412
3428
|
} = (0, _util.parsePackageDomains)(fullPackageName);
|
|
3413
|
-
const newVersion = parseVersion(options.newVersion);
|
|
3414
|
-
validateVersion(options.newVersion, version);
|
|
3415
3429
|
const publishDomain = (_options$domain = options.domain) !== null && _options$domain !== void 0 ? _options$domain : domain;
|
|
3416
3430
|
const publishSubdomain = (_options$subdomain = options.subdomain) !== null && _options$subdomain !== void 0 ? _options$subdomain : subdomain;
|
|
3431
|
+
let newVersion;
|
|
3432
|
+
|
|
3433
|
+
try {
|
|
3434
|
+
newVersion = parseVersion(options.newVersion);
|
|
3435
|
+
} catch (err) {
|
|
3436
|
+
throw new Error(`Please enter a version in this format 1.0.0.100`);
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3417
3439
|
const newVersionString = newVersion.toVersionString({
|
|
3418
3440
|
buildNumber: true
|
|
3419
3441
|
});
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3442
|
+
|
|
3443
|
+
if (!options.pushOnly) {
|
|
3444
|
+
if (!options.noValidate && version !== undefined && version.buildNumber >= 100 && !newVersion.isGreaterThan(version)) {
|
|
3445
|
+
throw new Error(`Release versions with a build number > 100 may not be overwritten. Please increase the version.`);
|
|
3446
|
+
}
|
|
3447
|
+
|
|
3448
|
+
writeVersionFile(fullPackageName, newVersion);
|
|
3449
|
+
await (0, _build.buildFolders)(_objectSpread(_objectSpread({}, options), {}, {
|
|
3450
|
+
directories: [folderPath]
|
|
3451
|
+
}));
|
|
3452
|
+
}
|
|
3424
3453
|
|
|
3425
3454
|
try {
|
|
3426
3455
|
await (0, _packager.executePackager)({
|
|
@@ -3436,14 +3465,15 @@ const releaseFolder = async (folderPath, options) => {
|
|
|
3436
3465
|
service: options.service,
|
|
3437
3466
|
user: options.user,
|
|
3438
3467
|
password: options.password,
|
|
3439
|
-
folderPath
|
|
3468
|
+
folderPath,
|
|
3469
|
+
pushOnly: options.pushOnly
|
|
3440
3470
|
});
|
|
3441
3471
|
} catch (err) {
|
|
3442
3472
|
resetVersionFile();
|
|
3443
3473
|
throw err;
|
|
3444
3474
|
}
|
|
3445
3475
|
|
|
3446
|
-
if (newVersion.buildNumber >= 100) {
|
|
3476
|
+
if (newVersion.buildNumber >= 100 && !options.pushOnly) {
|
|
3447
3477
|
(0, _util.logPackageMessage)(fullPackageName, (0, _localization.translate)("messages.movingReleaseZip"));
|
|
3448
3478
|
const zipFileName = `${fullPackageName}_${newVersionString}.zip`;
|
|
3449
3479
|
let releasesPath = folderPath;
|
|
@@ -3455,14 +3485,12 @@ const releaseFolder = async (folderPath, options) => {
|
|
|
3455
3485
|
}
|
|
3456
3486
|
|
|
3457
3487
|
fs.ensureDirSync(releasesPath);
|
|
3458
|
-
fs.
|
|
3459
|
-
overwrite: true
|
|
3460
|
-
});
|
|
3488
|
+
fs.copyFileSync(path.join(options.cwd, "bin", zipFileName), path.join(releasesPath, zipFileName));
|
|
3461
3489
|
}
|
|
3462
3490
|
}; //https://regex101.com/r/VfoI7n/1
|
|
3463
3491
|
|
|
3464
3492
|
|
|
3465
|
-
const logRegex = /console\.log\(\s*"([\w\s\.\(\)]+)\ *Copyright[\w\s\(\)\.]+(\d{4}|\d{4} - \d{4})([\w\s\(\)\.]+)"\)/i;
|
|
3493
|
+
const logRegex = /console\.log\(\s*"([\w\s\.\(\)]+)\ *Copyright[\w\s\(\)\.]+(\d{4}|\d{4} - \d{4})([\w\s\(\)\.]+)?"\)/i;
|
|
3466
3494
|
const currentYear = new Date(Date.now()).getFullYear();
|
|
3467
3495
|
|
|
3468
3496
|
const getVersionFile = folder => {
|
|
@@ -3491,7 +3519,7 @@ const getVersionFile = folder => {
|
|
|
3491
3519
|
}
|
|
3492
3520
|
});
|
|
3493
3521
|
|
|
3494
|
-
const createVersionFileWriter = (copyright = [currentYear], copyrightStuff) => (name, newVersion) => {
|
|
3522
|
+
const createVersionFileWriter = (copyright = [currentYear], copyrightStuff = "") => (name, newVersion) => {
|
|
3495
3523
|
const result = `console.log("${newVersion.toDescriptionString(name)}. Copyright (C) ${createYearString(copyright)}${copyrightStuff}");`;
|
|
3496
3524
|
|
|
3497
3525
|
_igTools.FileUtil.writeFile(filePath, result);
|
|
@@ -3537,20 +3565,6 @@ const createYearString = years => {
|
|
|
3537
3565
|
return `${years[0]} - ${years[1]}`;
|
|
3538
3566
|
};
|
|
3539
3567
|
|
|
3540
|
-
const validateVersion = (input, currentVersion) => {
|
|
3541
|
-
let newVersion;
|
|
3542
|
-
|
|
3543
|
-
try {
|
|
3544
|
-
newVersion = parseVersion(input);
|
|
3545
|
-
} catch (err) {
|
|
3546
|
-
throw new Error(`Please enter a version in this format 1.0.0.100`);
|
|
3547
|
-
}
|
|
3548
|
-
|
|
3549
|
-
if (currentVersion !== undefined && currentVersion.buildNumber >= 100 && !newVersion.isGreaterThan(currentVersion)) {
|
|
3550
|
-
throw new Error(`Release versions with a build number > 100 may not be overwritten. Please increase the version.`);
|
|
3551
|
-
}
|
|
3552
|
-
};
|
|
3553
|
-
|
|
3554
3568
|
const parseVersion = input => {
|
|
3555
3569
|
if (input === undefined) {
|
|
3556
3570
|
throw new Error(`Can not parse version from undefined`);
|
|
@@ -3747,22 +3761,34 @@ var Mode;
|
|
|
3747
3761
|
|
|
3748
3762
|
let validateSchema;
|
|
3749
3763
|
|
|
3750
|
-
const executePackager = async
|
|
3764
|
+
const executePackager = async options => {
|
|
3765
|
+
const logStep = step => (0, _util.logPackageMessage)(`${options.domain}.${options.subdomain}`, step);
|
|
3766
|
+
|
|
3767
|
+
const packageName = `${options.domain}.${options.subdomain}_${options.version}`;
|
|
3768
|
+
const binDir = path.join(options.cwd, "bin");
|
|
3769
|
+
fs.ensureDirSync(binDir);
|
|
3770
|
+
const zipFilePath = path.join(binDir, packageName + ".zip");
|
|
3771
|
+
|
|
3772
|
+
if (!options.pushOnly) {
|
|
3773
|
+
logStep(`Creating zip file`);
|
|
3774
|
+
await buildArchive(options, zipFilePath, logStep);
|
|
3775
|
+
} else {
|
|
3776
|
+
if (!fs.existsSync(zipFilePath)) {
|
|
3777
|
+
throw new Error(`Expected a zip file to exist at path ${zipFilePath}`);
|
|
3778
|
+
}
|
|
3779
|
+
}
|
|
3780
|
+
|
|
3781
|
+
await uploadArchive(options, zipFilePath, packageName, logStep);
|
|
3782
|
+
};
|
|
3783
|
+
|
|
3784
|
+
exports.executePackager = executePackager;
|
|
3785
|
+
|
|
3786
|
+
const buildArchive = async ({
|
|
3751
3787
|
domain,
|
|
3752
3788
|
subdomain,
|
|
3753
|
-
version,
|
|
3754
|
-
targetDomain,
|
|
3755
|
-
targetSubdomain,
|
|
3756
|
-
upload,
|
|
3757
3789
|
cwd,
|
|
3758
|
-
address,
|
|
3759
|
-
service,
|
|
3760
|
-
user,
|
|
3761
|
-
password,
|
|
3762
3790
|
folderPath
|
|
3763
|
-
}) => {
|
|
3764
|
-
const logStep = step => (0, _util.logPackageMessage)(`${domain}.${subdomain}`, step);
|
|
3765
|
-
|
|
3791
|
+
}, zipFilePath, logStep) => {
|
|
3766
3792
|
if (validateSchema === undefined) {
|
|
3767
3793
|
validateSchema = await _axios.default.get("https://archive.intelligentgraphics.biz/schemas/gfx/animation.json").then(({
|
|
3768
3794
|
data
|
|
@@ -3854,12 +3880,6 @@ Packaging without a javascript file is only allowed when animation json files ar
|
|
|
3854
3880
|
}
|
|
3855
3881
|
}
|
|
3856
3882
|
|
|
3857
|
-
const packageName = `${domain}.${subdomain}_${version}`;
|
|
3858
|
-
const binDir = path.join(cwd, "bin");
|
|
3859
|
-
fs.ensureDirSync(binDir);
|
|
3860
|
-
logStep(`Creating zip file`);
|
|
3861
|
-
const zipFilePath = path.join(binDir, packageName + ".zip");
|
|
3862
|
-
|
|
3863
3883
|
try {
|
|
3864
3884
|
fs.unlinkSync(zipFilePath);
|
|
3865
3885
|
} catch {}
|
|
@@ -3948,6 +3968,20 @@ Packaging without a javascript file is only allowed when animation json files ar
|
|
|
3948
3968
|
}
|
|
3949
3969
|
|
|
3950
3970
|
await archive.finalize();
|
|
3971
|
+
};
|
|
3972
|
+
|
|
3973
|
+
const uploadArchive = async ({
|
|
3974
|
+
domain,
|
|
3975
|
+
subdomain,
|
|
3976
|
+
targetDomain,
|
|
3977
|
+
targetSubdomain,
|
|
3978
|
+
address,
|
|
3979
|
+
version,
|
|
3980
|
+
service,
|
|
3981
|
+
upload,
|
|
3982
|
+
user,
|
|
3983
|
+
password
|
|
3984
|
+
}, zipFilePath, packageName, logStep) => {
|
|
3951
3985
|
const resolvedTargetDomain = targetDomain && targetDomain !== domain ? targetDomain : domain;
|
|
3952
3986
|
const resolvedTargetSubdomain = targetSubdomain && targetSubdomain !== subdomain ? targetSubdomain : subdomain;
|
|
3953
3987
|
const resolvedAddress = address;
|
|
@@ -4042,8 +4076,6 @@ Packaging without a javascript file is only allowed when animation json files ar
|
|
|
4042
4076
|
});
|
|
4043
4077
|
};
|
|
4044
4078
|
|
|
4045
|
-
exports.executePackager = executePackager;
|
|
4046
|
-
|
|
4047
4079
|
/***/ }),
|
|
4048
4080
|
|
|
4049
4081
|
/***/ "./src/packages.ts":
|
|
@@ -4125,17 +4157,39 @@ var glob = _interopRequireWildcard(__webpack_require__(/*! glob */ "glob"));
|
|
|
4125
4157
|
|
|
4126
4158
|
var path = _interopRequireWildcard(__webpack_require__(/*! path */ "path"));
|
|
4127
4159
|
|
|
4160
|
+
var fs = _interopRequireWildcard(__webpack_require__(/*! fs */ "fs"));
|
|
4161
|
+
|
|
4128
4162
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
4129
4163
|
|
|
4130
4164
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
4131
4165
|
|
|
4166
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
4167
|
+
|
|
4168
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
4169
|
+
|
|
4170
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
4171
|
+
|
|
4132
4172
|
const build = async (folderPath, options) => {
|
|
4133
|
-
const
|
|
4173
|
+
const {
|
|
4174
|
+
config
|
|
4175
|
+
} = ts.readConfigFile(path.join(folderPath, "tsconfig.json"), path => {
|
|
4176
|
+
try {
|
|
4177
|
+
return fs.readFileSync(path, "utf8");
|
|
4178
|
+
} catch {
|
|
4179
|
+
return undefined;
|
|
4180
|
+
}
|
|
4181
|
+
});
|
|
4182
|
+
config.compilerOptions.lib = ["es5", "dom"];
|
|
4183
|
+
const result = ts.convertCompilerOptionsFromJson(config.compilerOptions, folderPath);
|
|
4184
|
+
|
|
4185
|
+
const compilerOptions = _objectSpread(_objectSpread({}, result.options), {}, {
|
|
4134
4186
|
removeComments: false,
|
|
4135
4187
|
declaration: true,
|
|
4136
4188
|
sourceMap: false,
|
|
4137
|
-
outFile: options.outFile
|
|
4138
|
-
|
|
4189
|
+
outFile: options.outFile,
|
|
4190
|
+
target: ts.ScriptTarget.ES5
|
|
4191
|
+
});
|
|
4192
|
+
|
|
4139
4193
|
const host = ts.createCompilerHost(compilerOptions);
|
|
4140
4194
|
|
|
4141
4195
|
host.getCurrentDirectory = () => folderPath;
|
|
@@ -4183,6 +4237,10 @@ ${data}`;
|
|
|
4183
4237
|
const allDiagnostics = ts.getPreEmitDiagnostics(program).concat(emitResult.diagnostics);
|
|
4184
4238
|
|
|
4185
4239
|
if (!emitResult.emitSkipped) {
|
|
4240
|
+
if (allDiagnostics.length > 0) {
|
|
4241
|
+
console.log(allDiagnostics.map(createErrorMessage).join("\n"));
|
|
4242
|
+
}
|
|
4243
|
+
|
|
4186
4244
|
return;
|
|
4187
4245
|
}
|
|
4188
4246
|
|
|
@@ -4219,7 +4277,7 @@ const createErrorMessage = diagnostic => {
|
|
|
4219
4277
|
Object.defineProperty(exports, "__esModule", ({
|
|
4220
4278
|
value: true
|
|
4221
4279
|
}));
|
|
4222
|
-
exports.
|
|
4280
|
+
exports.resolveArgs = exports.resolveAliases = exports.parsePackageDomains = exports.logPackageMessage = void 0;
|
|
4223
4281
|
|
|
4224
4282
|
var path = _interopRequireWildcard(__webpack_require__(/*! path */ "path"));
|
|
4225
4283
|
|
|
@@ -4344,16 +4402,43 @@ exports.parsePackageDomains = parsePackageDomains;
|
|
|
4344
4402
|
|
|
4345
4403
|
/***/ }),
|
|
4346
4404
|
|
|
4347
|
-
/***/ "../../node_modules/core-js/internals/a-
|
|
4405
|
+
/***/ "../../node_modules/core-js/internals/a-callable.js":
|
|
4348
4406
|
/*!**********************************************************!*\
|
|
4349
|
-
!*** ../../node_modules/core-js/internals/a-
|
|
4407
|
+
!*** ../../node_modules/core-js/internals/a-callable.js ***!
|
|
4350
4408
|
\**********************************************************/
|
|
4351
|
-
/***/ ((module) => {
|
|
4409
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4352
4410
|
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
4411
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
4412
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
4413
|
+
var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../../node_modules/core-js/internals/try-to-string.js");
|
|
4414
|
+
|
|
4415
|
+
var TypeError = global.TypeError;
|
|
4416
|
+
|
|
4417
|
+
// `Assert: IsCallable(argument) is true`
|
|
4418
|
+
module.exports = function (argument) {
|
|
4419
|
+
if (isCallable(argument)) return argument;
|
|
4420
|
+
throw TypeError(tryToString(argument) + ' is not a function');
|
|
4421
|
+
};
|
|
4422
|
+
|
|
4423
|
+
|
|
4424
|
+
/***/ }),
|
|
4425
|
+
|
|
4426
|
+
/***/ "../../node_modules/core-js/internals/a-constructor.js":
|
|
4427
|
+
/*!*************************************************************!*\
|
|
4428
|
+
!*** ../../node_modules/core-js/internals/a-constructor.js ***!
|
|
4429
|
+
\*************************************************************/
|
|
4430
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4431
|
+
|
|
4432
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
4433
|
+
var isConstructor = __webpack_require__(/*! ../internals/is-constructor */ "../../node_modules/core-js/internals/is-constructor.js");
|
|
4434
|
+
var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../../node_modules/core-js/internals/try-to-string.js");
|
|
4435
|
+
|
|
4436
|
+
var TypeError = global.TypeError;
|
|
4437
|
+
|
|
4438
|
+
// `Assert: IsConstructor(argument) is true`
|
|
4439
|
+
module.exports = function (argument) {
|
|
4440
|
+
if (isConstructor(argument)) return argument;
|
|
4441
|
+
throw TypeError(tryToString(argument) + ' is not a constructor');
|
|
4357
4442
|
};
|
|
4358
4443
|
|
|
4359
4444
|
|
|
@@ -4365,12 +4450,15 @@ module.exports = function (it) {
|
|
|
4365
4450
|
\********************************************************************/
|
|
4366
4451
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4367
4452
|
|
|
4368
|
-
var
|
|
4453
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
4454
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
4369
4455
|
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
4456
|
+
var String = global.String;
|
|
4457
|
+
var TypeError = global.TypeError;
|
|
4458
|
+
|
|
4459
|
+
module.exports = function (argument) {
|
|
4460
|
+
if (typeof argument == 'object' || isCallable(argument)) return argument;
|
|
4461
|
+
throw TypeError("Can't set " + String(argument) + ' as a prototype');
|
|
4374
4462
|
};
|
|
4375
4463
|
|
|
4376
4464
|
|
|
@@ -4380,12 +4468,16 @@ module.exports = function (it) {
|
|
|
4380
4468
|
/*!***********************************************************!*\
|
|
4381
4469
|
!*** ../../node_modules/core-js/internals/an-instance.js ***!
|
|
4382
4470
|
\***********************************************************/
|
|
4383
|
-
/***/ ((module) => {
|
|
4471
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4472
|
+
|
|
4473
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
4474
|
+
var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../../node_modules/core-js/internals/object-is-prototype-of.js");
|
|
4475
|
+
|
|
4476
|
+
var TypeError = global.TypeError;
|
|
4384
4477
|
|
|
4385
|
-
module.exports = function (it,
|
|
4386
|
-
if (
|
|
4387
|
-
|
|
4388
|
-
} return it;
|
|
4478
|
+
module.exports = function (it, Prototype) {
|
|
4479
|
+
if (isPrototypeOf(Prototype, it)) return it;
|
|
4480
|
+
throw TypeError('Incorrect invocation');
|
|
4389
4481
|
};
|
|
4390
4482
|
|
|
4391
4483
|
|
|
@@ -4397,12 +4489,16 @@ module.exports = function (it, Constructor, name) {
|
|
|
4397
4489
|
\*********************************************************/
|
|
4398
4490
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4399
4491
|
|
|
4492
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
4400
4493
|
var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
|
|
4401
4494
|
|
|
4402
|
-
|
|
4403
|
-
|
|
4404
|
-
|
|
4405
|
-
|
|
4495
|
+
var String = global.String;
|
|
4496
|
+
var TypeError = global.TypeError;
|
|
4497
|
+
|
|
4498
|
+
// `Assert: Type(argument) is Object`
|
|
4499
|
+
module.exports = function (argument) {
|
|
4500
|
+
if (isObject(argument)) return argument;
|
|
4501
|
+
throw TypeError(String(argument) + ' is not an object');
|
|
4406
4502
|
};
|
|
4407
4503
|
|
|
4408
4504
|
|
|
@@ -4415,14 +4511,14 @@ module.exports = function (it) {
|
|
|
4415
4511
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4416
4512
|
|
|
4417
4513
|
var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../../node_modules/core-js/internals/to-indexed-object.js");
|
|
4418
|
-
var toLength = __webpack_require__(/*! ../internals/to-length */ "../../node_modules/core-js/internals/to-length.js");
|
|
4419
4514
|
var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "../../node_modules/core-js/internals/to-absolute-index.js");
|
|
4515
|
+
var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../../node_modules/core-js/internals/length-of-array-like.js");
|
|
4420
4516
|
|
|
4421
4517
|
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
4422
4518
|
var createMethod = function (IS_INCLUDES) {
|
|
4423
4519
|
return function ($this, el, fromIndex) {
|
|
4424
4520
|
var O = toIndexedObject($this);
|
|
4425
|
-
var length =
|
|
4521
|
+
var length = lengthOfArrayLike(O);
|
|
4426
4522
|
var index = toAbsoluteIndex(fromIndex, length);
|
|
4427
4523
|
var value;
|
|
4428
4524
|
// Array#includes uses SameValueZero equality algorithm
|
|
@@ -4448,6 +4544,19 @@ module.exports = {
|
|
|
4448
4544
|
};
|
|
4449
4545
|
|
|
4450
4546
|
|
|
4547
|
+
/***/ }),
|
|
4548
|
+
|
|
4549
|
+
/***/ "../../node_modules/core-js/internals/array-slice.js":
|
|
4550
|
+
/*!***********************************************************!*\
|
|
4551
|
+
!*** ../../node_modules/core-js/internals/array-slice.js ***!
|
|
4552
|
+
\***********************************************************/
|
|
4553
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4554
|
+
|
|
4555
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
4556
|
+
|
|
4557
|
+
module.exports = uncurryThis([].slice);
|
|
4558
|
+
|
|
4559
|
+
|
|
4451
4560
|
/***/ }),
|
|
4452
4561
|
|
|
4453
4562
|
/***/ "../../node_modules/core-js/internals/check-correctness-of-iteration.js":
|
|
@@ -4502,12 +4611,15 @@ module.exports = function (exec, SKIP_CLOSING) {
|
|
|
4502
4611
|
/*!***********************************************************!*\
|
|
4503
4612
|
!*** ../../node_modules/core-js/internals/classof-raw.js ***!
|
|
4504
4613
|
\***********************************************************/
|
|
4505
|
-
/***/ ((module) => {
|
|
4614
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4506
4615
|
|
|
4507
|
-
var
|
|
4616
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
4617
|
+
|
|
4618
|
+
var toString = uncurryThis({}.toString);
|
|
4619
|
+
var stringSlice = uncurryThis(''.slice);
|
|
4508
4620
|
|
|
4509
4621
|
module.exports = function (it) {
|
|
4510
|
-
return toString
|
|
4622
|
+
return stringSlice(toString(it), 8, -1);
|
|
4511
4623
|
};
|
|
4512
4624
|
|
|
4513
4625
|
|
|
@@ -4519,11 +4631,15 @@ module.exports = function (it) {
|
|
|
4519
4631
|
\*******************************************************/
|
|
4520
4632
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4521
4633
|
|
|
4634
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
4522
4635
|
var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "../../node_modules/core-js/internals/to-string-tag-support.js");
|
|
4636
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
4523
4637
|
var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "../../node_modules/core-js/internals/classof-raw.js");
|
|
4524
4638
|
var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
|
|
4525
4639
|
|
|
4526
4640
|
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
4641
|
+
var Object = global.Object;
|
|
4642
|
+
|
|
4527
4643
|
// ES3 wrong here
|
|
4528
4644
|
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
|
|
4529
4645
|
|
|
@@ -4543,7 +4659,7 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
|
4543
4659
|
// builtinTag case
|
|
4544
4660
|
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
4545
4661
|
// ES3 arguments fallback
|
|
4546
|
-
: (result = classofRaw(O)) == 'Object' &&
|
|
4662
|
+
: (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
|
|
4547
4663
|
};
|
|
4548
4664
|
|
|
4549
4665
|
|
|
@@ -4555,7 +4671,7 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
|
4555
4671
|
\***************************************************************************/
|
|
4556
4672
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4557
4673
|
|
|
4558
|
-
var
|
|
4674
|
+
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
|
|
4559
4675
|
var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "../../node_modules/core-js/internals/own-keys.js");
|
|
4560
4676
|
var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../../node_modules/core-js/internals/object-get-own-property-descriptor.js");
|
|
4561
4677
|
var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../../node_modules/core-js/internals/object-define-property.js");
|
|
@@ -4566,7 +4682,7 @@ module.exports = function (target, source) {
|
|
|
4566
4682
|
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
4567
4683
|
for (var i = 0; i < keys.length; i++) {
|
|
4568
4684
|
var key = keys[i];
|
|
4569
|
-
if (!
|
|
4685
|
+
if (!hasOwn(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
4570
4686
|
}
|
|
4571
4687
|
};
|
|
4572
4688
|
|
|
@@ -4657,6 +4773,20 @@ module.exports = function (it) {
|
|
|
4657
4773
|
module.exports = typeof window == 'object';
|
|
4658
4774
|
|
|
4659
4775
|
|
|
4776
|
+
/***/ }),
|
|
4777
|
+
|
|
4778
|
+
/***/ "../../node_modules/core-js/internals/engine-is-ios-pebble.js":
|
|
4779
|
+
/*!********************************************************************!*\
|
|
4780
|
+
!*** ../../node_modules/core-js/internals/engine-is-ios-pebble.js ***!
|
|
4781
|
+
\********************************************************************/
|
|
4782
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4783
|
+
|
|
4784
|
+
var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "../../node_modules/core-js/internals/engine-user-agent.js");
|
|
4785
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
4786
|
+
|
|
4787
|
+
module.exports = /ipad|iphone|ipod/i.test(userAgent) && global.Pebble !== undefined;
|
|
4788
|
+
|
|
4789
|
+
|
|
4660
4790
|
/***/ }),
|
|
4661
4791
|
|
|
4662
4792
|
/***/ "../../node_modules/core-js/internals/engine-is-ios.js":
|
|
@@ -4667,7 +4797,7 @@ module.exports = typeof window == 'object';
|
|
|
4667
4797
|
|
|
4668
4798
|
var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "../../node_modules/core-js/internals/engine-user-agent.js");
|
|
4669
4799
|
|
|
4670
|
-
module.exports = /(?:iphone|ipod
|
|
4800
|
+
module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
|
|
4671
4801
|
|
|
4672
4802
|
|
|
4673
4803
|
/***/ }),
|
|
@@ -4729,16 +4859,22 @@ var match, version;
|
|
|
4729
4859
|
|
|
4730
4860
|
if (v8) {
|
|
4731
4861
|
match = v8.split('.');
|
|
4732
|
-
|
|
4733
|
-
|
|
4862
|
+
// in old Chrome, versions of V8 isn't V8 = Chrome / 10
|
|
4863
|
+
// but their correct versions are not interesting for us
|
|
4864
|
+
version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
|
|
4865
|
+
}
|
|
4866
|
+
|
|
4867
|
+
// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
|
|
4868
|
+
// so check `userAgent` even if `.v8` exists, but 0
|
|
4869
|
+
if (!version && userAgent) {
|
|
4734
4870
|
match = userAgent.match(/Edge\/(\d+)/);
|
|
4735
4871
|
if (!match || match[1] >= 74) {
|
|
4736
4872
|
match = userAgent.match(/Chrome\/(\d+)/);
|
|
4737
|
-
if (match) version = match[1];
|
|
4873
|
+
if (match) version = +match[1];
|
|
4738
4874
|
}
|
|
4739
4875
|
}
|
|
4740
4876
|
|
|
4741
|
-
module.exports = version
|
|
4877
|
+
module.exports = version;
|
|
4742
4878
|
|
|
4743
4879
|
|
|
4744
4880
|
/***/ }),
|
|
@@ -4790,6 +4926,7 @@ var isForced = __webpack_require__(/*! ../internals/is-forced */ "../../node_mod
|
|
|
4790
4926
|
options.sham - add a flag to not completely full polyfills
|
|
4791
4927
|
options.enumerable - export as enumerable property
|
|
4792
4928
|
options.noTargetGet - prevent calling a getter on target
|
|
4929
|
+
options.name - the .name of the function if it does not match the key
|
|
4793
4930
|
*/
|
|
4794
4931
|
module.exports = function (options, source) {
|
|
4795
4932
|
var TARGET = options.target;
|
|
@@ -4812,7 +4949,7 @@ module.exports = function (options, source) {
|
|
|
4812
4949
|
FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
|
4813
4950
|
// contained in target
|
|
4814
4951
|
if (!FORCED && targetProperty !== undefined) {
|
|
4815
|
-
if (typeof sourceProperty
|
|
4952
|
+
if (typeof sourceProperty == typeof targetProperty) continue;
|
|
4816
4953
|
copyConstructorProperties(sourceProperty, targetProperty);
|
|
4817
4954
|
}
|
|
4818
4955
|
// add a flag to not completely full polyfills
|
|
@@ -4842,6 +4979,25 @@ module.exports = function (exec) {
|
|
|
4842
4979
|
};
|
|
4843
4980
|
|
|
4844
4981
|
|
|
4982
|
+
/***/ }),
|
|
4983
|
+
|
|
4984
|
+
/***/ "../../node_modules/core-js/internals/function-apply.js":
|
|
4985
|
+
/*!**************************************************************!*\
|
|
4986
|
+
!*** ../../node_modules/core-js/internals/function-apply.js ***!
|
|
4987
|
+
\**************************************************************/
|
|
4988
|
+
/***/ ((module) => {
|
|
4989
|
+
|
|
4990
|
+
var FunctionPrototype = Function.prototype;
|
|
4991
|
+
var apply = FunctionPrototype.apply;
|
|
4992
|
+
var bind = FunctionPrototype.bind;
|
|
4993
|
+
var call = FunctionPrototype.call;
|
|
4994
|
+
|
|
4995
|
+
// eslint-disable-next-line es/no-reflect -- safe
|
|
4996
|
+
module.exports = typeof Reflect == 'object' && Reflect.apply || (bind ? call.bind(apply) : function () {
|
|
4997
|
+
return call.apply(apply, arguments);
|
|
4998
|
+
});
|
|
4999
|
+
|
|
5000
|
+
|
|
4845
5001
|
/***/ }),
|
|
4846
5002
|
|
|
4847
5003
|
/***/ "../../node_modules/core-js/internals/function-bind-context.js":
|
|
@@ -4850,27 +5006,15 @@ module.exports = function (exec) {
|
|
|
4850
5006
|
\*********************************************************************/
|
|
4851
5007
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4852
5008
|
|
|
4853
|
-
var
|
|
5009
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
5010
|
+
var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../../node_modules/core-js/internals/a-callable.js");
|
|
5011
|
+
|
|
5012
|
+
var bind = uncurryThis(uncurryThis.bind);
|
|
4854
5013
|
|
|
4855
5014
|
// optional / simple context binding
|
|
4856
|
-
module.exports = function (fn, that
|
|
4857
|
-
|
|
4858
|
-
|
|
4859
|
-
switch (length) {
|
|
4860
|
-
case 0: return function () {
|
|
4861
|
-
return fn.call(that);
|
|
4862
|
-
};
|
|
4863
|
-
case 1: return function (a) {
|
|
4864
|
-
return fn.call(that, a);
|
|
4865
|
-
};
|
|
4866
|
-
case 2: return function (a, b) {
|
|
4867
|
-
return fn.call(that, a, b);
|
|
4868
|
-
};
|
|
4869
|
-
case 3: return function (a, b, c) {
|
|
4870
|
-
return fn.call(that, a, b, c);
|
|
4871
|
-
};
|
|
4872
|
-
}
|
|
4873
|
-
return function (/* ...args */) {
|
|
5015
|
+
module.exports = function (fn, that) {
|
|
5016
|
+
aCallable(fn);
|
|
5017
|
+
return that === undefined ? fn : bind ? bind(fn, that) : function (/* ...args */) {
|
|
4874
5018
|
return fn.apply(that, arguments);
|
|
4875
5019
|
};
|
|
4876
5020
|
};
|
|
@@ -4878,49 +5022,157 @@ module.exports = function (fn, that, length) {
|
|
|
4878
5022
|
|
|
4879
5023
|
/***/ }),
|
|
4880
5024
|
|
|
4881
|
-
/***/ "../../node_modules/core-js/internals/
|
|
4882
|
-
|
|
4883
|
-
!*** ../../node_modules/core-js/internals/
|
|
4884
|
-
|
|
4885
|
-
/***/ ((module
|
|
4886
|
-
|
|
4887
|
-
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5025
|
+
/***/ "../../node_modules/core-js/internals/function-call.js":
|
|
5026
|
+
/*!*************************************************************!*\
|
|
5027
|
+
!*** ../../node_modules/core-js/internals/function-call.js ***!
|
|
5028
|
+
\*************************************************************/
|
|
5029
|
+
/***/ ((module) => {
|
|
4888
5030
|
|
|
4889
|
-
var
|
|
4890
|
-
return typeof variable == 'function' ? variable : undefined;
|
|
4891
|
-
};
|
|
5031
|
+
var call = Function.prototype.call;
|
|
4892
5032
|
|
|
4893
|
-
module.exports = function (
|
|
4894
|
-
return
|
|
5033
|
+
module.exports = call.bind ? call.bind(call) : function () {
|
|
5034
|
+
return call.apply(call, arguments);
|
|
4895
5035
|
};
|
|
4896
5036
|
|
|
4897
5037
|
|
|
4898
5038
|
/***/ }),
|
|
4899
5039
|
|
|
4900
|
-
/***/ "../../node_modules/core-js/internals/
|
|
4901
|
-
|
|
4902
|
-
!*** ../../node_modules/core-js/internals/
|
|
4903
|
-
|
|
5040
|
+
/***/ "../../node_modules/core-js/internals/function-name.js":
|
|
5041
|
+
/*!*************************************************************!*\
|
|
5042
|
+
!*** ../../node_modules/core-js/internals/function-name.js ***!
|
|
5043
|
+
\*************************************************************/
|
|
4904
5044
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4905
5045
|
|
|
4906
|
-
var
|
|
4907
|
-
var
|
|
4908
|
-
var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
|
|
5046
|
+
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../../node_modules/core-js/internals/descriptors.js");
|
|
5047
|
+
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
|
|
4909
5048
|
|
|
4910
|
-
var
|
|
5049
|
+
var FunctionPrototype = Function.prototype;
|
|
5050
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
5051
|
+
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
4911
5052
|
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
|
-
|
|
5053
|
+
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
5054
|
+
// additional protection from minified / mangled / dropped function names
|
|
5055
|
+
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
5056
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
5057
|
+
|
|
5058
|
+
module.exports = {
|
|
5059
|
+
EXISTS: EXISTS,
|
|
5060
|
+
PROPER: PROPER,
|
|
5061
|
+
CONFIGURABLE: CONFIGURABLE
|
|
4916
5062
|
};
|
|
4917
5063
|
|
|
4918
5064
|
|
|
4919
5065
|
/***/ }),
|
|
4920
5066
|
|
|
4921
|
-
/***/ "../../node_modules/core-js/internals/
|
|
4922
|
-
|
|
4923
|
-
!*** ../../node_modules/core-js/internals/
|
|
5067
|
+
/***/ "../../node_modules/core-js/internals/function-uncurry-this.js":
|
|
5068
|
+
/*!*********************************************************************!*\
|
|
5069
|
+
!*** ../../node_modules/core-js/internals/function-uncurry-this.js ***!
|
|
5070
|
+
\*********************************************************************/
|
|
5071
|
+
/***/ ((module) => {
|
|
5072
|
+
|
|
5073
|
+
var FunctionPrototype = Function.prototype;
|
|
5074
|
+
var bind = FunctionPrototype.bind;
|
|
5075
|
+
var call = FunctionPrototype.call;
|
|
5076
|
+
var callBind = bind && bind.bind(call);
|
|
5077
|
+
|
|
5078
|
+
module.exports = bind ? function (fn) {
|
|
5079
|
+
return fn && callBind(call, fn);
|
|
5080
|
+
} : function (fn) {
|
|
5081
|
+
return fn && function () {
|
|
5082
|
+
return call.apply(fn, arguments);
|
|
5083
|
+
};
|
|
5084
|
+
};
|
|
5085
|
+
|
|
5086
|
+
|
|
5087
|
+
/***/ }),
|
|
5088
|
+
|
|
5089
|
+
/***/ "../../node_modules/core-js/internals/get-built-in.js":
|
|
5090
|
+
/*!************************************************************!*\
|
|
5091
|
+
!*** ../../node_modules/core-js/internals/get-built-in.js ***!
|
|
5092
|
+
\************************************************************/
|
|
5093
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5094
|
+
|
|
5095
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5096
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
5097
|
+
|
|
5098
|
+
var aFunction = function (argument) {
|
|
5099
|
+
return isCallable(argument) ? argument : undefined;
|
|
5100
|
+
};
|
|
5101
|
+
|
|
5102
|
+
module.exports = function (namespace, method) {
|
|
5103
|
+
return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];
|
|
5104
|
+
};
|
|
5105
|
+
|
|
5106
|
+
|
|
5107
|
+
/***/ }),
|
|
5108
|
+
|
|
5109
|
+
/***/ "../../node_modules/core-js/internals/get-iterator-method.js":
|
|
5110
|
+
/*!*******************************************************************!*\
|
|
5111
|
+
!*** ../../node_modules/core-js/internals/get-iterator-method.js ***!
|
|
5112
|
+
\*******************************************************************/
|
|
5113
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5114
|
+
|
|
5115
|
+
var classof = __webpack_require__(/*! ../internals/classof */ "../../node_modules/core-js/internals/classof.js");
|
|
5116
|
+
var getMethod = __webpack_require__(/*! ../internals/get-method */ "../../node_modules/core-js/internals/get-method.js");
|
|
5117
|
+
var Iterators = __webpack_require__(/*! ../internals/iterators */ "../../node_modules/core-js/internals/iterators.js");
|
|
5118
|
+
var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
|
|
5119
|
+
|
|
5120
|
+
var ITERATOR = wellKnownSymbol('iterator');
|
|
5121
|
+
|
|
5122
|
+
module.exports = function (it) {
|
|
5123
|
+
if (it != undefined) return getMethod(it, ITERATOR)
|
|
5124
|
+
|| getMethod(it, '@@iterator')
|
|
5125
|
+
|| Iterators[classof(it)];
|
|
5126
|
+
};
|
|
5127
|
+
|
|
5128
|
+
|
|
5129
|
+
/***/ }),
|
|
5130
|
+
|
|
5131
|
+
/***/ "../../node_modules/core-js/internals/get-iterator.js":
|
|
5132
|
+
/*!************************************************************!*\
|
|
5133
|
+
!*** ../../node_modules/core-js/internals/get-iterator.js ***!
|
|
5134
|
+
\************************************************************/
|
|
5135
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5136
|
+
|
|
5137
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5138
|
+
var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
|
|
5139
|
+
var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../../node_modules/core-js/internals/a-callable.js");
|
|
5140
|
+
var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
|
|
5141
|
+
var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../../node_modules/core-js/internals/try-to-string.js");
|
|
5142
|
+
var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "../../node_modules/core-js/internals/get-iterator-method.js");
|
|
5143
|
+
|
|
5144
|
+
var TypeError = global.TypeError;
|
|
5145
|
+
|
|
5146
|
+
module.exports = function (argument, usingIterator) {
|
|
5147
|
+
var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
|
|
5148
|
+
if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
|
|
5149
|
+
throw TypeError(tryToString(argument) + ' is not iterable');
|
|
5150
|
+
};
|
|
5151
|
+
|
|
5152
|
+
|
|
5153
|
+
/***/ }),
|
|
5154
|
+
|
|
5155
|
+
/***/ "../../node_modules/core-js/internals/get-method.js":
|
|
5156
|
+
/*!**********************************************************!*\
|
|
5157
|
+
!*** ../../node_modules/core-js/internals/get-method.js ***!
|
|
5158
|
+
\**********************************************************/
|
|
5159
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5160
|
+
|
|
5161
|
+
var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../../node_modules/core-js/internals/a-callable.js");
|
|
5162
|
+
|
|
5163
|
+
// `GetMethod` abstract operation
|
|
5164
|
+
// https://tc39.es/ecma262/#sec-getmethod
|
|
5165
|
+
module.exports = function (V, P) {
|
|
5166
|
+
var func = V[P];
|
|
5167
|
+
return func == null ? undefined : aCallable(func);
|
|
5168
|
+
};
|
|
5169
|
+
|
|
5170
|
+
|
|
5171
|
+
/***/ }),
|
|
5172
|
+
|
|
5173
|
+
/***/ "../../node_modules/core-js/internals/global.js":
|
|
5174
|
+
/*!******************************************************!*\
|
|
5175
|
+
!*** ../../node_modules/core-js/internals/global.js ***!
|
|
4924
5176
|
\******************************************************/
|
|
4925
5177
|
/***/ ((module) => {
|
|
4926
5178
|
|
|
@@ -4942,18 +5194,21 @@ module.exports =
|
|
|
4942
5194
|
|
|
4943
5195
|
/***/ }),
|
|
4944
5196
|
|
|
4945
|
-
/***/ "../../node_modules/core-js/internals/has.js":
|
|
4946
|
-
|
|
4947
|
-
!*** ../../node_modules/core-js/internals/has.js ***!
|
|
4948
|
-
|
|
5197
|
+
/***/ "../../node_modules/core-js/internals/has-own-property.js":
|
|
5198
|
+
/*!****************************************************************!*\
|
|
5199
|
+
!*** ../../node_modules/core-js/internals/has-own-property.js ***!
|
|
5200
|
+
\****************************************************************/
|
|
4949
5201
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4950
5202
|
|
|
5203
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
4951
5204
|
var toObject = __webpack_require__(/*! ../internals/to-object */ "../../node_modules/core-js/internals/to-object.js");
|
|
4952
5205
|
|
|
4953
|
-
var hasOwnProperty = {}.hasOwnProperty;
|
|
5206
|
+
var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
4954
5207
|
|
|
5208
|
+
// `HasOwnProperty` abstract operation
|
|
5209
|
+
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
4955
5210
|
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
4956
|
-
return hasOwnProperty
|
|
5211
|
+
return hasOwnProperty(toObject(it), key);
|
|
4957
5212
|
};
|
|
4958
5213
|
|
|
4959
5214
|
|
|
@@ -4981,7 +5236,7 @@ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/
|
|
|
4981
5236
|
module.exports = function (a, b) {
|
|
4982
5237
|
var console = global.console;
|
|
4983
5238
|
if (console && console.error) {
|
|
4984
|
-
arguments.length
|
|
5239
|
+
arguments.length == 1 ? console.error(a) : console.error(a, b);
|
|
4985
5240
|
}
|
|
4986
5241
|
};
|
|
4987
5242
|
|
|
@@ -5028,10 +5283,13 @@ module.exports = !DESCRIPTORS && !fails(function () {
|
|
|
5028
5283
|
\**************************************************************/
|
|
5029
5284
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5030
5285
|
|
|
5286
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5287
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
5031
5288
|
var fails = __webpack_require__(/*! ../internals/fails */ "../../node_modules/core-js/internals/fails.js");
|
|
5032
5289
|
var classof = __webpack_require__(/*! ../internals/classof-raw */ "../../node_modules/core-js/internals/classof-raw.js");
|
|
5033
5290
|
|
|
5034
|
-
var
|
|
5291
|
+
var Object = global.Object;
|
|
5292
|
+
var split = uncurryThis(''.split);
|
|
5035
5293
|
|
|
5036
5294
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
5037
5295
|
module.exports = fails(function () {
|
|
@@ -5039,7 +5297,7 @@ module.exports = fails(function () {
|
|
|
5039
5297
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
5040
5298
|
return !Object('z').propertyIsEnumerable(0);
|
|
5041
5299
|
}) ? function (it) {
|
|
5042
|
-
return classof(it) == 'String' ? split
|
|
5300
|
+
return classof(it) == 'String' ? split(it, '') : Object(it);
|
|
5043
5301
|
} : Object;
|
|
5044
5302
|
|
|
5045
5303
|
|
|
@@ -5051,14 +5309,16 @@ module.exports = fails(function () {
|
|
|
5051
5309
|
\**************************************************************/
|
|
5052
5310
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5053
5311
|
|
|
5312
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
5313
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
5054
5314
|
var store = __webpack_require__(/*! ../internals/shared-store */ "../../node_modules/core-js/internals/shared-store.js");
|
|
5055
5315
|
|
|
5056
|
-
var functionToString = Function.toString;
|
|
5316
|
+
var functionToString = uncurryThis(Function.toString);
|
|
5057
5317
|
|
|
5058
5318
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
5059
|
-
if (
|
|
5319
|
+
if (!isCallable(store.inspectSource)) {
|
|
5060
5320
|
store.inspectSource = function (it) {
|
|
5061
|
-
return functionToString
|
|
5321
|
+
return functionToString(it);
|
|
5062
5322
|
};
|
|
5063
5323
|
}
|
|
5064
5324
|
|
|
@@ -5075,14 +5335,16 @@ module.exports = store.inspectSource;
|
|
|
5075
5335
|
|
|
5076
5336
|
var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/native-weak-map */ "../../node_modules/core-js/internals/native-weak-map.js");
|
|
5077
5337
|
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5338
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
5078
5339
|
var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
|
|
5079
5340
|
var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../../node_modules/core-js/internals/create-non-enumerable-property.js");
|
|
5080
|
-
var
|
|
5341
|
+
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
|
|
5081
5342
|
var shared = __webpack_require__(/*! ../internals/shared-store */ "../../node_modules/core-js/internals/shared-store.js");
|
|
5082
5343
|
var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../../node_modules/core-js/internals/shared-key.js");
|
|
5083
5344
|
var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../../node_modules/core-js/internals/hidden-keys.js");
|
|
5084
5345
|
|
|
5085
5346
|
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
5347
|
+
var TypeError = global.TypeError;
|
|
5086
5348
|
var WeakMap = global.WeakMap;
|
|
5087
5349
|
var set, get, has;
|
|
5088
5350
|
|
|
@@ -5101,35 +5363,35 @@ var getterFor = function (TYPE) {
|
|
|
5101
5363
|
|
|
5102
5364
|
if (NATIVE_WEAK_MAP || shared.state) {
|
|
5103
5365
|
var store = shared.state || (shared.state = new WeakMap());
|
|
5104
|
-
var wmget = store.get;
|
|
5105
|
-
var wmhas = store.has;
|
|
5106
|
-
var wmset = store.set;
|
|
5366
|
+
var wmget = uncurryThis(store.get);
|
|
5367
|
+
var wmhas = uncurryThis(store.has);
|
|
5368
|
+
var wmset = uncurryThis(store.set);
|
|
5107
5369
|
set = function (it, metadata) {
|
|
5108
|
-
if (wmhas
|
|
5370
|
+
if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
5109
5371
|
metadata.facade = it;
|
|
5110
|
-
wmset
|
|
5372
|
+
wmset(store, it, metadata);
|
|
5111
5373
|
return metadata;
|
|
5112
5374
|
};
|
|
5113
5375
|
get = function (it) {
|
|
5114
|
-
return wmget
|
|
5376
|
+
return wmget(store, it) || {};
|
|
5115
5377
|
};
|
|
5116
5378
|
has = function (it) {
|
|
5117
|
-
return wmhas
|
|
5379
|
+
return wmhas(store, it);
|
|
5118
5380
|
};
|
|
5119
5381
|
} else {
|
|
5120
5382
|
var STATE = sharedKey('state');
|
|
5121
5383
|
hiddenKeys[STATE] = true;
|
|
5122
5384
|
set = function (it, metadata) {
|
|
5123
|
-
if (
|
|
5385
|
+
if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
5124
5386
|
metadata.facade = it;
|
|
5125
5387
|
createNonEnumerableProperty(it, STATE, metadata);
|
|
5126
5388
|
return metadata;
|
|
5127
5389
|
};
|
|
5128
5390
|
get = function (it) {
|
|
5129
|
-
return
|
|
5391
|
+
return hasOwn(it, STATE) ? it[STATE] : {};
|
|
5130
5392
|
};
|
|
5131
5393
|
has = function (it) {
|
|
5132
|
-
return
|
|
5394
|
+
return hasOwn(it, STATE);
|
|
5133
5395
|
};
|
|
5134
5396
|
}
|
|
5135
5397
|
|
|
@@ -5162,6 +5424,74 @@ module.exports = function (it) {
|
|
|
5162
5424
|
};
|
|
5163
5425
|
|
|
5164
5426
|
|
|
5427
|
+
/***/ }),
|
|
5428
|
+
|
|
5429
|
+
/***/ "../../node_modules/core-js/internals/is-callable.js":
|
|
5430
|
+
/*!***********************************************************!*\
|
|
5431
|
+
!*** ../../node_modules/core-js/internals/is-callable.js ***!
|
|
5432
|
+
\***********************************************************/
|
|
5433
|
+
/***/ ((module) => {
|
|
5434
|
+
|
|
5435
|
+
// `IsCallable` abstract operation
|
|
5436
|
+
// https://tc39.es/ecma262/#sec-iscallable
|
|
5437
|
+
module.exports = function (argument) {
|
|
5438
|
+
return typeof argument == 'function';
|
|
5439
|
+
};
|
|
5440
|
+
|
|
5441
|
+
|
|
5442
|
+
/***/ }),
|
|
5443
|
+
|
|
5444
|
+
/***/ "../../node_modules/core-js/internals/is-constructor.js":
|
|
5445
|
+
/*!**************************************************************!*\
|
|
5446
|
+
!*** ../../node_modules/core-js/internals/is-constructor.js ***!
|
|
5447
|
+
\**************************************************************/
|
|
5448
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5449
|
+
|
|
5450
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
5451
|
+
var fails = __webpack_require__(/*! ../internals/fails */ "../../node_modules/core-js/internals/fails.js");
|
|
5452
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
5453
|
+
var classof = __webpack_require__(/*! ../internals/classof */ "../../node_modules/core-js/internals/classof.js");
|
|
5454
|
+
var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../../node_modules/core-js/internals/get-built-in.js");
|
|
5455
|
+
var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../../node_modules/core-js/internals/inspect-source.js");
|
|
5456
|
+
|
|
5457
|
+
var noop = function () { /* empty */ };
|
|
5458
|
+
var empty = [];
|
|
5459
|
+
var construct = getBuiltIn('Reflect', 'construct');
|
|
5460
|
+
var constructorRegExp = /^\s*(?:class|function)\b/;
|
|
5461
|
+
var exec = uncurryThis(constructorRegExp.exec);
|
|
5462
|
+
var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
|
|
5463
|
+
|
|
5464
|
+
var isConstructorModern = function (argument) {
|
|
5465
|
+
if (!isCallable(argument)) return false;
|
|
5466
|
+
try {
|
|
5467
|
+
construct(noop, empty, argument);
|
|
5468
|
+
return true;
|
|
5469
|
+
} catch (error) {
|
|
5470
|
+
return false;
|
|
5471
|
+
}
|
|
5472
|
+
};
|
|
5473
|
+
|
|
5474
|
+
var isConstructorLegacy = function (argument) {
|
|
5475
|
+
if (!isCallable(argument)) return false;
|
|
5476
|
+
switch (classof(argument)) {
|
|
5477
|
+
case 'AsyncFunction':
|
|
5478
|
+
case 'GeneratorFunction':
|
|
5479
|
+
case 'AsyncGeneratorFunction': return false;
|
|
5480
|
+
// we can't check .prototype since constructors produced by .bind haven't it
|
|
5481
|
+
} return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
|
|
5482
|
+
};
|
|
5483
|
+
|
|
5484
|
+
// `IsConstructor` abstract operation
|
|
5485
|
+
// https://tc39.es/ecma262/#sec-isconstructor
|
|
5486
|
+
module.exports = !construct || fails(function () {
|
|
5487
|
+
var called;
|
|
5488
|
+
return isConstructorModern(isConstructorModern.call)
|
|
5489
|
+
|| !isConstructorModern(Object)
|
|
5490
|
+
|| !isConstructorModern(function () { called = true; })
|
|
5491
|
+
|| called;
|
|
5492
|
+
}) ? isConstructorLegacy : isConstructorModern;
|
|
5493
|
+
|
|
5494
|
+
|
|
5165
5495
|
/***/ }),
|
|
5166
5496
|
|
|
5167
5497
|
/***/ "../../node_modules/core-js/internals/is-forced.js":
|
|
@@ -5171,6 +5501,7 @@ module.exports = function (it) {
|
|
|
5171
5501
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5172
5502
|
|
|
5173
5503
|
var fails = __webpack_require__(/*! ../internals/fails */ "../../node_modules/core-js/internals/fails.js");
|
|
5504
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
5174
5505
|
|
|
5175
5506
|
var replacement = /#|\.prototype\./;
|
|
5176
5507
|
|
|
@@ -5178,7 +5509,7 @@ var isForced = function (feature, detection) {
|
|
|
5178
5509
|
var value = data[normalize(feature)];
|
|
5179
5510
|
return value == POLYFILL ? true
|
|
5180
5511
|
: value == NATIVE ? false
|
|
5181
|
-
:
|
|
5512
|
+
: isCallable(detection) ? fails(detection)
|
|
5182
5513
|
: !!detection;
|
|
5183
5514
|
};
|
|
5184
5515
|
|
|
@@ -5199,10 +5530,12 @@ module.exports = isForced;
|
|
|
5199
5530
|
/*!*********************************************************!*\
|
|
5200
5531
|
!*** ../../node_modules/core-js/internals/is-object.js ***!
|
|
5201
5532
|
\*********************************************************/
|
|
5202
|
-
/***/ ((module) => {
|
|
5533
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5534
|
+
|
|
5535
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
5203
5536
|
|
|
5204
5537
|
module.exports = function (it) {
|
|
5205
|
-
return typeof it
|
|
5538
|
+
return typeof it == 'object' ? it !== null : isCallable(it);
|
|
5206
5539
|
};
|
|
5207
5540
|
|
|
5208
5541
|
|
|
@@ -5225,14 +5558,19 @@ module.exports = false;
|
|
|
5225
5558
|
\*********************************************************/
|
|
5226
5559
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5227
5560
|
|
|
5561
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5228
5562
|
var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../../node_modules/core-js/internals/get-built-in.js");
|
|
5563
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
5564
|
+
var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../../node_modules/core-js/internals/object-is-prototype-of.js");
|
|
5229
5565
|
var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../../node_modules/core-js/internals/use-symbol-as-uid.js");
|
|
5230
5566
|
|
|
5567
|
+
var Object = global.Object;
|
|
5568
|
+
|
|
5231
5569
|
module.exports = USE_SYMBOL_AS_UID ? function (it) {
|
|
5232
5570
|
return typeof it == 'symbol';
|
|
5233
5571
|
} : function (it) {
|
|
5234
5572
|
var $Symbol = getBuiltIn('Symbol');
|
|
5235
|
-
return
|
|
5573
|
+
return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, Object(it));
|
|
5236
5574
|
};
|
|
5237
5575
|
|
|
5238
5576
|
|
|
@@ -5244,28 +5582,37 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
|
|
|
5244
5582
|
\*******************************************************/
|
|
5245
5583
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5246
5584
|
|
|
5585
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5586
|
+
var bind = __webpack_require__(/*! ../internals/function-bind-context */ "../../node_modules/core-js/internals/function-bind-context.js");
|
|
5587
|
+
var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
|
|
5247
5588
|
var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
|
|
5589
|
+
var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../../node_modules/core-js/internals/try-to-string.js");
|
|
5248
5590
|
var isArrayIteratorMethod = __webpack_require__(/*! ../internals/is-array-iterator-method */ "../../node_modules/core-js/internals/is-array-iterator-method.js");
|
|
5249
|
-
var
|
|
5250
|
-
var
|
|
5591
|
+
var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../../node_modules/core-js/internals/length-of-array-like.js");
|
|
5592
|
+
var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../../node_modules/core-js/internals/object-is-prototype-of.js");
|
|
5593
|
+
var getIterator = __webpack_require__(/*! ../internals/get-iterator */ "../../node_modules/core-js/internals/get-iterator.js");
|
|
5251
5594
|
var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "../../node_modules/core-js/internals/get-iterator-method.js");
|
|
5252
5595
|
var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../../node_modules/core-js/internals/iterator-close.js");
|
|
5253
5596
|
|
|
5597
|
+
var TypeError = global.TypeError;
|
|
5598
|
+
|
|
5254
5599
|
var Result = function (stopped, result) {
|
|
5255
5600
|
this.stopped = stopped;
|
|
5256
5601
|
this.result = result;
|
|
5257
5602
|
};
|
|
5258
5603
|
|
|
5604
|
+
var ResultPrototype = Result.prototype;
|
|
5605
|
+
|
|
5259
5606
|
module.exports = function (iterable, unboundFunction, options) {
|
|
5260
5607
|
var that = options && options.that;
|
|
5261
5608
|
var AS_ENTRIES = !!(options && options.AS_ENTRIES);
|
|
5262
5609
|
var IS_ITERATOR = !!(options && options.IS_ITERATOR);
|
|
5263
5610
|
var INTERRUPTED = !!(options && options.INTERRUPTED);
|
|
5264
|
-
var fn = bind(unboundFunction, that
|
|
5611
|
+
var fn = bind(unboundFunction, that);
|
|
5265
5612
|
var iterator, iterFn, index, length, result, next, step;
|
|
5266
5613
|
|
|
5267
5614
|
var stop = function (condition) {
|
|
5268
|
-
if (iterator) iteratorClose(iterator);
|
|
5615
|
+
if (iterator) iteratorClose(iterator, 'normal', condition);
|
|
5269
5616
|
return new Result(true, condition);
|
|
5270
5617
|
};
|
|
5271
5618
|
|
|
@@ -5280,26 +5627,25 @@ module.exports = function (iterable, unboundFunction, options) {
|
|
|
5280
5627
|
iterator = iterable;
|
|
5281
5628
|
} else {
|
|
5282
5629
|
iterFn = getIteratorMethod(iterable);
|
|
5283
|
-
if (
|
|
5630
|
+
if (!iterFn) throw TypeError(tryToString(iterable) + ' is not iterable');
|
|
5284
5631
|
// optimisation for array iterators
|
|
5285
5632
|
if (isArrayIteratorMethod(iterFn)) {
|
|
5286
|
-
for (index = 0, length =
|
|
5633
|
+
for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
|
|
5287
5634
|
result = callFn(iterable[index]);
|
|
5288
|
-
if (result && result
|
|
5635
|
+
if (result && isPrototypeOf(ResultPrototype, result)) return result;
|
|
5289
5636
|
} return new Result(false);
|
|
5290
5637
|
}
|
|
5291
|
-
iterator =
|
|
5638
|
+
iterator = getIterator(iterable, iterFn);
|
|
5292
5639
|
}
|
|
5293
5640
|
|
|
5294
5641
|
next = iterator.next;
|
|
5295
|
-
while (!(step =
|
|
5642
|
+
while (!(step = call(next, iterator)).done) {
|
|
5296
5643
|
try {
|
|
5297
5644
|
result = callFn(step.value);
|
|
5298
5645
|
} catch (error) {
|
|
5299
|
-
iteratorClose(iterator);
|
|
5300
|
-
throw error;
|
|
5646
|
+
iteratorClose(iterator, 'throw', error);
|
|
5301
5647
|
}
|
|
5302
|
-
if (typeof result == 'object' && result && result
|
|
5648
|
+
if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
|
|
5303
5649
|
} return new Result(false);
|
|
5304
5650
|
};
|
|
5305
5651
|
|
|
@@ -5312,13 +5658,28 @@ module.exports = function (iterable, unboundFunction, options) {
|
|
|
5312
5658
|
\**************************************************************/
|
|
5313
5659
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5314
5660
|
|
|
5661
|
+
var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
|
|
5315
5662
|
var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
|
|
5663
|
+
var getMethod = __webpack_require__(/*! ../internals/get-method */ "../../node_modules/core-js/internals/get-method.js");
|
|
5316
5664
|
|
|
5317
|
-
module.exports = function (iterator) {
|
|
5318
|
-
var
|
|
5319
|
-
|
|
5320
|
-
|
|
5665
|
+
module.exports = function (iterator, kind, value) {
|
|
5666
|
+
var innerResult, innerError;
|
|
5667
|
+
anObject(iterator);
|
|
5668
|
+
try {
|
|
5669
|
+
innerResult = getMethod(iterator, 'return');
|
|
5670
|
+
if (!innerResult) {
|
|
5671
|
+
if (kind === 'throw') throw value;
|
|
5672
|
+
return value;
|
|
5673
|
+
}
|
|
5674
|
+
innerResult = call(innerResult, iterator);
|
|
5675
|
+
} catch (error) {
|
|
5676
|
+
innerError = true;
|
|
5677
|
+
innerResult = error;
|
|
5321
5678
|
}
|
|
5679
|
+
if (kind === 'throw') throw value;
|
|
5680
|
+
if (innerError) throw innerResult;
|
|
5681
|
+
anObject(innerResult);
|
|
5682
|
+
return value;
|
|
5322
5683
|
};
|
|
5323
5684
|
|
|
5324
5685
|
|
|
@@ -5333,6 +5694,23 @@ module.exports = function (iterator) {
|
|
|
5333
5694
|
module.exports = {};
|
|
5334
5695
|
|
|
5335
5696
|
|
|
5697
|
+
/***/ }),
|
|
5698
|
+
|
|
5699
|
+
/***/ "../../node_modules/core-js/internals/length-of-array-like.js":
|
|
5700
|
+
/*!********************************************************************!*\
|
|
5701
|
+
!*** ../../node_modules/core-js/internals/length-of-array-like.js ***!
|
|
5702
|
+
\********************************************************************/
|
|
5703
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5704
|
+
|
|
5705
|
+
var toLength = __webpack_require__(/*! ../internals/to-length */ "../../node_modules/core-js/internals/to-length.js");
|
|
5706
|
+
|
|
5707
|
+
// `LengthOfArrayLike` abstract operation
|
|
5708
|
+
// https://tc39.es/ecma262/#sec-lengthofarraylike
|
|
5709
|
+
module.exports = function (obj) {
|
|
5710
|
+
return toLength(obj.length);
|
|
5711
|
+
};
|
|
5712
|
+
|
|
5713
|
+
|
|
5336
5714
|
/***/ }),
|
|
5337
5715
|
|
|
5338
5716
|
/***/ "../../node_modules/core-js/internals/microtask.js":
|
|
@@ -5342,9 +5720,11 @@ module.exports = {};
|
|
|
5342
5720
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5343
5721
|
|
|
5344
5722
|
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5723
|
+
var bind = __webpack_require__(/*! ../internals/function-bind-context */ "../../node_modules/core-js/internals/function-bind-context.js");
|
|
5345
5724
|
var getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../../node_modules/core-js/internals/object-get-own-property-descriptor.js").f;
|
|
5346
5725
|
var macrotask = __webpack_require__(/*! ../internals/task */ "../../node_modules/core-js/internals/task.js").set;
|
|
5347
5726
|
var IS_IOS = __webpack_require__(/*! ../internals/engine-is-ios */ "../../node_modules/core-js/internals/engine-is-ios.js");
|
|
5727
|
+
var IS_IOS_PEBBLE = __webpack_require__(/*! ../internals/engine-is-ios-pebble */ "../../node_modules/core-js/internals/engine-is-ios-pebble.js");
|
|
5348
5728
|
var IS_WEBOS_WEBKIT = __webpack_require__(/*! ../internals/engine-is-webos-webkit */ "../../node_modules/core-js/internals/engine-is-webos-webkit.js");
|
|
5349
5729
|
var IS_NODE = __webpack_require__(/*! ../internals/engine-is-node */ "../../node_modules/core-js/internals/engine-is-node.js");
|
|
5350
5730
|
|
|
@@ -5387,14 +5767,14 @@ if (!queueMicrotask) {
|
|
|
5387
5767
|
node.data = toggle = !toggle;
|
|
5388
5768
|
};
|
|
5389
5769
|
// environments with maybe non-completely correct, but existent Promise
|
|
5390
|
-
} else if (Promise && Promise.resolve) {
|
|
5770
|
+
} else if (!IS_IOS_PEBBLE && Promise && Promise.resolve) {
|
|
5391
5771
|
// Promise.resolve without an argument throws an error in LG WebOS 2
|
|
5392
5772
|
promise = Promise.resolve(undefined);
|
|
5393
5773
|
// workaround of WebKit ~ iOS Safari 10.1 bug
|
|
5394
5774
|
promise.constructor = Promise;
|
|
5395
|
-
then = promise.then;
|
|
5775
|
+
then = bind(promise.then, promise);
|
|
5396
5776
|
notify = function () {
|
|
5397
|
-
then
|
|
5777
|
+
then(flush);
|
|
5398
5778
|
};
|
|
5399
5779
|
// Node.js without promises
|
|
5400
5780
|
} else if (IS_NODE) {
|
|
@@ -5408,9 +5788,10 @@ if (!queueMicrotask) {
|
|
|
5408
5788
|
// - onreadystatechange
|
|
5409
5789
|
// - setTimeout
|
|
5410
5790
|
} else {
|
|
5791
|
+
// strange IE + webpack dev server bug - use .bind(global)
|
|
5792
|
+
macrotask = bind(macrotask, global);
|
|
5411
5793
|
notify = function () {
|
|
5412
|
-
|
|
5413
|
-
macrotask.call(global, flush);
|
|
5794
|
+
macrotask(flush);
|
|
5414
5795
|
};
|
|
5415
5796
|
}
|
|
5416
5797
|
}
|
|
@@ -5470,11 +5851,12 @@ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
|
5470
5851
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5471
5852
|
|
|
5472
5853
|
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5854
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
5473
5855
|
var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../../node_modules/core-js/internals/inspect-source.js");
|
|
5474
5856
|
|
|
5475
5857
|
var WeakMap = global.WeakMap;
|
|
5476
5858
|
|
|
5477
|
-
module.exports =
|
|
5859
|
+
module.exports = isCallable(WeakMap) && /native code/.test(inspectSource(WeakMap));
|
|
5478
5860
|
|
|
5479
5861
|
|
|
5480
5862
|
/***/ }),
|
|
@@ -5487,7 +5869,7 @@ module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSour
|
|
|
5487
5869
|
|
|
5488
5870
|
"use strict";
|
|
5489
5871
|
|
|
5490
|
-
var
|
|
5872
|
+
var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../../node_modules/core-js/internals/a-callable.js");
|
|
5491
5873
|
|
|
5492
5874
|
var PromiseCapability = function (C) {
|
|
5493
5875
|
var resolve, reject;
|
|
@@ -5496,8 +5878,8 @@ var PromiseCapability = function (C) {
|
|
|
5496
5878
|
resolve = $$resolve;
|
|
5497
5879
|
reject = $$reject;
|
|
5498
5880
|
});
|
|
5499
|
-
this.resolve =
|
|
5500
|
-
this.reject =
|
|
5881
|
+
this.resolve = aCallable(resolve);
|
|
5882
|
+
this.reject = aCallable(reject);
|
|
5501
5883
|
};
|
|
5502
5884
|
|
|
5503
5885
|
// `NewPromiseCapability` abstract operation
|
|
@@ -5515,11 +5897,13 @@ module.exports.f = function (C) {
|
|
|
5515
5897
|
\**********************************************************************/
|
|
5516
5898
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
5517
5899
|
|
|
5900
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5518
5901
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../../node_modules/core-js/internals/descriptors.js");
|
|
5519
5902
|
var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../../node_modules/core-js/internals/ie8-dom-define.js");
|
|
5520
5903
|
var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
|
|
5521
5904
|
var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../../node_modules/core-js/internals/to-property-key.js");
|
|
5522
5905
|
|
|
5906
|
+
var TypeError = global.TypeError;
|
|
5523
5907
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
5524
5908
|
var $defineProperty = Object.defineProperty;
|
|
5525
5909
|
|
|
@@ -5547,11 +5931,12 @@ exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attrib
|
|
|
5547
5931
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
5548
5932
|
|
|
5549
5933
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../../node_modules/core-js/internals/descriptors.js");
|
|
5934
|
+
var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
|
|
5550
5935
|
var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "../../node_modules/core-js/internals/object-property-is-enumerable.js");
|
|
5551
5936
|
var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../../node_modules/core-js/internals/create-property-descriptor.js");
|
|
5552
5937
|
var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../../node_modules/core-js/internals/to-indexed-object.js");
|
|
5553
5938
|
var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../../node_modules/core-js/internals/to-property-key.js");
|
|
5554
|
-
var
|
|
5939
|
+
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
|
|
5555
5940
|
var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../../node_modules/core-js/internals/ie8-dom-define.js");
|
|
5556
5941
|
|
|
5557
5942
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
@@ -5565,7 +5950,7 @@ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDes
|
|
|
5565
5950
|
if (IE8_DOM_DEFINE) try {
|
|
5566
5951
|
return $getOwnPropertyDescriptor(O, P);
|
|
5567
5952
|
} catch (error) { /* empty */ }
|
|
5568
|
-
if (
|
|
5953
|
+
if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
5569
5954
|
};
|
|
5570
5955
|
|
|
5571
5956
|
|
|
@@ -5602,6 +5987,19 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
|
5602
5987
|
exports.f = Object.getOwnPropertySymbols;
|
|
5603
5988
|
|
|
5604
5989
|
|
|
5990
|
+
/***/ }),
|
|
5991
|
+
|
|
5992
|
+
/***/ "../../node_modules/core-js/internals/object-is-prototype-of.js":
|
|
5993
|
+
/*!**********************************************************************!*\
|
|
5994
|
+
!*** ../../node_modules/core-js/internals/object-is-prototype-of.js ***!
|
|
5995
|
+
\**********************************************************************/
|
|
5996
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5997
|
+
|
|
5998
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
5999
|
+
|
|
6000
|
+
module.exports = uncurryThis({}.isPrototypeOf);
|
|
6001
|
+
|
|
6002
|
+
|
|
5605
6003
|
/***/ }),
|
|
5606
6004
|
|
|
5607
6005
|
/***/ "../../node_modules/core-js/internals/object-keys-internal.js":
|
|
@@ -5610,20 +6008,23 @@ exports.f = Object.getOwnPropertySymbols;
|
|
|
5610
6008
|
\********************************************************************/
|
|
5611
6009
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5612
6010
|
|
|
5613
|
-
var
|
|
6011
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
6012
|
+
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
|
|
5614
6013
|
var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../../node_modules/core-js/internals/to-indexed-object.js");
|
|
5615
6014
|
var indexOf = __webpack_require__(/*! ../internals/array-includes */ "../../node_modules/core-js/internals/array-includes.js").indexOf;
|
|
5616
6015
|
var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../../node_modules/core-js/internals/hidden-keys.js");
|
|
5617
6016
|
|
|
6017
|
+
var push = uncurryThis([].push);
|
|
6018
|
+
|
|
5618
6019
|
module.exports = function (object, names) {
|
|
5619
6020
|
var O = toIndexedObject(object);
|
|
5620
6021
|
var i = 0;
|
|
5621
6022
|
var result = [];
|
|
5622
6023
|
var key;
|
|
5623
|
-
for (key in O) !
|
|
6024
|
+
for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
|
|
5624
6025
|
// Don't enum bug & hidden keys
|
|
5625
|
-
while (names.length > i) if (
|
|
5626
|
-
~indexOf(result, key) ||
|
|
6026
|
+
while (names.length > i) if (hasOwn(O, key = names[i++])) {
|
|
6027
|
+
~indexOf(result, key) || push(result, key);
|
|
5627
6028
|
}
|
|
5628
6029
|
return result;
|
|
5629
6030
|
};
|
|
@@ -5663,6 +6064,7 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
|
5663
6064
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5664
6065
|
|
|
5665
6066
|
/* eslint-disable no-proto -- safe */
|
|
6067
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
5666
6068
|
var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
|
|
5667
6069
|
var aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ "../../node_modules/core-js/internals/a-possible-prototype.js");
|
|
5668
6070
|
|
|
@@ -5676,14 +6078,14 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
|
5676
6078
|
var setter;
|
|
5677
6079
|
try {
|
|
5678
6080
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
5679
|
-
setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
|
|
5680
|
-
setter
|
|
6081
|
+
setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
6082
|
+
setter(test, []);
|
|
5681
6083
|
CORRECT_SETTER = test instanceof Array;
|
|
5682
6084
|
} catch (error) { /* empty */ }
|
|
5683
6085
|
return function setPrototypeOf(O, proto) {
|
|
5684
6086
|
anObject(O);
|
|
5685
6087
|
aPossiblePrototype(proto);
|
|
5686
|
-
if (CORRECT_SETTER) setter
|
|
6088
|
+
if (CORRECT_SETTER) setter(O, proto);
|
|
5687
6089
|
else O.__proto__ = proto;
|
|
5688
6090
|
return O;
|
|
5689
6091
|
};
|
|
@@ -5698,15 +6100,20 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
|
5698
6100
|
\*********************************************************************/
|
|
5699
6101
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5700
6102
|
|
|
6103
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6104
|
+
var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
|
|
6105
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
5701
6106
|
var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
|
|
5702
6107
|
|
|
6108
|
+
var TypeError = global.TypeError;
|
|
6109
|
+
|
|
5703
6110
|
// `OrdinaryToPrimitive` abstract operation
|
|
5704
6111
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
5705
6112
|
module.exports = function (input, pref) {
|
|
5706
6113
|
var fn, val;
|
|
5707
|
-
if (pref === 'string' &&
|
|
5708
|
-
if (
|
|
5709
|
-
if (pref !== 'string' &&
|
|
6114
|
+
if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
|
|
6115
|
+
if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
|
|
6116
|
+
if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
|
|
5710
6117
|
throw TypeError("Can't convert object to primitive value");
|
|
5711
6118
|
};
|
|
5712
6119
|
|
|
@@ -5720,15 +6127,18 @@ module.exports = function (input, pref) {
|
|
|
5720
6127
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5721
6128
|
|
|
5722
6129
|
var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../../node_modules/core-js/internals/get-built-in.js");
|
|
6130
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
5723
6131
|
var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "../../node_modules/core-js/internals/object-get-own-property-names.js");
|
|
5724
6132
|
var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "../../node_modules/core-js/internals/object-get-own-property-symbols.js");
|
|
5725
6133
|
var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
|
|
5726
6134
|
|
|
6135
|
+
var concat = uncurryThis([].concat);
|
|
6136
|
+
|
|
5727
6137
|
// all object keys, includes non-enumerable and symbols
|
|
5728
6138
|
module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
5729
6139
|
var keys = getOwnPropertyNamesModule.f(anObject(it));
|
|
5730
6140
|
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
5731
|
-
return getOwnPropertySymbols ?
|
|
6141
|
+
return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
|
|
5732
6142
|
};
|
|
5733
6143
|
|
|
5734
6144
|
|
|
@@ -5796,11 +6206,13 @@ module.exports = function (target, src, options) {
|
|
|
5796
6206
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5797
6207
|
|
|
5798
6208
|
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6209
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
6210
|
+
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
|
|
5799
6211
|
var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../../node_modules/core-js/internals/create-non-enumerable-property.js");
|
|
5800
|
-
var has = __webpack_require__(/*! ../internals/has */ "../../node_modules/core-js/internals/has.js");
|
|
5801
6212
|
var setGlobal = __webpack_require__(/*! ../internals/set-global */ "../../node_modules/core-js/internals/set-global.js");
|
|
5802
6213
|
var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../../node_modules/core-js/internals/inspect-source.js");
|
|
5803
6214
|
var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "../../node_modules/core-js/internals/internal-state.js");
|
|
6215
|
+
var CONFIGURABLE_FUNCTION_NAME = __webpack_require__(/*! ../internals/function-name */ "../../node_modules/core-js/internals/function-name.js").CONFIGURABLE;
|
|
5804
6216
|
|
|
5805
6217
|
var getInternalState = InternalStateModule.get;
|
|
5806
6218
|
var enforceInternalState = InternalStateModule.enforce;
|
|
@@ -5810,14 +6222,18 @@ var TEMPLATE = String(String).split('String');
|
|
|
5810
6222
|
var unsafe = options ? !!options.unsafe : false;
|
|
5811
6223
|
var simple = options ? !!options.enumerable : false;
|
|
5812
6224
|
var noTargetGet = options ? !!options.noTargetGet : false;
|
|
6225
|
+
var name = options && options.name !== undefined ? options.name : key;
|
|
5813
6226
|
var state;
|
|
5814
|
-
if (
|
|
5815
|
-
if (
|
|
5816
|
-
|
|
6227
|
+
if (isCallable(value)) {
|
|
6228
|
+
if (String(name).slice(0, 7) === 'Symbol(') {
|
|
6229
|
+
name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
|
|
6230
|
+
}
|
|
6231
|
+
if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
6232
|
+
createNonEnumerableProperty(value, 'name', name);
|
|
5817
6233
|
}
|
|
5818
6234
|
state = enforceInternalState(value);
|
|
5819
6235
|
if (!state.source) {
|
|
5820
|
-
state.source = TEMPLATE.join(typeof
|
|
6236
|
+
state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
|
|
5821
6237
|
}
|
|
5822
6238
|
}
|
|
5823
6239
|
if (O === global) {
|
|
@@ -5833,7 +6249,7 @@ var TEMPLATE = String(String).split('String');
|
|
|
5833
6249
|
else createNonEnumerableProperty(O, key, value);
|
|
5834
6250
|
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
5835
6251
|
})(Function.prototype, 'toString', function toString() {
|
|
5836
|
-
return
|
|
6252
|
+
return isCallable(this) && getInternalState(this).source || inspectSource(this);
|
|
5837
6253
|
});
|
|
5838
6254
|
|
|
5839
6255
|
|
|
@@ -5843,7 +6259,11 @@ var TEMPLATE = String(String).split('String');
|
|
|
5843
6259
|
/*!************************************************************************!*\
|
|
5844
6260
|
!*** ../../node_modules/core-js/internals/require-object-coercible.js ***!
|
|
5845
6261
|
\************************************************************************/
|
|
5846
|
-
/***/ ((module) => {
|
|
6262
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6263
|
+
|
|
6264
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6265
|
+
|
|
6266
|
+
var TypeError = global.TypeError;
|
|
5847
6267
|
|
|
5848
6268
|
// `RequireObjectCoercible` abstract operation
|
|
5849
6269
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
@@ -5863,10 +6283,12 @@ module.exports = function (it) {
|
|
|
5863
6283
|
|
|
5864
6284
|
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
5865
6285
|
|
|
6286
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
6287
|
+
var defineProperty = Object.defineProperty;
|
|
6288
|
+
|
|
5866
6289
|
module.exports = function (key, value) {
|
|
5867
6290
|
try {
|
|
5868
|
-
|
|
5869
|
-
Object.defineProperty(global, key, { value: value, configurable: true, writable: true });
|
|
6291
|
+
defineProperty(global, key, { value: value, configurable: true, writable: true });
|
|
5870
6292
|
} catch (error) {
|
|
5871
6293
|
global[key] = value;
|
|
5872
6294
|
} return value;
|
|
@@ -5912,13 +6334,13 @@ module.exports = function (CONSTRUCTOR_NAME) {
|
|
|
5912
6334
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5913
6335
|
|
|
5914
6336
|
var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "../../node_modules/core-js/internals/object-define-property.js").f;
|
|
5915
|
-
var
|
|
6337
|
+
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
|
|
5916
6338
|
var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
|
|
5917
6339
|
|
|
5918
6340
|
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
5919
6341
|
|
|
5920
6342
|
module.exports = function (it, TAG, STATIC) {
|
|
5921
|
-
if (it && !
|
|
6343
|
+
if (it && !hasOwn(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
|
|
5922
6344
|
defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });
|
|
5923
6345
|
}
|
|
5924
6346
|
};
|
|
@@ -5973,7 +6395,7 @@ var store = __webpack_require__(/*! ../internals/shared-store */ "../../node_mod
|
|
|
5973
6395
|
(module.exports = function (key, value) {
|
|
5974
6396
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
5975
6397
|
})('versions', []).push({
|
|
5976
|
-
version: '3.
|
|
6398
|
+
version: '3.19.1',
|
|
5977
6399
|
mode: IS_PURE ? 'pure' : 'global',
|
|
5978
6400
|
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
|
|
5979
6401
|
});
|
|
@@ -5988,7 +6410,7 @@ var store = __webpack_require__(/*! ../internals/shared-store */ "../../node_mod
|
|
|
5988
6410
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5989
6411
|
|
|
5990
6412
|
var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
|
|
5991
|
-
var
|
|
6413
|
+
var aConstructor = __webpack_require__(/*! ../internals/a-constructor */ "../../node_modules/core-js/internals/a-constructor.js");
|
|
5992
6414
|
var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
|
|
5993
6415
|
|
|
5994
6416
|
var SPECIES = wellKnownSymbol('species');
|
|
@@ -5998,7 +6420,7 @@ var SPECIES = wellKnownSymbol('species');
|
|
|
5998
6420
|
module.exports = function (O, defaultConstructor) {
|
|
5999
6421
|
var C = anObject(O).constructor;
|
|
6000
6422
|
var S;
|
|
6001
|
-
return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor :
|
|
6423
|
+
return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aConstructor(S);
|
|
6002
6424
|
};
|
|
6003
6425
|
|
|
6004
6426
|
|
|
@@ -6011,9 +6433,13 @@ module.exports = function (O, defaultConstructor) {
|
|
|
6011
6433
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6012
6434
|
|
|
6013
6435
|
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6014
|
-
var
|
|
6436
|
+
var apply = __webpack_require__(/*! ../internals/function-apply */ "../../node_modules/core-js/internals/function-apply.js");
|
|
6015
6437
|
var bind = __webpack_require__(/*! ../internals/function-bind-context */ "../../node_modules/core-js/internals/function-bind-context.js");
|
|
6438
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
6439
|
+
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
|
|
6440
|
+
var fails = __webpack_require__(/*! ../internals/fails */ "../../node_modules/core-js/internals/fails.js");
|
|
6016
6441
|
var html = __webpack_require__(/*! ../internals/html */ "../../node_modules/core-js/internals/html.js");
|
|
6442
|
+
var arraySlice = __webpack_require__(/*! ../internals/array-slice */ "../../node_modules/core-js/internals/array-slice.js");
|
|
6017
6443
|
var createElement = __webpack_require__(/*! ../internals/document-create-element */ "../../node_modules/core-js/internals/document-create-element.js");
|
|
6018
6444
|
var IS_IOS = __webpack_require__(/*! ../internals/engine-is-ios */ "../../node_modules/core-js/internals/engine-is-ios.js");
|
|
6019
6445
|
var IS_NODE = __webpack_require__(/*! ../internals/engine-is-node */ "../../node_modules/core-js/internals/engine-is-node.js");
|
|
@@ -6021,8 +6447,10 @@ var IS_NODE = __webpack_require__(/*! ../internals/engine-is-node */ "../../node
|
|
|
6021
6447
|
var set = global.setImmediate;
|
|
6022
6448
|
var clear = global.clearImmediate;
|
|
6023
6449
|
var process = global.process;
|
|
6024
|
-
var MessageChannel = global.MessageChannel;
|
|
6025
6450
|
var Dispatch = global.Dispatch;
|
|
6451
|
+
var Function = global.Function;
|
|
6452
|
+
var MessageChannel = global.MessageChannel;
|
|
6453
|
+
var String = global.String;
|
|
6026
6454
|
var counter = 0;
|
|
6027
6455
|
var queue = {};
|
|
6028
6456
|
var ONREADYSTATECHANGE = 'onreadystatechange';
|
|
@@ -6034,8 +6462,7 @@ try {
|
|
|
6034
6462
|
} catch (error) { /* empty */ }
|
|
6035
6463
|
|
|
6036
6464
|
var run = function (id) {
|
|
6037
|
-
|
|
6038
|
-
if (queue.hasOwnProperty(id)) {
|
|
6465
|
+
if (hasOwn(queue, id)) {
|
|
6039
6466
|
var fn = queue[id];
|
|
6040
6467
|
delete queue[id];
|
|
6041
6468
|
fn();
|
|
@@ -6060,13 +6487,9 @@ var post = function (id) {
|
|
|
6060
6487
|
// Node.js 0.9+ & IE10+ has setImmediate, otherwise:
|
|
6061
6488
|
if (!set || !clear) {
|
|
6062
6489
|
set = function setImmediate(fn) {
|
|
6063
|
-
var args =
|
|
6064
|
-
var argumentsLength = arguments.length;
|
|
6065
|
-
var i = 1;
|
|
6066
|
-
while (argumentsLength > i) args.push(arguments[i++]);
|
|
6490
|
+
var args = arraySlice(arguments, 1);
|
|
6067
6491
|
queue[++counter] = function () {
|
|
6068
|
-
|
|
6069
|
-
(typeof fn == 'function' ? fn : Function(fn)).apply(undefined, args);
|
|
6492
|
+
apply(isCallable(fn) ? fn : Function(fn), undefined, args);
|
|
6070
6493
|
};
|
|
6071
6494
|
defer(counter);
|
|
6072
6495
|
return counter;
|
|
@@ -6090,12 +6513,12 @@ if (!set || !clear) {
|
|
|
6090
6513
|
channel = new MessageChannel();
|
|
6091
6514
|
port = channel.port2;
|
|
6092
6515
|
channel.port1.onmessage = listener;
|
|
6093
|
-
defer = bind(port.postMessage, port
|
|
6516
|
+
defer = bind(port.postMessage, port);
|
|
6094
6517
|
// Browsers with postMessage, skip WebWorkers
|
|
6095
6518
|
// IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
|
|
6096
6519
|
} else if (
|
|
6097
6520
|
global.addEventListener &&
|
|
6098
|
-
|
|
6521
|
+
isCallable(global.postMessage) &&
|
|
6099
6522
|
!global.importScripts &&
|
|
6100
6523
|
location && location.protocol !== 'file:' &&
|
|
6101
6524
|
!fails(post)
|
|
@@ -6132,7 +6555,7 @@ module.exports = {
|
|
|
6132
6555
|
\*****************************************************************/
|
|
6133
6556
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6134
6557
|
|
|
6135
|
-
var
|
|
6558
|
+
var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../../node_modules/core-js/internals/to-integer-or-infinity.js");
|
|
6136
6559
|
|
|
6137
6560
|
var max = Math.max;
|
|
6138
6561
|
var min = Math.min;
|
|
@@ -6141,7 +6564,7 @@ var min = Math.min;
|
|
|
6141
6564
|
// Let integer be ? ToInteger(index).
|
|
6142
6565
|
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
|
|
6143
6566
|
module.exports = function (index, length) {
|
|
6144
|
-
var integer =
|
|
6567
|
+
var integer = toIntegerOrInfinity(index);
|
|
6145
6568
|
return integer < 0 ? max(integer + length, 0) : min(integer, length);
|
|
6146
6569
|
};
|
|
6147
6570
|
|
|
@@ -6165,19 +6588,21 @@ module.exports = function (it) {
|
|
|
6165
6588
|
|
|
6166
6589
|
/***/ }),
|
|
6167
6590
|
|
|
6168
|
-
/***/ "../../node_modules/core-js/internals/to-integer.js":
|
|
6169
|
-
|
|
6170
|
-
!*** ../../node_modules/core-js/internals/to-integer.js ***!
|
|
6171
|
-
|
|
6591
|
+
/***/ "../../node_modules/core-js/internals/to-integer-or-infinity.js":
|
|
6592
|
+
/*!**********************************************************************!*\
|
|
6593
|
+
!*** ../../node_modules/core-js/internals/to-integer-or-infinity.js ***!
|
|
6594
|
+
\**********************************************************************/
|
|
6172
6595
|
/***/ ((module) => {
|
|
6173
6596
|
|
|
6174
6597
|
var ceil = Math.ceil;
|
|
6175
6598
|
var floor = Math.floor;
|
|
6176
6599
|
|
|
6177
|
-
// `
|
|
6178
|
-
// https://tc39.es/ecma262/#sec-
|
|
6600
|
+
// `ToIntegerOrInfinity` abstract operation
|
|
6601
|
+
// https://tc39.es/ecma262/#sec-tointegerorinfinity
|
|
6179
6602
|
module.exports = function (argument) {
|
|
6180
|
-
|
|
6603
|
+
var number = +argument;
|
|
6604
|
+
// eslint-disable-next-line no-self-compare -- safe
|
|
6605
|
+
return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);
|
|
6181
6606
|
};
|
|
6182
6607
|
|
|
6183
6608
|
|
|
@@ -6189,14 +6614,14 @@ module.exports = function (argument) {
|
|
|
6189
6614
|
\*********************************************************/
|
|
6190
6615
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6191
6616
|
|
|
6192
|
-
var
|
|
6617
|
+
var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../../node_modules/core-js/internals/to-integer-or-infinity.js");
|
|
6193
6618
|
|
|
6194
6619
|
var min = Math.min;
|
|
6195
6620
|
|
|
6196
6621
|
// `ToLength` abstract operation
|
|
6197
6622
|
// https://tc39.es/ecma262/#sec-tolength
|
|
6198
6623
|
module.exports = function (argument) {
|
|
6199
|
-
return argument > 0 ? min(
|
|
6624
|
+
return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
|
6200
6625
|
};
|
|
6201
6626
|
|
|
6202
6627
|
|
|
@@ -6208,8 +6633,11 @@ module.exports = function (argument) {
|
|
|
6208
6633
|
\*********************************************************/
|
|
6209
6634
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6210
6635
|
|
|
6636
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6211
6637
|
var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../../node_modules/core-js/internals/require-object-coercible.js");
|
|
6212
6638
|
|
|
6639
|
+
var Object = global.Object;
|
|
6640
|
+
|
|
6213
6641
|
// `ToObject` abstract operation
|
|
6214
6642
|
// https://tc39.es/ecma262/#sec-toobject
|
|
6215
6643
|
module.exports = function (argument) {
|
|
@@ -6225,22 +6653,26 @@ module.exports = function (argument) {
|
|
|
6225
6653
|
\************************************************************/
|
|
6226
6654
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6227
6655
|
|
|
6656
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6657
|
+
var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
|
|
6228
6658
|
var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
|
|
6229
6659
|
var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../../node_modules/core-js/internals/is-symbol.js");
|
|
6660
|
+
var getMethod = __webpack_require__(/*! ../internals/get-method */ "../../node_modules/core-js/internals/get-method.js");
|
|
6230
6661
|
var ordinaryToPrimitive = __webpack_require__(/*! ../internals/ordinary-to-primitive */ "../../node_modules/core-js/internals/ordinary-to-primitive.js");
|
|
6231
6662
|
var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
|
|
6232
6663
|
|
|
6664
|
+
var TypeError = global.TypeError;
|
|
6233
6665
|
var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
|
|
6234
6666
|
|
|
6235
6667
|
// `ToPrimitive` abstract operation
|
|
6236
6668
|
// https://tc39.es/ecma262/#sec-toprimitive
|
|
6237
6669
|
module.exports = function (input, pref) {
|
|
6238
6670
|
if (!isObject(input) || isSymbol(input)) return input;
|
|
6239
|
-
var exoticToPrim = input
|
|
6671
|
+
var exoticToPrim = getMethod(input, TO_PRIMITIVE);
|
|
6240
6672
|
var result;
|
|
6241
|
-
if (exoticToPrim
|
|
6673
|
+
if (exoticToPrim) {
|
|
6242
6674
|
if (pref === undefined) pref = 'default';
|
|
6243
|
-
result =
|
|
6675
|
+
result = call(exoticToPrim, input, pref);
|
|
6244
6676
|
if (!isObject(result) || isSymbol(result)) return result;
|
|
6245
6677
|
throw TypeError("Can't convert object to primitive value");
|
|
6246
6678
|
}
|
|
@@ -6264,7 +6696,7 @@ var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../../node_mod
|
|
|
6264
6696
|
// https://tc39.es/ecma262/#sec-topropertykey
|
|
6265
6697
|
module.exports = function (argument) {
|
|
6266
6698
|
var key = toPrimitive(argument, 'string');
|
|
6267
|
-
return isSymbol(key) ? key :
|
|
6699
|
+
return isSymbol(key) ? key : key + '';
|
|
6268
6700
|
};
|
|
6269
6701
|
|
|
6270
6702
|
|
|
@@ -6286,19 +6718,62 @@ test[TO_STRING_TAG] = 'z';
|
|
|
6286
6718
|
module.exports = String(test) === '[object z]';
|
|
6287
6719
|
|
|
6288
6720
|
|
|
6721
|
+
/***/ }),
|
|
6722
|
+
|
|
6723
|
+
/***/ "../../node_modules/core-js/internals/to-string.js":
|
|
6724
|
+
/*!*********************************************************!*\
|
|
6725
|
+
!*** ../../node_modules/core-js/internals/to-string.js ***!
|
|
6726
|
+
\*********************************************************/
|
|
6727
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6728
|
+
|
|
6729
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6730
|
+
var classof = __webpack_require__(/*! ../internals/classof */ "../../node_modules/core-js/internals/classof.js");
|
|
6731
|
+
|
|
6732
|
+
var String = global.String;
|
|
6733
|
+
|
|
6734
|
+
module.exports = function (argument) {
|
|
6735
|
+
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
6736
|
+
return String(argument);
|
|
6737
|
+
};
|
|
6738
|
+
|
|
6739
|
+
|
|
6740
|
+
/***/ }),
|
|
6741
|
+
|
|
6742
|
+
/***/ "../../node_modules/core-js/internals/try-to-string.js":
|
|
6743
|
+
/*!*************************************************************!*\
|
|
6744
|
+
!*** ../../node_modules/core-js/internals/try-to-string.js ***!
|
|
6745
|
+
\*************************************************************/
|
|
6746
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6747
|
+
|
|
6748
|
+
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6749
|
+
|
|
6750
|
+
var String = global.String;
|
|
6751
|
+
|
|
6752
|
+
module.exports = function (argument) {
|
|
6753
|
+
try {
|
|
6754
|
+
return String(argument);
|
|
6755
|
+
} catch (error) {
|
|
6756
|
+
return 'Object';
|
|
6757
|
+
}
|
|
6758
|
+
};
|
|
6759
|
+
|
|
6760
|
+
|
|
6289
6761
|
/***/ }),
|
|
6290
6762
|
|
|
6291
6763
|
/***/ "../../node_modules/core-js/internals/uid.js":
|
|
6292
6764
|
/*!***************************************************!*\
|
|
6293
6765
|
!*** ../../node_modules/core-js/internals/uid.js ***!
|
|
6294
6766
|
\***************************************************/
|
|
6295
|
-
/***/ ((module) => {
|
|
6767
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6768
|
+
|
|
6769
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
6296
6770
|
|
|
6297
6771
|
var id = 0;
|
|
6298
6772
|
var postfix = Math.random();
|
|
6773
|
+
var toString = uncurryThis(1.0.toString);
|
|
6299
6774
|
|
|
6300
6775
|
module.exports = function (key) {
|
|
6301
|
-
return 'Symbol(' +
|
|
6776
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
|
|
6302
6777
|
};
|
|
6303
6778
|
|
|
6304
6779
|
|
|
@@ -6328,21 +6803,25 @@ module.exports = NATIVE_SYMBOL
|
|
|
6328
6803
|
|
|
6329
6804
|
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6330
6805
|
var shared = __webpack_require__(/*! ../internals/shared */ "../../node_modules/core-js/internals/shared.js");
|
|
6331
|
-
var
|
|
6806
|
+
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
|
|
6332
6807
|
var uid = __webpack_require__(/*! ../internals/uid */ "../../node_modules/core-js/internals/uid.js");
|
|
6333
6808
|
var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "../../node_modules/core-js/internals/native-symbol.js");
|
|
6334
6809
|
var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../../node_modules/core-js/internals/use-symbol-as-uid.js");
|
|
6335
6810
|
|
|
6336
6811
|
var WellKnownSymbolsStore = shared('wks');
|
|
6337
6812
|
var Symbol = global.Symbol;
|
|
6813
|
+
var symbolFor = Symbol && Symbol['for'];
|
|
6338
6814
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;
|
|
6339
6815
|
|
|
6340
6816
|
module.exports = function (name) {
|
|
6341
|
-
if (!
|
|
6342
|
-
|
|
6817
|
+
if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
|
|
6818
|
+
var description = 'Symbol.' + name;
|
|
6819
|
+
if (NATIVE_SYMBOL && hasOwn(Symbol, name)) {
|
|
6343
6820
|
WellKnownSymbolsStore[name] = Symbol[name];
|
|
6821
|
+
} else if (USE_SYMBOL_AS_UID && symbolFor) {
|
|
6822
|
+
WellKnownSymbolsStore[name] = symbolFor(description);
|
|
6344
6823
|
} else {
|
|
6345
|
-
WellKnownSymbolsStore[name] = createWellKnownSymbol(
|
|
6824
|
+
WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
|
|
6346
6825
|
}
|
|
6347
6826
|
} return WellKnownSymbolsStore[name];
|
|
6348
6827
|
};
|
|
@@ -6362,14 +6841,16 @@ var $ = __webpack_require__(/*! ../internals/export */ "../../node_modules/core-
|
|
|
6362
6841
|
var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../../node_modules/core-js/internals/is-pure.js");
|
|
6363
6842
|
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6364
6843
|
var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../../node_modules/core-js/internals/get-built-in.js");
|
|
6844
|
+
var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
|
|
6365
6845
|
var NativePromise = __webpack_require__(/*! ../internals/native-promise-constructor */ "../../node_modules/core-js/internals/native-promise-constructor.js");
|
|
6366
6846
|
var redefine = __webpack_require__(/*! ../internals/redefine */ "../../node_modules/core-js/internals/redefine.js");
|
|
6367
6847
|
var redefineAll = __webpack_require__(/*! ../internals/redefine-all */ "../../node_modules/core-js/internals/redefine-all.js");
|
|
6368
6848
|
var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "../../node_modules/core-js/internals/object-set-prototype-of.js");
|
|
6369
6849
|
var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "../../node_modules/core-js/internals/set-to-string-tag.js");
|
|
6370
6850
|
var setSpecies = __webpack_require__(/*! ../internals/set-species */ "../../node_modules/core-js/internals/set-species.js");
|
|
6851
|
+
var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../../node_modules/core-js/internals/a-callable.js");
|
|
6852
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
6371
6853
|
var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
|
|
6372
|
-
var aFunction = __webpack_require__(/*! ../internals/a-function */ "../../node_modules/core-js/internals/a-function.js");
|
|
6373
6854
|
var anInstance = __webpack_require__(/*! ../internals/an-instance */ "../../node_modules/core-js/internals/an-instance.js");
|
|
6374
6855
|
var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../../node_modules/core-js/internals/inspect-source.js");
|
|
6375
6856
|
var iterate = __webpack_require__(/*! ../internals/iterate */ "../../node_modules/core-js/internals/iterate.js");
|
|
@@ -6390,19 +6871,21 @@ var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "../.
|
|
|
6390
6871
|
|
|
6391
6872
|
var SPECIES = wellKnownSymbol('species');
|
|
6392
6873
|
var PROMISE = 'Promise';
|
|
6874
|
+
|
|
6393
6875
|
var getInternalState = InternalStateModule.get;
|
|
6394
6876
|
var setInternalState = InternalStateModule.set;
|
|
6395
6877
|
var getInternalPromiseState = InternalStateModule.getterFor(PROMISE);
|
|
6396
6878
|
var NativePromisePrototype = NativePromise && NativePromise.prototype;
|
|
6397
6879
|
var PromiseConstructor = NativePromise;
|
|
6398
|
-
var
|
|
6880
|
+
var PromisePrototype = NativePromisePrototype;
|
|
6399
6881
|
var TypeError = global.TypeError;
|
|
6400
6882
|
var document = global.document;
|
|
6401
6883
|
var process = global.process;
|
|
6402
6884
|
var newPromiseCapability = newPromiseCapabilityModule.f;
|
|
6403
6885
|
var newGenericPromiseCapability = newPromiseCapability;
|
|
6886
|
+
|
|
6404
6887
|
var DISPATCH_EVENT = !!(document && document.createEvent && global.dispatchEvent);
|
|
6405
|
-
var NATIVE_REJECTION_EVENT =
|
|
6888
|
+
var NATIVE_REJECTION_EVENT = isCallable(global.PromiseRejectionEvent);
|
|
6406
6889
|
var UNHANDLED_REJECTION = 'unhandledrejection';
|
|
6407
6890
|
var REJECTION_HANDLED = 'rejectionhandled';
|
|
6408
6891
|
var PENDING = 0;
|
|
@@ -6411,6 +6894,7 @@ var REJECTED = 2;
|
|
|
6411
6894
|
var HANDLED = 1;
|
|
6412
6895
|
var UNHANDLED = 2;
|
|
6413
6896
|
var SUBCLASSING = false;
|
|
6897
|
+
|
|
6414
6898
|
var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
|
|
6415
6899
|
|
|
6416
6900
|
var FORCED = isForced(PROMISE, function () {
|
|
@@ -6421,7 +6905,7 @@ var FORCED = isForced(PROMISE, function () {
|
|
|
6421
6905
|
// We can't detect it synchronously, so just check versions
|
|
6422
6906
|
if (!GLOBAL_CORE_JS_PROMISE && V8_VERSION === 66) return true;
|
|
6423
6907
|
// We need Promise#finally in the pure version for preventing prototype pollution
|
|
6424
|
-
if (IS_PURE && !
|
|
6908
|
+
if (IS_PURE && !PromisePrototype['finally']) return true;
|
|
6425
6909
|
// We can't use @@species feature detection in V8 since it causes
|
|
6426
6910
|
// deoptimization and performance degradation
|
|
6427
6911
|
// https://github.com/zloirock/core-js/issues/679
|
|
@@ -6446,7 +6930,7 @@ var INCORRECT_ITERATION = FORCED || !checkCorrectnessOfIteration(function (itera
|
|
|
6446
6930
|
// helpers
|
|
6447
6931
|
var isThenable = function (it) {
|
|
6448
6932
|
var then;
|
|
6449
|
-
return isObject(it) &&
|
|
6933
|
+
return isObject(it) && isCallable(then = it.then) ? then : false;
|
|
6450
6934
|
};
|
|
6451
6935
|
|
|
6452
6936
|
var notify = function (state, isReject) {
|
|
@@ -6483,7 +6967,7 @@ var notify = function (state, isReject) {
|
|
|
6483
6967
|
if (result === reaction.promise) {
|
|
6484
6968
|
reject(TypeError('Promise-chain cycle'));
|
|
6485
6969
|
} else if (then = isThenable(result)) {
|
|
6486
|
-
|
|
6970
|
+
call(then, result, resolve, reject);
|
|
6487
6971
|
} else resolve(result);
|
|
6488
6972
|
} else reject(value);
|
|
6489
6973
|
} catch (error) {
|
|
@@ -6511,7 +6995,7 @@ var dispatchEvent = function (name, promise, reason) {
|
|
|
6511
6995
|
};
|
|
6512
6996
|
|
|
6513
6997
|
var onUnhandled = function (state) {
|
|
6514
|
-
|
|
6998
|
+
call(task, global, function () {
|
|
6515
6999
|
var promise = state.facade;
|
|
6516
7000
|
var value = state.value;
|
|
6517
7001
|
var IS_UNHANDLED = isUnhandled(state);
|
|
@@ -6534,7 +7018,7 @@ var isUnhandled = function (state) {
|
|
|
6534
7018
|
};
|
|
6535
7019
|
|
|
6536
7020
|
var onHandleUnhandled = function (state) {
|
|
6537
|
-
|
|
7021
|
+
call(task, global, function () {
|
|
6538
7022
|
var promise = state.facade;
|
|
6539
7023
|
if (IS_NODE) {
|
|
6540
7024
|
process.emit('rejectionHandled', promise);
|
|
@@ -6568,7 +7052,7 @@ var internalResolve = function (state, value, unwrap) {
|
|
|
6568
7052
|
microtask(function () {
|
|
6569
7053
|
var wrapper = { done: false };
|
|
6570
7054
|
try {
|
|
6571
|
-
|
|
7055
|
+
call(then, value,
|
|
6572
7056
|
bind(internalResolve, wrapper, state),
|
|
6573
7057
|
bind(internalReject, wrapper, state)
|
|
6574
7058
|
);
|
|
@@ -6590,9 +7074,9 @@ var internalResolve = function (state, value, unwrap) {
|
|
|
6590
7074
|
if (FORCED) {
|
|
6591
7075
|
// 25.4.3.1 Promise(executor)
|
|
6592
7076
|
PromiseConstructor = function Promise(executor) {
|
|
6593
|
-
anInstance(this,
|
|
6594
|
-
|
|
6595
|
-
|
|
7077
|
+
anInstance(this, PromisePrototype);
|
|
7078
|
+
aCallable(executor);
|
|
7079
|
+
call(Internal, this);
|
|
6596
7080
|
var state = getInternalState(this);
|
|
6597
7081
|
try {
|
|
6598
7082
|
executor(bind(internalResolve, state), bind(internalReject, state));
|
|
@@ -6600,7 +7084,7 @@ if (FORCED) {
|
|
|
6600
7084
|
internalReject(state, error);
|
|
6601
7085
|
}
|
|
6602
7086
|
};
|
|
6603
|
-
|
|
7087
|
+
PromisePrototype = PromiseConstructor.prototype;
|
|
6604
7088
|
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
6605
7089
|
Internal = function Promise(executor) {
|
|
6606
7090
|
setInternalState(this, {
|
|
@@ -6614,17 +7098,18 @@ if (FORCED) {
|
|
|
6614
7098
|
value: undefined
|
|
6615
7099
|
});
|
|
6616
7100
|
};
|
|
6617
|
-
Internal.prototype = redefineAll(
|
|
7101
|
+
Internal.prototype = redefineAll(PromisePrototype, {
|
|
6618
7102
|
// `Promise.prototype.then` method
|
|
6619
7103
|
// https://tc39.es/ecma262/#sec-promise.prototype.then
|
|
6620
7104
|
then: function then(onFulfilled, onRejected) {
|
|
6621
7105
|
var state = getInternalPromiseState(this);
|
|
7106
|
+
var reactions = state.reactions;
|
|
6622
7107
|
var reaction = newPromiseCapability(speciesConstructor(this, PromiseConstructor));
|
|
6623
|
-
reaction.ok =
|
|
6624
|
-
reaction.fail =
|
|
7108
|
+
reaction.ok = isCallable(onFulfilled) ? onFulfilled : true;
|
|
7109
|
+
reaction.fail = isCallable(onRejected) && onRejected;
|
|
6625
7110
|
reaction.domain = IS_NODE ? process.domain : undefined;
|
|
6626
7111
|
state.parent = true;
|
|
6627
|
-
|
|
7112
|
+
reactions[reactions.length] = reaction;
|
|
6628
7113
|
if (state.state != PENDING) notify(state, false);
|
|
6629
7114
|
return reaction.promise;
|
|
6630
7115
|
},
|
|
@@ -6647,7 +7132,7 @@ if (FORCED) {
|
|
|
6647
7132
|
: newGenericPromiseCapability(C);
|
|
6648
7133
|
};
|
|
6649
7134
|
|
|
6650
|
-
if (!IS_PURE &&
|
|
7135
|
+
if (!IS_PURE && isCallable(NativePromise) && NativePromisePrototype !== Object.prototype) {
|
|
6651
7136
|
nativeThen = NativePromisePrototype.then;
|
|
6652
7137
|
|
|
6653
7138
|
if (!SUBCLASSING) {
|
|
@@ -6655,13 +7140,13 @@ if (FORCED) {
|
|
|
6655
7140
|
redefine(NativePromisePrototype, 'then', function then(onFulfilled, onRejected) {
|
|
6656
7141
|
var that = this;
|
|
6657
7142
|
return new PromiseConstructor(function (resolve, reject) {
|
|
6658
|
-
|
|
7143
|
+
call(nativeThen, that, resolve, reject);
|
|
6659
7144
|
}).then(onFulfilled, onRejected);
|
|
6660
7145
|
// https://github.com/zloirock/core-js/issues/640
|
|
6661
7146
|
}, { unsafe: true });
|
|
6662
7147
|
|
|
6663
7148
|
// makes sure that native promise-based APIs `Promise#catch` properly works with patched `Promise#then`
|
|
6664
|
-
redefine(NativePromisePrototype, 'catch',
|
|
7149
|
+
redefine(NativePromisePrototype, 'catch', PromisePrototype['catch'], { unsafe: true });
|
|
6665
7150
|
}
|
|
6666
7151
|
|
|
6667
7152
|
// make `.constructor === Promise` work for native promise-based APIs
|
|
@@ -6671,7 +7156,7 @@ if (FORCED) {
|
|
|
6671
7156
|
|
|
6672
7157
|
// make `instanceof Promise` work for native promise-based APIs
|
|
6673
7158
|
if (setPrototypeOf) {
|
|
6674
|
-
setPrototypeOf(NativePromisePrototype,
|
|
7159
|
+
setPrototypeOf(NativePromisePrototype, PromisePrototype);
|
|
6675
7160
|
}
|
|
6676
7161
|
}
|
|
6677
7162
|
}
|
|
@@ -6691,7 +7176,7 @@ $({ target: PROMISE, stat: true, forced: FORCED }, {
|
|
|
6691
7176
|
// https://tc39.es/ecma262/#sec-promise.reject
|
|
6692
7177
|
reject: function reject(r) {
|
|
6693
7178
|
var capability = newPromiseCapability(this);
|
|
6694
|
-
capability.reject
|
|
7179
|
+
call(capability.reject, undefined, r);
|
|
6695
7180
|
return capability.promise;
|
|
6696
7181
|
}
|
|
6697
7182
|
});
|
|
@@ -6713,16 +7198,15 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
|
|
|
6713
7198
|
var resolve = capability.resolve;
|
|
6714
7199
|
var reject = capability.reject;
|
|
6715
7200
|
var result = perform(function () {
|
|
6716
|
-
var $promiseResolve =
|
|
7201
|
+
var $promiseResolve = aCallable(C.resolve);
|
|
6717
7202
|
var values = [];
|
|
6718
7203
|
var counter = 0;
|
|
6719
7204
|
var remaining = 1;
|
|
6720
7205
|
iterate(iterable, function (promise) {
|
|
6721
7206
|
var index = counter++;
|
|
6722
7207
|
var alreadyCalled = false;
|
|
6723
|
-
values.push(undefined);
|
|
6724
7208
|
remaining++;
|
|
6725
|
-
$promiseResolve
|
|
7209
|
+
call($promiseResolve, C, promise).then(function (value) {
|
|
6726
7210
|
if (alreadyCalled) return;
|
|
6727
7211
|
alreadyCalled = true;
|
|
6728
7212
|
values[index] = value;
|
|
@@ -6741,9 +7225,9 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
|
|
|
6741
7225
|
var capability = newPromiseCapability(C);
|
|
6742
7226
|
var reject = capability.reject;
|
|
6743
7227
|
var result = perform(function () {
|
|
6744
|
-
var $promiseResolve =
|
|
7228
|
+
var $promiseResolve = aCallable(C.resolve);
|
|
6745
7229
|
iterate(iterable, function (promise) {
|
|
6746
|
-
$promiseResolve
|
|
7230
|
+
call($promiseResolve, C, promise).then(capability.resolve, reject);
|
|
6747
7231
|
});
|
|
6748
7232
|
});
|
|
6749
7233
|
if (result.error) reject(result.value);
|
|
@@ -6767,42 +7251,51 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
|
|
|
6767
7251
|
var $ = __webpack_require__(/*! ../internals/export */ "../../node_modules/core-js/internals/export.js");
|
|
6768
7252
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../../node_modules/core-js/internals/descriptors.js");
|
|
6769
7253
|
var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
|
|
6770
|
-
var
|
|
6771
|
-
var
|
|
7254
|
+
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
|
|
7255
|
+
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
|
|
7256
|
+
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
|
|
7257
|
+
var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../../node_modules/core-js/internals/object-is-prototype-of.js");
|
|
7258
|
+
var toString = __webpack_require__(/*! ../internals/to-string */ "../../node_modules/core-js/internals/to-string.js");
|
|
6772
7259
|
var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "../../node_modules/core-js/internals/object-define-property.js").f;
|
|
6773
7260
|
var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "../../node_modules/core-js/internals/copy-constructor-properties.js");
|
|
6774
7261
|
|
|
6775
7262
|
var NativeSymbol = global.Symbol;
|
|
7263
|
+
var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
|
|
6776
7264
|
|
|
6777
|
-
if (DESCRIPTORS &&
|
|
7265
|
+
if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototype) ||
|
|
6778
7266
|
// Safari 12 bug
|
|
6779
7267
|
NativeSymbol().description !== undefined
|
|
6780
7268
|
)) {
|
|
6781
7269
|
var EmptyStringDescriptionStore = {};
|
|
6782
7270
|
// wrap Symbol constructor for correct work with undefined description
|
|
6783
7271
|
var SymbolWrapper = function Symbol() {
|
|
6784
|
-
var description = arguments.length < 1 || arguments[0] === undefined ? undefined :
|
|
6785
|
-
var result = this
|
|
7272
|
+
var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString(arguments[0]);
|
|
7273
|
+
var result = isPrototypeOf(SymbolPrototype, this)
|
|
6786
7274
|
? new NativeSymbol(description)
|
|
6787
7275
|
// in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
|
|
6788
7276
|
: description === undefined ? NativeSymbol() : NativeSymbol(description);
|
|
6789
7277
|
if (description === '') EmptyStringDescriptionStore[result] = true;
|
|
6790
7278
|
return result;
|
|
6791
7279
|
};
|
|
7280
|
+
|
|
6792
7281
|
copyConstructorProperties(SymbolWrapper, NativeSymbol);
|
|
6793
|
-
|
|
6794
|
-
|
|
7282
|
+
SymbolWrapper.prototype = SymbolPrototype;
|
|
7283
|
+
SymbolPrototype.constructor = SymbolWrapper;
|
|
6795
7284
|
|
|
6796
|
-
var
|
|
6797
|
-
var
|
|
7285
|
+
var NATIVE_SYMBOL = String(NativeSymbol('test')) == 'Symbol(test)';
|
|
7286
|
+
var symbolToString = uncurryThis(SymbolPrototype.toString);
|
|
7287
|
+
var symbolValueOf = uncurryThis(SymbolPrototype.valueOf);
|
|
6798
7288
|
var regexp = /^Symbol\((.*)\)[^)]+$/;
|
|
6799
|
-
|
|
7289
|
+
var replace = uncurryThis(''.replace);
|
|
7290
|
+
var stringSlice = uncurryThis(''.slice);
|
|
7291
|
+
|
|
7292
|
+
defineProperty(SymbolPrototype, 'description', {
|
|
6800
7293
|
configurable: true,
|
|
6801
7294
|
get: function description() {
|
|
6802
|
-
var symbol =
|
|
6803
|
-
var string = symbolToString
|
|
6804
|
-
if (
|
|
6805
|
-
var desc =
|
|
7295
|
+
var symbol = symbolValueOf(this);
|
|
7296
|
+
var string = symbolToString(symbol);
|
|
7297
|
+
if (hasOwn(EmptyStringDescriptionStore, symbol)) return '';
|
|
7298
|
+
var desc = NATIVE_SYMBOL ? stringSlice(string, 7, -1) : replace(string, regexp, '$1');
|
|
6806
7299
|
return desc === '' ? undefined : desc;
|
|
6807
7300
|
}
|
|
6808
7301
|
});
|
|
@@ -6848,28 +7341,6 @@ module.exports = require("axios");
|
|
|
6848
7341
|
|
|
6849
7342
|
/***/ }),
|
|
6850
7343
|
|
|
6851
|
-
/***/ "child_process":
|
|
6852
|
-
/*!********************************!*\
|
|
6853
|
-
!*** external "child_process" ***!
|
|
6854
|
-
\********************************/
|
|
6855
|
-
/***/ ((module) => {
|
|
6856
|
-
|
|
6857
|
-
"use strict";
|
|
6858
|
-
module.exports = require("child_process");
|
|
6859
|
-
|
|
6860
|
-
/***/ }),
|
|
6861
|
-
|
|
6862
|
-
/***/ "events":
|
|
6863
|
-
/*!*************************!*\
|
|
6864
|
-
!*** external "events" ***!
|
|
6865
|
-
\*************************/
|
|
6866
|
-
/***/ ((module) => {
|
|
6867
|
-
|
|
6868
|
-
"use strict";
|
|
6869
|
-
module.exports = require("events");
|
|
6870
|
-
|
|
6871
|
-
/***/ }),
|
|
6872
|
-
|
|
6873
7344
|
/***/ "execa":
|
|
6874
7345
|
/*!************************!*\
|
|
6875
7346
|
!*** external "execa" ***!
|
|
@@ -6881,17 +7352,6 @@ module.exports = require("execa");
|
|
|
6881
7352
|
|
|
6882
7353
|
/***/ }),
|
|
6883
7354
|
|
|
6884
|
-
/***/ "fs":
|
|
6885
|
-
/*!*********************!*\
|
|
6886
|
-
!*** external "fs" ***!
|
|
6887
|
-
\*********************/
|
|
6888
|
-
/***/ ((module) => {
|
|
6889
|
-
|
|
6890
|
-
"use strict";
|
|
6891
|
-
module.exports = require("fs");
|
|
6892
|
-
|
|
6893
|
-
/***/ }),
|
|
6894
|
-
|
|
6895
7355
|
/***/ "fs-extra":
|
|
6896
7356
|
/*!***************************!*\
|
|
6897
7357
|
!*** external "fs-extra" ***!
|
|
@@ -6914,28 +7374,6 @@ module.exports = require("glob");
|
|
|
6914
7374
|
|
|
6915
7375
|
/***/ }),
|
|
6916
7376
|
|
|
6917
|
-
/***/ "os":
|
|
6918
|
-
/*!*********************!*\
|
|
6919
|
-
!*** external "os" ***!
|
|
6920
|
-
\*********************/
|
|
6921
|
-
/***/ ((module) => {
|
|
6922
|
-
|
|
6923
|
-
"use strict";
|
|
6924
|
-
module.exports = require("os");
|
|
6925
|
-
|
|
6926
|
-
/***/ }),
|
|
6927
|
-
|
|
6928
|
-
/***/ "path":
|
|
6929
|
-
/*!***********************!*\
|
|
6930
|
-
!*** external "path" ***!
|
|
6931
|
-
\***********************/
|
|
6932
|
-
/***/ ((module) => {
|
|
6933
|
-
|
|
6934
|
-
"use strict";
|
|
6935
|
-
module.exports = require("path");
|
|
6936
|
-
|
|
6937
|
-
/***/ }),
|
|
6938
|
-
|
|
6939
7377
|
/***/ "rimraf":
|
|
6940
7378
|
/*!*************************!*\
|
|
6941
7379
|
!*** external "rimraf" ***!
|
|
@@ -7002,17 +7440,6 @@ module.exports = require("update-notifier");
|
|
|
7002
7440
|
|
|
7003
7441
|
/***/ }),
|
|
7004
7442
|
|
|
7005
|
-
/***/ "util":
|
|
7006
|
-
/*!***********************!*\
|
|
7007
|
-
!*** external "util" ***!
|
|
7008
|
-
\***********************/
|
|
7009
|
-
/***/ ((module) => {
|
|
7010
|
-
|
|
7011
|
-
"use strict";
|
|
7012
|
-
module.exports = require("util");
|
|
7013
|
-
|
|
7014
|
-
/***/ }),
|
|
7015
|
-
|
|
7016
7443
|
/***/ "v8-compile-cache":
|
|
7017
7444
|
/*!***********************************!*\
|
|
7018
7445
|
!*** external "v8-compile-cache" ***!
|
|
@@ -7046,6 +7473,72 @@ module.exports = require("yargs");
|
|
|
7046
7473
|
|
|
7047
7474
|
/***/ }),
|
|
7048
7475
|
|
|
7476
|
+
/***/ "child_process":
|
|
7477
|
+
/*!********************************!*\
|
|
7478
|
+
!*** external "child_process" ***!
|
|
7479
|
+
\********************************/
|
|
7480
|
+
/***/ ((module) => {
|
|
7481
|
+
|
|
7482
|
+
"use strict";
|
|
7483
|
+
module.exports = require("child_process");
|
|
7484
|
+
|
|
7485
|
+
/***/ }),
|
|
7486
|
+
|
|
7487
|
+
/***/ "events":
|
|
7488
|
+
/*!*************************!*\
|
|
7489
|
+
!*** external "events" ***!
|
|
7490
|
+
\*************************/
|
|
7491
|
+
/***/ ((module) => {
|
|
7492
|
+
|
|
7493
|
+
"use strict";
|
|
7494
|
+
module.exports = require("events");
|
|
7495
|
+
|
|
7496
|
+
/***/ }),
|
|
7497
|
+
|
|
7498
|
+
/***/ "fs":
|
|
7499
|
+
/*!*********************!*\
|
|
7500
|
+
!*** external "fs" ***!
|
|
7501
|
+
\*********************/
|
|
7502
|
+
/***/ ((module) => {
|
|
7503
|
+
|
|
7504
|
+
"use strict";
|
|
7505
|
+
module.exports = require("fs");
|
|
7506
|
+
|
|
7507
|
+
/***/ }),
|
|
7508
|
+
|
|
7509
|
+
/***/ "os":
|
|
7510
|
+
/*!*********************!*\
|
|
7511
|
+
!*** external "os" ***!
|
|
7512
|
+
\*********************/
|
|
7513
|
+
/***/ ((module) => {
|
|
7514
|
+
|
|
7515
|
+
"use strict";
|
|
7516
|
+
module.exports = require("os");
|
|
7517
|
+
|
|
7518
|
+
/***/ }),
|
|
7519
|
+
|
|
7520
|
+
/***/ "path":
|
|
7521
|
+
/*!***********************!*\
|
|
7522
|
+
!*** external "path" ***!
|
|
7523
|
+
\***********************/
|
|
7524
|
+
/***/ ((module) => {
|
|
7525
|
+
|
|
7526
|
+
"use strict";
|
|
7527
|
+
module.exports = require("path");
|
|
7528
|
+
|
|
7529
|
+
/***/ }),
|
|
7530
|
+
|
|
7531
|
+
/***/ "util":
|
|
7532
|
+
/*!***********************!*\
|
|
7533
|
+
!*** external "util" ***!
|
|
7534
|
+
\***********************/
|
|
7535
|
+
/***/ ((module) => {
|
|
7536
|
+
|
|
7537
|
+
"use strict";
|
|
7538
|
+
module.exports = require("util");
|
|
7539
|
+
|
|
7540
|
+
/***/ }),
|
|
7541
|
+
|
|
7049
7542
|
/***/ "./package.json":
|
|
7050
7543
|
/*!**********************!*\
|
|
7051
7544
|
!*** ./package.json ***!
|
|
@@ -7053,7 +7546,7 @@ module.exports = require("yargs");
|
|
|
7053
7546
|
/***/ ((module) => {
|
|
7054
7547
|
|
|
7055
7548
|
"use strict";
|
|
7056
|
-
module.exports = JSON.parse('{"name":"@intelligentgraphics/ig.gfx.packager","version":"2.0.
|
|
7549
|
+
module.exports = JSON.parse('{"name":"@intelligentgraphics/ig.gfx.packager","version":"2.0.9","description":"IG.GFX.Packager 2.0.9 (2.0.9.100)","main":"build/index.js","private":false,"publishConfig":{"access":"public"},"bin":{"packager":"./build/index.js"},"files":["build","locales","scripts"],"scripts":{"dist":"webpack","clean":"rimraf build *.tsbuildinfo","prepublishOnly":"yarn clean && yarn dist","_postinstall":"node scripts/postinstall.js"},"author":"Michael Beier <mb@intelligentgraphics.biz>","dependencies":{"ajv":"^8.6.2","archiver":"^5.0.0","axios":"^0.21.1","core-js":"^3.16.0","execa":"^5.1.1","fs-extra":"^10.0.0","glob":"^7.1.4","rimraf":"^3.0.2","source-map-support":"^0.5.19","terser":"^4.8.0","typedoc":"^0.21.5","typescript":"^4.3.5","update-notifier":"^5.1.0","v8-compile-cache":"^2.1.1","y18n":"^5.0.8","yargs":"^17.0.1"},"devDependencies":{"@babel/plugin-proposal-class-properties":"^7.14.5","@babel/plugin-proposal-object-rest-spread":"^7.14.7","@babel/preset-env":"^7.14.9","@intelligentgraphics/ig.tools.core":"^1.5.1","@intelligentgraphics/ig.utilities":"^1.6.6","@types/archiver":"^5.1.1","@types/fs-extra":"^9.0.12","@types/glob":"^7.1.4","@types/node":"^16.4.11","@types/rimraf":"^3.0.1","@types/update-notifier":"^5.1.0","@types/yargs":"^17.0.2","babel-loader":"^8.1.0","ts-loader":"^9.2.5","ts-node":"^10.1.0","webpack":"^5.48.0","webpack-cli":"^4.7.2"}}');
|
|
7057
7550
|
|
|
7058
7551
|
/***/ })
|
|
7059
7552
|
|
|
@@ -7188,6 +7681,7 @@ yargs.command({
|
|
|
7188
7681
|
});
|
|
7189
7682
|
yargs.command({
|
|
7190
7683
|
command: "publish [directory]",
|
|
7684
|
+
aliases: "upload [directory]",
|
|
7191
7685
|
builder: argv => applyBuildOptions(argv).options({
|
|
7192
7686
|
noUpload: {
|
|
7193
7687
|
type: "boolean",
|
|
@@ -7231,7 +7725,18 @@ yargs.command({
|
|
|
7231
7725
|
},
|
|
7232
7726
|
docs: {
|
|
7233
7727
|
type: "boolean",
|
|
7234
|
-
default: false
|
|
7728
|
+
default: false,
|
|
7729
|
+
description: (0, _localization.translate)("options.docs.description")
|
|
7730
|
+
},
|
|
7731
|
+
pushOnly: {
|
|
7732
|
+
type: "boolean",
|
|
7733
|
+
default: false,
|
|
7734
|
+
description: (0, _localization.translate)("options.pushOnly.description")
|
|
7735
|
+
},
|
|
7736
|
+
noValidate: {
|
|
7737
|
+
type: "boolean",
|
|
7738
|
+
default: false,
|
|
7739
|
+
description: (0, _localization.translate)("options.noValidate.description")
|
|
7235
7740
|
}
|
|
7236
7741
|
}),
|
|
7237
7742
|
handler: async _ref2 => {
|