@modern-js/create 2.0.0-beta.0 → 2.0.0-beta.1

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.
Files changed (2) hide show
  1. package/dist/index.js +499 -574
  2. package/package.json +8 -8
package/dist/index.js CHANGED
@@ -25,6 +25,8 @@ __export(stdin_exports, {
25
25
  module.exports = __toCommonJS(stdin_exports);
26
26
  var import_path = __toESM(require("path"));
27
27
  var import_path2 = __toESM(require("path"));
28
+ var import_os = __toESM(require("os"));
29
+ var import_path3 = __toESM(require("path"));
28
30
  var __create2 = Object.create;
29
31
  var __defProp2 = Object.defineProperty;
30
32
  var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
@@ -18882,11 +18884,11 @@ var require_lodash = __commonJSMin((exports, module2) => {
18882
18884
  return isFunction(object[key]);
18883
18885
  });
18884
18886
  }
18885
- function baseGet(object, path3) {
18886
- path3 = castPath(path3, object);
18887
- var index = 0, length = path3.length;
18887
+ function baseGet(object, path4) {
18888
+ path4 = castPath(path4, object);
18889
+ var index = 0, length = path4.length;
18888
18890
  while (object != null && index < length) {
18889
- object = object[toKey(path3[index++])];
18891
+ object = object[toKey(path4[index++])];
18890
18892
  }
18891
18893
  return index && index == length ? object : undefined2;
18892
18894
  }
@@ -18950,10 +18952,10 @@ var require_lodash = __commonJSMin((exports, module2) => {
18950
18952
  });
18951
18953
  return accumulator;
18952
18954
  }
18953
- function baseInvoke(object, path3, args) {
18954
- path3 = castPath(path3, object);
18955
- object = parent(object, path3);
18956
- var func = object == null ? object : object[toKey(last(path3))];
18955
+ function baseInvoke(object, path4, args) {
18956
+ path4 = castPath(path4, object);
18957
+ object = parent(object, path4);
18958
+ var func = object == null ? object : object[toKey(last(path4))];
18957
18959
  return func == null ? undefined2 : apply(func, object, args);
18958
18960
  }
18959
18961
  function baseIsArguments(value) {
@@ -19109,13 +19111,13 @@ var require_lodash = __commonJSMin((exports, module2) => {
19109
19111
  return object === source || baseIsMatch(object, source, matchData);
19110
19112
  };
19111
19113
  }
19112
- function baseMatchesProperty(path3, srcValue) {
19113
- if (isKey(path3) && isStrictComparable(srcValue)) {
19114
- return matchesStrictComparable(toKey(path3), srcValue);
19114
+ function baseMatchesProperty(path4, srcValue) {
19115
+ if (isKey(path4) && isStrictComparable(srcValue)) {
19116
+ return matchesStrictComparable(toKey(path4), srcValue);
19115
19117
  }
19116
19118
  return function(object) {
19117
- var objValue = get2(object, path3);
19118
- return objValue === undefined2 && objValue === srcValue ? hasIn(object, path3) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);
19119
+ var objValue = get2(object, path4);
19120
+ return objValue === undefined2 && objValue === srcValue ? hasIn(object, path4) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);
19119
19121
  };
19120
19122
  }
19121
19123
  function baseMerge(object, source, srcIndex, customizer, stack) {
@@ -19212,23 +19214,23 @@ var require_lodash = __commonJSMin((exports, module2) => {
19212
19214
  });
19213
19215
  }
19214
19216
  function basePick(object, paths) {
19215
- return basePickBy(object, paths, function(value, path3) {
19216
- return hasIn(object, path3);
19217
+ return basePickBy(object, paths, function(value, path4) {
19218
+ return hasIn(object, path4);
19217
19219
  });
19218
19220
  }
19219
19221
  function basePickBy(object, paths, predicate) {
19220
19222
  var index = -1, length = paths.length, result2 = {};
19221
19223
  while (++index < length) {
19222
- var path3 = paths[index], value = baseGet(object, path3);
19223
- if (predicate(value, path3)) {
19224
- baseSet(result2, castPath(path3, object), value);
19224
+ var path4 = paths[index], value = baseGet(object, path4);
19225
+ if (predicate(value, path4)) {
19226
+ baseSet(result2, castPath(path4, object), value);
19225
19227
  }
19226
19228
  }
19227
19229
  return result2;
19228
19230
  }
19229
- function basePropertyDeep(path3) {
19231
+ function basePropertyDeep(path4) {
19230
19232
  return function(object) {
19231
- return baseGet(object, path3);
19233
+ return baseGet(object, path4);
19232
19234
  };
19233
19235
  }
19234
19236
  function basePullAll(array, values2, iteratee2, comparator) {
@@ -19302,14 +19304,14 @@ var require_lodash = __commonJSMin((exports, module2) => {
19302
19304
  var array = values(collection);
19303
19305
  return shuffleSelf(array, baseClamp(n, 0, array.length));
19304
19306
  }
19305
- function baseSet(object, path3, value, customizer) {
19307
+ function baseSet(object, path4, value, customizer) {
19306
19308
  if (!isObject2(object)) {
19307
19309
  return object;
19308
19310
  }
19309
- path3 = castPath(path3, object);
19310
- var index = -1, length = path3.length, lastIndex = length - 1, nested = object;
19311
+ path4 = castPath(path4, object);
19312
+ var index = -1, length = path4.length, lastIndex = length - 1, nested = object;
19311
19313
  while (nested != null && ++index < length) {
19312
- var key = toKey(path3[index]), newValue = value;
19314
+ var key = toKey(path4[index]), newValue = value;
19313
19315
  if (key === "__proto__" || key === "constructor" || key === "prototype") {
19314
19316
  return object;
19315
19317
  }
@@ -19317,7 +19319,7 @@ var require_lodash = __commonJSMin((exports, module2) => {
19317
19319
  var objValue = nested[key];
19318
19320
  newValue = customizer ? customizer(objValue, key, nested) : undefined2;
19319
19321
  if (newValue === undefined2) {
19320
- newValue = isObject2(objValue) ? objValue : isIndex(path3[index + 1]) ? [] : {};
19322
+ newValue = isObject2(objValue) ? objValue : isIndex(path4[index + 1]) ? [] : {};
19321
19323
  }
19322
19324
  }
19323
19325
  assignValue(nested, key, newValue);
@@ -19483,13 +19485,13 @@ var require_lodash = __commonJSMin((exports, module2) => {
19483
19485
  }
19484
19486
  return result2;
19485
19487
  }
19486
- function baseUnset(object, path3) {
19487
- path3 = castPath(path3, object);
19488
- object = parent(object, path3);
19489
- return object == null || delete object[toKey(last(path3))];
19488
+ function baseUnset(object, path4) {
19489
+ path4 = castPath(path4, object);
19490
+ object = parent(object, path4);
19491
+ return object == null || delete object[toKey(last(path4))];
19490
19492
  }
19491
- function baseUpdate(object, path3, updater, customizer) {
19492
- return baseSet(object, path3, updater(baseGet(object, path3)), customizer);
19493
+ function baseUpdate(object, path4, updater, customizer) {
19494
+ return baseSet(object, path4, updater(baseGet(object, path4)), customizer);
19493
19495
  }
19494
19496
  function baseWhile(array, predicate, isDrop, fromRight) {
19495
19497
  var length = array.length, index = fromRight ? length : -1;
@@ -20350,11 +20352,11 @@ var require_lodash = __commonJSMin((exports, module2) => {
20350
20352
  var match = source.match(reWrapDetails);
20351
20353
  return match ? match[1].split(reSplitDetails) : [];
20352
20354
  }
20353
- function hasPath(object, path3, hasFunc) {
20354
- path3 = castPath(path3, object);
20355
- var index = -1, length = path3.length, result2 = false;
20355
+ function hasPath(object, path4, hasFunc) {
20356
+ path4 = castPath(path4, object);
20357
+ var index = -1, length = path4.length, result2 = false;
20356
20358
  while (++index < length) {
20357
- var key = toKey(path3[index]);
20359
+ var key = toKey(path4[index]);
20358
20360
  if (!(result2 = object != null && hasFunc(object, key))) {
20359
20361
  break;
20360
20362
  }
@@ -20556,8 +20558,8 @@ var require_lodash = __commonJSMin((exports, module2) => {
20556
20558
  return apply(func, this, otherArgs);
20557
20559
  };
20558
20560
  }
20559
- function parent(object, path3) {
20560
- return path3.length < 2 ? object : baseGet(object, baseSlice(path3, 0, -1));
20561
+ function parent(object, path4) {
20562
+ return path4.length < 2 ? object : baseGet(object, baseSlice(path4, 0, -1));
20561
20563
  }
20562
20564
  function reorder(array, indexes) {
20563
20565
  var arrLength = array.length, length = nativeMin(indexes.length, arrLength), oldArray = copyArray(array);
@@ -21192,10 +21194,10 @@ var require_lodash = __commonJSMin((exports, module2) => {
21192
21194
  }
21193
21195
  return isString2(collection) ? fromIndex <= length && collection.indexOf(value, fromIndex) > -1 : !!length && baseIndexOf(collection, value, fromIndex) > -1;
21194
21196
  }
21195
- var invokeMap = baseRest(function(collection, path3, args) {
21196
- var index = -1, isFunc = typeof path3 == "function", result2 = isArrayLike(collection) ? Array2(collection.length) : [];
21197
+ var invokeMap = baseRest(function(collection, path4, args) {
21198
+ var index = -1, isFunc = typeof path4 == "function", result2 = isArrayLike(collection) ? Array2(collection.length) : [];
21197
21199
  baseEach(collection, function(value) {
21198
- result2[++index] = isFunc ? apply(path3, value, args) : baseInvoke(value, path3, args);
21200
+ result2[++index] = isFunc ? apply(path4, value, args) : baseInvoke(value, path4, args);
21199
21201
  });
21200
21202
  return result2;
21201
21203
  });
@@ -21847,15 +21849,15 @@ var require_lodash = __commonJSMin((exports, module2) => {
21847
21849
  function functionsIn(object) {
21848
21850
  return object == null ? [] : baseFunctions(object, keysIn(object));
21849
21851
  }
21850
- function get2(object, path3, defaultValue) {
21851
- var result2 = object == null ? undefined2 : baseGet(object, path3);
21852
+ function get2(object, path4, defaultValue) {
21853
+ var result2 = object == null ? undefined2 : baseGet(object, path4);
21852
21854
  return result2 === undefined2 ? defaultValue : result2;
21853
21855
  }
21854
- function has(object, path3) {
21855
- return object != null && hasPath(object, path3, baseHas);
21856
+ function has(object, path4) {
21857
+ return object != null && hasPath(object, path4, baseHas);
21856
21858
  }
21857
- function hasIn(object, path3) {
21858
- return object != null && hasPath(object, path3, baseHasIn);
21859
+ function hasIn(object, path4) {
21860
+ return object != null && hasPath(object, path4, baseHasIn);
21859
21861
  }
21860
21862
  var invert = createInverter(function(result2, value, key) {
21861
21863
  if (value != null && typeof value.toString != "function") {
@@ -21908,10 +21910,10 @@ var require_lodash = __commonJSMin((exports, module2) => {
21908
21910
  return result2;
21909
21911
  }
21910
21912
  var isDeep = false;
21911
- paths = arrayMap(paths, function(path3) {
21912
- path3 = castPath(path3, object);
21913
- isDeep || (isDeep = path3.length > 1);
21914
- return path3;
21913
+ paths = arrayMap(paths, function(path4) {
21914
+ path4 = castPath(path4, object);
21915
+ isDeep || (isDeep = path4.length > 1);
21916
+ return path4;
21915
21917
  });
21916
21918
  copyObject(object, getAllKeysIn(object), result2);
21917
21919
  if (isDeep) {
@@ -21937,19 +21939,19 @@ var require_lodash = __commonJSMin((exports, module2) => {
21937
21939
  return [prop];
21938
21940
  });
21939
21941
  predicate = getIteratee(predicate);
21940
- return basePickBy(object, props, function(value, path3) {
21941
- return predicate(value, path3[0]);
21942
+ return basePickBy(object, props, function(value, path4) {
21943
+ return predicate(value, path4[0]);
21942
21944
  });
21943
21945
  }
21944
- function result(object, path3, defaultValue) {
21945
- path3 = castPath(path3, object);
21946
- var index = -1, length = path3.length;
21946
+ function result(object, path4, defaultValue) {
21947
+ path4 = castPath(path4, object);
21948
+ var index = -1, length = path4.length;
21947
21949
  if (!length) {
21948
21950
  length = 1;
21949
21951
  object = undefined2;
21950
21952
  }
21951
21953
  while (++index < length) {
21952
- var value = object == null ? undefined2 : object[toKey(path3[index])];
21954
+ var value = object == null ? undefined2 : object[toKey(path4[index])];
21953
21955
  if (value === undefined2) {
21954
21956
  index = length;
21955
21957
  value = defaultValue;
@@ -21958,12 +21960,12 @@ var require_lodash = __commonJSMin((exports, module2) => {
21958
21960
  }
21959
21961
  return object;
21960
21962
  }
21961
- function set(object, path3, value) {
21962
- return object == null ? object : baseSet(object, path3, value);
21963
+ function set(object, path4, value) {
21964
+ return object == null ? object : baseSet(object, path4, value);
21963
21965
  }
21964
- function setWith(object, path3, value, customizer) {
21966
+ function setWith(object, path4, value, customizer) {
21965
21967
  customizer = typeof customizer == "function" ? customizer : undefined2;
21966
- return object == null ? object : baseSet(object, path3, value, customizer);
21968
+ return object == null ? object : baseSet(object, path4, value, customizer);
21967
21969
  }
21968
21970
  var toPairs = createToPairs(keys);
21969
21971
  var toPairsIn = createToPairs(keysIn);
@@ -21985,15 +21987,15 @@ var require_lodash = __commonJSMin((exports, module2) => {
21985
21987
  });
21986
21988
  return accumulator;
21987
21989
  }
21988
- function unset(object, path3) {
21989
- return object == null ? true : baseUnset(object, path3);
21990
+ function unset(object, path4) {
21991
+ return object == null ? true : baseUnset(object, path4);
21990
21992
  }
21991
- function update(object, path3, updater) {
21992
- return object == null ? object : baseUpdate(object, path3, castFunction(updater));
21993
+ function update(object, path4, updater) {
21994
+ return object == null ? object : baseUpdate(object, path4, castFunction(updater));
21993
21995
  }
21994
- function updateWith(object, path3, updater, customizer) {
21996
+ function updateWith(object, path4, updater, customizer) {
21995
21997
  customizer = typeof customizer == "function" ? customizer : undefined2;
21996
- return object == null ? object : baseUpdate(object, path3, castFunction(updater), customizer);
21998
+ return object == null ? object : baseUpdate(object, path4, castFunction(updater), customizer);
21997
21999
  }
21998
22000
  function values(object) {
21999
22001
  return object == null ? [] : baseValues(object, keys(object));
@@ -22371,17 +22373,17 @@ var require_lodash = __commonJSMin((exports, module2) => {
22371
22373
  function matches(source) {
22372
22374
  return baseMatches(baseClone(source, CLONE_DEEP_FLAG));
22373
22375
  }
22374
- function matchesProperty(path3, srcValue) {
22375
- return baseMatchesProperty(path3, baseClone(srcValue, CLONE_DEEP_FLAG));
22376
+ function matchesProperty(path4, srcValue) {
22377
+ return baseMatchesProperty(path4, baseClone(srcValue, CLONE_DEEP_FLAG));
22376
22378
  }
22377
- var method = baseRest(function(path3, args) {
22379
+ var method = baseRest(function(path4, args) {
22378
22380
  return function(object) {
22379
- return baseInvoke(object, path3, args);
22381
+ return baseInvoke(object, path4, args);
22380
22382
  };
22381
22383
  });
22382
22384
  var methodOf = baseRest(function(object, args) {
22383
- return function(path3) {
22384
- return baseInvoke(object, path3, args);
22385
+ return function(path4) {
22386
+ return baseInvoke(object, path4, args);
22385
22387
  };
22386
22388
  });
22387
22389
  function mixin(object, source, options3) {
@@ -22428,12 +22430,12 @@ var require_lodash = __commonJSMin((exports, module2) => {
22428
22430
  var over = createOver(arrayMap);
22429
22431
  var overEvery = createOver(arrayEvery);
22430
22432
  var overSome = createOver(arraySome);
22431
- function property(path3) {
22432
- return isKey(path3) ? baseProperty(toKey(path3)) : basePropertyDeep(path3);
22433
+ function property(path4) {
22434
+ return isKey(path4) ? baseProperty(toKey(path4)) : basePropertyDeep(path4);
22433
22435
  }
22434
22436
  function propertyOf(object) {
22435
- return function(path3) {
22436
- return object == null ? undefined2 : baseGet(object, path3);
22437
+ return function(path4) {
22438
+ return object == null ? undefined2 : baseGet(object, path4);
22437
22439
  };
22438
22440
  }
22439
22441
  var range = createRange();
@@ -22886,12 +22888,12 @@ var require_lodash = __commonJSMin((exports, module2) => {
22886
22888
  LazyWrapper.prototype.findLast = function(predicate) {
22887
22889
  return this.reverse().find(predicate);
22888
22890
  };
22889
- LazyWrapper.prototype.invokeMap = baseRest(function(path3, args) {
22890
- if (typeof path3 == "function") {
22891
+ LazyWrapper.prototype.invokeMap = baseRest(function(path4, args) {
22892
+ if (typeof path4 == "function") {
22891
22893
  return new LazyWrapper(this);
22892
22894
  }
22893
22895
  return this.map(function(value) {
22894
- return baseInvoke(value, path3, args);
22896
+ return baseInvoke(value, path4, args);
22895
22897
  });
22896
22898
  });
22897
22899
  LazyWrapper.prototype.reject = function(predicate) {
@@ -30608,13 +30610,13 @@ var require_browsers2 = __commonJSMin((exports, module2) => {
30608
30610
  module2.exports.browsers = require_browsers();
30609
30611
  });
30610
30612
  var require_browserVersions = __commonJSMin((exports, module2) => {
30611
- module2.exports = { "0": "31", "1": "32", "2": "33", "3": "34", "4": "35", "5": "36", "6": "37", "7": "38", "8": "39", "9": "40", A: "10", B: "11", C: "12", D: "7", E: "8", F: "9", G: "15", H: "101", I: "4", J: "6", K: "13", L: "14", M: "16", N: "17", O: "18", P: "79", Q: "80", R: "81", S: "83", T: "84", U: "85", V: "86", W: "87", X: "102", Y: "64", Z: "88", a: "89", b: "90", c: "91", d: "92", e: "93", f: "94", g: "95", h: "96", i: "97", j: "98", k: "99", l: "100", m: "103", n: "5", o: "19", p: "20", q: "21", r: "22", s: "23", t: "24", u: "25", v: "26", w: "27", x: "28", y: "29", z: "30", AB: "41", BB: "42", CB: "43", DB: "44", EB: "45", FB: "46", GB: "47", HB: "48", IB: "49", JB: "50", KB: "51", LB: "52", MB: "53", NB: "54", OB: "55", PB: "56", QB: "57", RB: "58", SB: "60", TB: "62", UB: "63", VB: "65", WB: "66", XB: "67", YB: "68", ZB: "69", aB: "70", bB: "71", cB: "72", dB: "73", eB: "74", fB: "75", gB: "76", hB: "77", iB: "78", jB: "11.1", kB: "12.1", lB: "16.0", mB: "3", nB: "59", oB: "61", pB: "82", qB: "3.2", rB: "10.1", sB: "15.2-15.3", tB: "15.4", uB: "15.5", vB: "11.5", wB: "4.2-4.3", xB: "5.5", yB: "2", zB: "3.5", "0B": "3.6", "1B": "104", "2B": "105", "3B": "106", "4B": "3.1", "5B": "5.1", "6B": "6.1", "7B": "7.1", "8B": "9.1", "9B": "13.1", AC: "14.1", BC: "15.1", CC: "TP", DC: "9.5-9.6", EC: "10.0-10.1", FC: "10.5", GC: "10.6", HC: "11.6", IC: "4.0-4.1", JC: "5.0-5.1", KC: "6.0-6.1", LC: "7.0-7.1", MC: "8.1-8.4", NC: "9.0-9.2", OC: "9.3", PC: "10.0-10.2", QC: "10.3", RC: "11.0-11.2", SC: "11.3-11.4", TC: "12.0-12.1", UC: "12.2-12.5", VC: "13.0-13.1", WC: "13.2", XC: "13.3", YC: "13.4-13.7", ZC: "14.0-14.4", aC: "14.5-14.8", bC: "15.0-15.1", cC: "all", dC: "2.1", eC: "2.2", fC: "2.3", gC: "4.1", hC: "4.4", iC: "4.4.3-4.4.4", jC: "12.12", kC: "5.0-5.4", lC: "6.2-6.4", mC: "7.2-7.4", nC: "8.2", oC: "9.2", pC: "11.1-11.2", qC: "12.0", rC: "13.0", sC: "14.0", tC: "15.0", uC: "17.0", vC: "10.4", wC: "7.12", xC: "2.5" };
30613
+ module2.exports = { "0": "27", "1": "28", "2": "29", "3": "30", "4": "31", "5": "32", "6": "33", "7": "34", "8": "35", "9": "36", A: "10", B: "11", C: "12", D: "7", E: "8", F: "9", G: "15", H: "107", I: "4", J: "6", K: "13", L: "14", M: "16", N: "17", O: "18", P: "79", Q: "80", R: "81", S: "83", T: "84", U: "85", V: "86", W: "87", X: "88", Y: "89", Z: "90", a: "91", b: "92", c: "106", d: "72", e: "93", f: "94", g: "95", h: "96", i: "97", j: "98", k: "99", l: "100", m: "101", n: "102", o: "103", p: "104", q: "105", r: "5", s: "19", t: "20", u: "21", v: "22", w: "23", x: "24", y: "25", z: "26", AB: "37", BB: "38", CB: "39", DB: "40", EB: "41", FB: "42", GB: "43", HB: "44", IB: "45", JB: "46", KB: "47", LB: "48", MB: "49", NB: "50", OB: "51", PB: "52", QB: "53", RB: "54", SB: "55", TB: "56", UB: "57", VB: "58", WB: "60", XB: "62", YB: "63", ZB: "64", aB: "65", bB: "66", cB: "67", dB: "68", eB: "69", fB: "70", gB: "71", hB: "73", iB: "74", jB: "75", kB: "76", lB: "77", mB: "78", nB: "11.1", oB: "12.1", pB: "16.0", qB: "3", rB: "59", sB: "61", tB: "82", uB: "108", vB: "109", wB: "3.2", xB: "10.1", yB: "13.1", zB: "15.2-15.3", "0B": "15.4", "1B": "15.5", "2B": "15.6", "3B": "16.1", "4B": "11.5", "5B": "4.2-4.3", "6B": "5.5", "7B": "2", "8B": "3.5", "9B": "3.6", AC: "110", BC: "3.1", CC: "5.1", DC: "6.1", EC: "7.1", FC: "9.1", GC: "14.1", HC: "15.1", IC: "16.2", JC: "TP", KC: "9.5-9.6", LC: "10.0-10.1", MC: "10.5", NC: "10.6", OC: "11.6", PC: "4.0-4.1", QC: "5.0-5.1", RC: "6.0-6.1", SC: "7.0-7.1", TC: "8.1-8.4", UC: "9.0-9.2", VC: "9.3", WC: "10.0-10.2", XC: "10.3", YC: "11.0-11.2", ZC: "11.3-11.4", aC: "12.0-12.1", bC: "12.2-12.5", cC: "13.0-13.1", dC: "13.2", eC: "13.3", fC: "13.4-13.7", gC: "14.0-14.4", hC: "14.5-14.8", iC: "15.0-15.1", jC: "all", kC: "2.1", lC: "2.2", mC: "2.3", nC: "4.1", oC: "4.4", pC: "4.4.3-4.4.4", qC: "13.4", rC: "5.0-5.4", sC: "6.2-6.4", tC: "7.2-7.4", uC: "8.2", vC: "9.2", wC: "11.1-11.2", xC: "12.0", yC: "13.0", zC: "14.0", "0C": "15.0", "1C": "17.0", "2C": "18.0", "3C": "19.0", "4C": "13.18", "5C": "2.5" };
30612
30614
  });
30613
30615
  var require_browserVersions2 = __commonJSMin((exports, module2) => {
30614
30616
  module2.exports.browserVersions = require_browserVersions();
30615
30617
  });
30616
30618
  var require_agents = __commonJSMin((exports, module2) => {
30617
- module2.exports = { A: { A: { J: 0.0131217, D: 621152e-8, E: 0.0166941, F: 0.038953, A: 556471e-8, B: 0.8514, xB: 9298e-6 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "xB", "J", "D", "E", "F", "A", "B", "", "", ""], E: "IE", F: { xB: 962323200, J: 998870400, D: 1161129600, E: 1237420800, F: 1300060800, A: 1346716800, B: 1381968e3 } }, B: { A: { C: 7734e-6, K: 4267e-6, L: 4268e-6, G: 0.058005, M: 3867e-6, N: 7734e-6, O: 0.023202, P: 0, Q: 4298e-6, R: 944e-5, S: 4043e-6, T: 7734e-6, U: 7734e-6, V: 3867e-6, W: 0.011601, Z: 4318e-6, a: 7734e-6, b: 4118e-6, c: 3939e-6, d: 7734e-6, e: 4118e-6, f: 3939e-6, g: 7734e-6, h: 0.011601, i: 0.015468, j: 0.015468, k: 0.054138, l: 0.212685, H: 3.52284, X: 0, m: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "C", "K", "L", "G", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "H", "X", "m", "", "", ""], E: "Edge", F: { C: 1438128e3, K: 1447286400, L: 1470096e3, G: 1491868800, M: 1508198400, N: 1525046400, O: 1542067200, P: 1579046400, Q: 1581033600, R: 1586736e3, S: 1590019200, T: 1594857600, U: 1598486400, V: 1602201600, W: 1605830400, Z: 161136e4, a: 1614816e3, b: 1618358400, c: 1622073600, d: 1626912e3, e: 1630627200, f: 1632441600, g: 1634774400, h: 1637539200, i: 1641427200, j: 1643932800, k: 1646265600, l: 1649635200, H: 1651190400, X: 1653955200, m: 1655942400 }, D: { C: "ms", K: "ms", L: "ms", G: "ms", M: "ms", N: "ms", O: "ms" } }, C: { A: { "0": 8928e-6, "1": 4471e-6, "2": 9284e-6, "3": 4707e-6, "4": 9076e-6, "5": 3867e-6, "6": 4783e-6, "7": 4271e-6, "8": 4783e-6, "9": 487e-5, yB: 4118e-6, mB: 4271e-6, I: 0.019335, n: 4879e-6, J: 0.020136, D: 5725e-6, E: 4525e-6, F: 533e-5, A: 4283e-6, B: 7734e-6, C: 4471e-6, K: 4486e-6, L: 453e-5, G: 8322e-6, M: 4417e-6, N: 4425e-6, O: 4161e-6, o: 4443e-6, p: 4283e-6, q: 8322e-6, r: 0.013698, s: 4161e-6, t: 8786e-6, u: 4118e-6, v: 4317e-6, w: 4393e-6, x: 4418e-6, y: 8834e-6, z: 8322e-6, AB: 5029e-6, BB: 47e-4, CB: 0.023202, DB: 7734e-6, EB: 3867e-6, FB: 4525e-6, GB: 4293e-6, HB: 3867e-6, IB: 4538e-6, JB: 8282e-6, KB: 0.011601, LB: 0.069606, MB: 0.011601, NB: 7734e-6, OB: 0.015468, PB: 0.011601, QB: 0.011601, RB: 3939e-6, nB: 7734e-6, SB: 3867e-6, oB: 4356e-6, TB: 4425e-6, UB: 8322e-6, Y: 415e-5, VB: 4267e-6, WB: 3867e-6, XB: 4267e-6, YB: 7734e-6, ZB: 415e-5, aB: 4293e-6, bB: 4425e-6, cB: 3867e-6, dB: 415e-5, eB: 415e-5, fB: 4318e-6, gB: 4356e-6, hB: 3867e-6, iB: 0.042537, P: 7734e-6, Q: 7734e-6, R: 0.011601, pB: 7734e-6, S: 3867e-6, T: 3867e-6, U: 4268e-6, V: 3867e-6, W: 0.011601, Z: 0.011601, a: 7734e-6, b: 7734e-6, c: 0.096675, d: 3867e-6, e: 7734e-6, f: 0.03867, g: 0.011601, h: 0.015468, i: 0.015468, j: 0.034803, k: 0.421503, l: 1.84456, H: 0.023202, X: 0, m: 0, zB: 8786e-6, "0B": 487e-5 }, B: "moz", C: ["yB", "mB", "zB", "0B", "I", "n", "J", "D", "E", "F", "A", "B", "C", "K", "L", "G", "M", "N", "O", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "nB", "SB", "oB", "TB", "UB", "Y", "VB", "WB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "P", "Q", "R", "pB", "S", "T", "U", "V", "W", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "H", "X", "m", ""], E: "Firefox", F: { "0": 1405987200, "1": 1409616e3, "2": 1413244800, "3": 1417392e3, "4": 1421107200, "5": 1424736e3, "6": 1428278400, "7": 1431475200, "8": 1435881600, "9": 1439251200, yB: 1161648e3, mB: 1213660800, zB: 124632e4, "0B": 1264032e3, I: 1300752e3, n: 1308614400, J: 1313452800, D: 1317081600, E: 1317081600, F: 1320710400, A: 1324339200, B: 1327968e3, C: 1331596800, K: 1335225600, L: 1338854400, G: 1342483200, M: 1346112e3, N: 1349740800, O: 1353628800, o: 1357603200, p: 1361232e3, q: 1364860800, r: 1368489600, s: 1372118400, t: 1375747200, u: 1379376e3, v: 1386633600, w: 1391472e3, x: 1395100800, y: 1398729600, z: 1402358400, AB: 144288e4, BB: 1446508800, CB: 1450137600, DB: 1453852800, EB: 1457395200, FB: 1461628800, GB: 1465257600, HB: 1470096e3, IB: 1474329600, JB: 1479168e3, KB: 1485216e3, LB: 1488844800, MB: 149256e4, NB: 1497312e3, OB: 1502150400, PB: 1506556800, QB: 1510617600, RB: 1516665600, nB: 1520985600, SB: 1525824e3, oB: 1529971200, TB: 1536105600, UB: 1540252800, Y: 1544486400, VB: 154872e4, WB: 1552953600, XB: 1558396800, YB: 1562630400, ZB: 1567468800, aB: 1571788800, bB: 1575331200, cB: 1578355200, dB: 1581379200, eB: 1583798400, fB: 1586304e3, gB: 1588636800, hB: 1591056e3, iB: 1593475200, P: 1595894400, Q: 1598313600, R: 1600732800, pB: 1603152e3, S: 1605571200, T: 1607990400, U: 1611619200, V: 1614038400, W: 1616457600, Z: 1618790400, a: 1622505600, b: 1626134400, c: 1628553600, d: 1630972800, e: 1633392e3, f: 1635811200, g: 1638835200, h: 1641859200, i: 1644364800, j: 1646697600, k: 1649116800, l: 1651536e3, H: 1653955200, X: null, m: null } }, D: { A: { "0": 8596e-6, "1": 4566e-6, "2": 4118e-6, "3": 7734e-6, "4": 7878e-6, "5": 4335e-6, "6": 4464e-6, "7": 0.019335, "8": 3867e-6, "9": 0.019335, I: 4706e-6, n: 4879e-6, J: 4879e-6, D: 5591e-6, E: 5591e-6, F: 5591e-6, A: 4534e-6, B: 4464e-6, C: 0.010424, K: 83e-4, L: 4706e-6, G: 0.015087, M: 4393e-6, N: 4393e-6, O: 8652e-6, o: 8322e-6, p: 4393e-6, q: 4317e-6, r: 7734e-6, s: 8786e-6, t: 3939e-6, u: 4461e-6, v: 4141e-6, w: 4326e-6, x: 47e-4, y: 4538e-6, z: 8322e-6, AB: 7734e-6, BB: 7734e-6, CB: 0.011601, DB: 3867e-6, EB: 3867e-6, FB: 3867e-6, GB: 0.015468, HB: 0.023202, IB: 0.061872, JB: 3867e-6, KB: 7734e-6, LB: 7734e-6, MB: 0.015468, NB: 3867e-6, OB: 7734e-6, PB: 0.027069, QB: 7734e-6, RB: 0.011601, nB: 7734e-6, SB: 0.015468, oB: 0.015468, TB: 0.015468, UB: 0.015468, Y: 7734e-6, VB: 0.015468, WB: 0.027069, XB: 0.023202, YB: 7734e-6, ZB: 0.046404, aB: 0.019335, bB: 0.011601, cB: 0.019335, dB: 7734e-6, eB: 0.023202, fB: 0.058005, gB: 0.073473, hB: 0.011601, iB: 0.030936, P: 0.204951, Q: 0.042537, R: 0.03867, S: 0.131478, T: 0.081207, U: 0.088941, V: 0.092808, W: 0.104409, Z: 0.019335, a: 0.058005, b: 0.034803, c: 0.081207, d: 0.065739, e: 0.054138, f: 0.061872, g: 0.042537, h: 0.143079, i: 0.143079, j: 0.204951, k: 0.351897, l: 4.17636, H: 15.4487, X: 1.5468, m: 0.015468, "1B": 7734e-6, "2B": 0, "3B": 0 }, B: "webkit", C: ["", "", "", "I", "n", "J", "D", "E", "F", "A", "B", "C", "K", "L", "G", "M", "N", "O", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "nB", "SB", "oB", "TB", "UB", "Y", "VB", "WB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "P", "Q", "R", "S", "T", "U", "V", "W", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "H", "X", "m", "1B", "2B", "3B"], E: "Chrome", F: { "0": 1384214400, "1": 1389657600, "2": 1392940800, "3": 1397001600, "4": 1400544e3, "5": 1405468800, "6": 1409011200, "7": 141264e4, "8": 1416268800, "9": 1421798400, I: 1264377600, n: 1274745600, J: 1283385600, D: 1287619200, E: 1291248e3, F: 1296777600, A: 1299542400, B: 1303862400, C: 1307404800, K: 1312243200, L: 1316131200, G: 1316131200, M: 1319500800, N: 1323734400, O: 1328659200, o: 1332892800, p: 133704e4, q: 1340668800, r: 1343692800, s: 1348531200, t: 1352246400, u: 1357862400, v: 1361404800, w: 1364428800, x: 1369094400, y: 1374105600, z: 1376956800, AB: 1425513600, BB: 1429401600, CB: 143208e4, DB: 1437523200, EB: 1441152e3, FB: 1444780800, GB: 1449014400, HB: 1453248e3, IB: 1456963200, JB: 1460592e3, KB: 1464134400, LB: 1469059200, MB: 1472601600, NB: 1476230400, OB: 1480550400, PB: 1485302400, QB: 1489017600, RB: 149256e4, nB: 1496707200, SB: 1500940800, oB: 1504569600, TB: 1508198400, UB: 1512518400, Y: 1516752e3, VB: 1520294400, WB: 1523923200, XB: 1527552e3, YB: 1532390400, ZB: 1536019200, aB: 1539648e3, bB: 1543968e3, cB: 154872e4, dB: 1552348800, eB: 1555977600, fB: 1559606400, gB: 1564444800, hB: 1568073600, iB: 1571702400, P: 1575936e3, Q: 1580860800, R: 1586304e3, S: 1589846400, T: 1594684800, U: 1598313600, V: 1601942400, W: 1605571200, Z: 1611014400, a: 1614556800, b: 1618272e3, c: 1621987200, d: 1626739200, e: 1630368e3, f: 1632268800, g: 1634601600, h: 1637020800, i: 1641340800, j: 1643673600, k: 1646092800, l: 1648512e3, H: 1650931200, X: 1653350400, m: 1655769600, "1B": null, "2B": null, "3B": null } }, E: { A: { I: 0, n: 8322e-6, J: 4656e-6, D: 4465e-6, E: 4356e-6, F: 4891e-6, A: 4425e-6, B: 4318e-6, C: 3867e-6, K: 0.034803, L: 0.158547, G: 0.058005, "4B": 0, qB: 8692e-6, "5B": 7734e-6, "6B": 456e-5, "7B": 4283e-6, "8B": 0.015468, rB: 7734e-6, jB: 0.023202, kB: 0.046404, "9B": 0.266823, AC: 0.491109, BC: 0.108276, sB: 0.108276, tB: 1.67054, uB: 0.189483, lB: 0, CC: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "4B", "qB", "I", "n", "5B", "J", "6B", "D", "7B", "E", "F", "8B", "A", "rB", "B", "jB", "C", "kB", "K", "9B", "L", "AC", "G", "BC", "sB", "tB", "uB", "lB", "CC", ""], E: "Safari", F: { "4B": 1205798400, qB: 1226534400, I: 1244419200, n: 1275868800, "5B": 131112e4, J: 1343174400, "6B": 13824e5, D: 13824e5, "7B": 1410998400, E: 1413417600, F: 1443657600, "8B": 1458518400, A: 1474329600, rB: 1490572800, B: 1505779200, jB: 1522281600, C: 1537142400, kB: 1553472e3, K: 1568851200, "9B": 1585008e3, L: 1600214400, AC: 1619395200, G: 1632096e3, BC: 1635292800, sB: 1639353600, tB: 1647216e3, uB: 1652745600, lB: null, CC: null } }, F: { A: { "0": 3867e-6, "1": 5152e-6, "2": 5014e-6, "3": 9758e-6, "4": 4879e-6, "5": 3867e-6, "6": 4283e-6, "7": 4367e-6, "8": 4534e-6, "9": 7734e-6, F: 82e-4, B: 0.016581, C: 4317e-6, G: 685e-5, M: 685e-5, N: 685e-5, O: 5014e-6, o: 6015e-6, p: 4879e-6, q: 6597e-6, r: 6597e-6, s: 0.013434, t: 6702e-6, u: 6015e-6, v: 5595e-6, w: 4393e-6, x: 7734e-6, y: 4879e-6, z: 4879e-6, AB: 4227e-6, BB: 4418e-6, CB: 4161e-6, DB: 4227e-6, EB: 4725e-6, FB: 0.011601, GB: 8942e-6, HB: 4707e-6, IB: 4827e-6, JB: 4707e-6, KB: 4707e-6, LB: 4326e-6, MB: 8922e-6, NB: 0.014349, OB: 4425e-6, PB: 472e-5, QB: 4425e-6, RB: 4425e-6, SB: 472e-5, TB: 4532e-6, UB: 4566e-6, Y: 0.02283, VB: 867e-5, WB: 4656e-6, XB: 4642e-6, YB: 3867e-6, ZB: 944e-5, aB: 4293e-6, bB: 3867e-6, cB: 4298e-6, dB: 0.096692, eB: 4201e-6, fB: 4141e-6, gB: 4257e-6, hB: 3939e-6, iB: 8236e-6, P: 3939e-6, Q: 3939e-6, R: 8514e-6, pB: 3939e-6, S: 3939e-6, T: 7734e-6, U: 0.448572, V: 0.475641, W: 0.027069, DC: 685e-5, EC: 0, FC: 8392e-6, GC: 4706e-6, jB: 6229e-6, vB: 4879e-6, HC: 8786e-6, kB: 472e-5 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "F", "DC", "EC", "FC", "GC", "B", "jB", "vB", "HC", "C", "kB", "G", "M", "N", "O", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "Y", "VB", "WB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "P", "Q", "R", "pB", "S", "T", "U", "V", "W", "", ""], E: "Opera", F: { "0": 1438646400, "1": 1442448e3, "2": 1445904e3, "3": 1449100800, "4": 1454371200, "5": 1457308800, "6": 146232e4, "7": 1465344e3, "8": 1470096e3, "9": 1474329600, F: 1150761600, DC: 1223424e3, EC: 1251763200, FC: 1267488e3, GC: 1277942400, B: 1292457600, jB: 1302566400, vB: 1309219200, HC: 1323129600, C: 1323129600, kB: 1352073600, G: 1372723200, M: 1377561600, N: 1381104e3, O: 1386288e3, o: 1390867200, p: 1393891200, q: 1399334400, r: 1401753600, s: 1405987200, t: 1409616e3, u: 1413331200, v: 1417132800, w: 1422316800, x: 1425945600, y: 1430179200, z: 1433808e3, AB: 1477267200, BB: 1481587200, CB: 1486425600, DB: 1490054400, EB: 1494374400, FB: 1498003200, GB: 1502236800, HB: 1506470400, IB: 1510099200, JB: 1515024e3, KB: 1517961600, LB: 1521676800, MB: 1525910400, NB: 1530144e3, OB: 1534982400, PB: 1537833600, QB: 1543363200, RB: 1548201600, SB: 1554768e3, TB: 1561593600, UB: 1566259200, Y: 1570406400, VB: 1573689600, WB: 1578441600, XB: 1583971200, YB: 1587513600, ZB: 1592956800, aB: 1595894400, bB: 1600128e3, cB: 1603238400, dB: 161352e4, eB: 1612224e3, fB: 1616544e3, gB: 1619568e3, hB: 1623715200, iB: 1627948800, P: 1631577600, Q: 1633392e3, R: 1635984e3, pB: 1638403200, S: 1642550400, T: 1644969600, U: 1647993600, V: 1650412800, W: null }, D: { F: "o", B: "o", C: "o", DC: "o", EC: "o", FC: "o", GC: "o", jB: "o", vB: "o", HC: "o", kB: "o" } }, G: { A: { E: 0, qB: 303644e-8, IC: 0, wB: 151822e-8, JC: 455466e-8, KC: 455466e-8, LC: 0.0167004, MC: 759111e-8, NC: 0.0197369, OC: 0.0774293, PC: 0.013664, QC: 0.0926115, RC: 0.0379555, SC: 0.0318826, TC: 0.0303644, UC: 0.57996, VC: 0.0288462, WC: 0.0121458, XC: 0.0607288, YC: 0.189778, ZC: 0.592106, aC: 1.50911, bC: 0.513159, sB: 1.20395, tB: 10.1478, uB: 0, lB: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "qB", "IC", "wB", "JC", "KC", "LC", "E", "MC", "NC", "OC", "PC", "QC", "RC", "SC", "TC", "UC", "VC", "WC", "XC", "YC", "ZC", "aC", "bC", "sB", "tB", "uB", "lB", "", ""], E: "Safari on iOS", F: { qB: 1270252800, IC: 1283904e3, wB: 1299628800, JC: 1331078400, KC: 1359331200, LC: 1394409600, E: 1410912e3, MC: 1413763200, NC: 1442361600, OC: 1458518400, PC: 1473724800, QC: 1490572800, RC: 1505779200, SC: 1522281600, TC: 1537142400, UC: 1553472e3, VC: 1568851200, WC: 1572220800, XC: 1580169600, YC: 1585008e3, ZC: 1600214400, aC: 1619395200, bC: 1632096e3, sB: 1639353600, tB: 1647216e3, uB: 1652659200, lB: null } }, H: { A: { cC: 0.998688 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "cC", "", "", ""], E: "Opera Mini", F: { cC: 1426464e3 } }, I: { A: { mB: 0, I: 0.0149357, H: 0, dC: 0, eC: 0, fC: 0, gC: 0.0199142, wB: 0.0597426, hC: 0, iC: 0.328584 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "dC", "eC", "fC", "mB", "I", "gC", "wB", "hC", "iC", "H", "", "", ""], E: "Android Browser", F: { dC: 1256515200, eC: 1274313600, fC: 1291593600, mB: 1298332800, I: 1318896e3, gC: 1341792e3, wB: 1374624e3, hC: 1386547200, iC: 1401667200, H: 1651017600 } }, J: { A: { D: 0, A: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "D", "A", "", "", ""], E: "Blackberry Browser", F: { D: 1325376e3, A: 1359504e3 } }, K: { A: { A: 0, B: 0, C: 0, Y: 0.0111391, jB: 0, vB: 0, kB: 0 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "jB", "vB", "C", "kB", "Y", "", "", ""], E: "Opera Mobile", F: { A: 1287100800, B: 1300752e3, jB: 1314835200, vB: 1318291200, C: 1330300800, kB: 1349740800, Y: 1613433600 }, D: { Y: "webkit" } }, L: { A: { X: 41.3354 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "X", "", "", ""], E: "Chrome for Android", F: { X: 1653350400 } }, M: { A: { H: 0.30665 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "H", "", "", ""], E: "Firefox for Android", F: { H: 1653955200 } }, N: { A: { A: 0.0115934, B: 0.022664 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "", "", ""], E: "IE Mobile", F: { A: 1340150400, B: 1353456e3 } }, O: { A: { jC: 0.766625 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "jC", "", "", ""], E: "UC Browser for Android", F: { jC: 1471392e3 }, D: { jC: "webkit" } }, P: { A: { I: 0.209346, kC: 0.0103543, lC: 0.010304, mC: 0.0628037, nC: 0.0103584, oC: 0.0104673, rB: 0.0105043, pC: 0.0418691, qC: 0.0209346, rC: 0.0942055, sC: 0.0942055, tC: 0.0942055, lB: 0.889718, uC: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "I", "kC", "lC", "mC", "nC", "oC", "rB", "pC", "qC", "rC", "sC", "tC", "lB", "uC", "", "", ""], E: "Samsung Internet", F: { I: 1461024e3, kC: 1481846400, lC: 1509408e3, mC: 1528329600, nC: 1546128e3, oC: 1554163200, rB: 1567900800, pC: 1582588800, qC: 1593475200, rC: 1605657600, sC: 1618531200, tC: 1629072e3, lB: 1640736e3, uC: 1651708800 } }, Q: { A: { vC: 0.153325 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "vC", "", "", ""], E: "QQ Browser", F: { vC: 1589846400 } }, R: { A: { wC: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "wC", "", "", ""], E: "Baidu Browser", F: { wC: 1491004800 } }, S: { A: { xC: 0.073596 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "xC", "", "", ""], E: "KaiOS Browser", F: { xC: 1527811200 } } };
30619
+ module2.exports = { A: { A: { J: 0.0131217, D: 621152e-8, E: 0.0440661, F: 0.0881323, A: 734435e-8, B: 0.440661, "6B": 9298e-6 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "6B", "J", "D", "E", "F", "A", "B", "", "", ""], E: "IE", F: { "6B": 962323200, J: 998870400, D: 1161129600, E: 1237420800, F: 1300060800, A: 1346716800, B: 1381968e3 } }, B: { A: { C: 7948e-6, K: 4267e-6, L: 4268e-6, G: 3974e-6, M: 3702e-6, N: 3974e-6, O: 0.01987, P: 0, Q: 4298e-6, R: 944e-5, S: 4043e-6, T: 3974e-6, U: 3974e-6, V: 3974e-6, W: 3974e-6, X: 4318e-6, Y: 3974e-6, Z: 4118e-6, a: 3939e-6, b: 7948e-6, e: 4118e-6, f: 3939e-6, g: 3801e-6, h: 3929e-6, i: 3855e-6, j: 3929e-6, k: 3974e-6, l: 3974e-6, m: 0.011922, n: 0.011922, o: 0.035766, p: 0.067558, q: 0.802748, c: 3.07588, H: 0.246388 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "C", "K", "L", "G", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "c", "H", "", "", ""], E: "Edge", F: { C: 1438128e3, K: 1447286400, L: 1470096e3, G: 1491868800, M: 1508198400, N: 1525046400, O: 1542067200, P: 1579046400, Q: 1581033600, R: 1586736e3, S: 1590019200, T: 1594857600, U: 1598486400, V: 1602201600, W: 1605830400, X: 161136e4, Y: 1614816e3, Z: 1618358400, a: 1622073600, b: 1626912e3, e: 1630627200, f: 1632441600, g: 1634774400, h: 1637539200, i: 1641427200, j: 1643932800, k: 1646265600, l: 1649635200, m: 1651190400, n: 1653955200, o: 1655942400, p: 1659657600, q: 1661990400, c: 1664755200, H: 1666915200 }, D: { C: "ms", K: "ms", L: "ms", G: "ms", M: "ms", N: "ms", O: "ms" } }, C: { A: { "0": 4393e-6, "1": 4418e-6, "2": 8834e-6, "3": 8322e-6, "4": 8928e-6, "5": 4471e-6, "6": 9284e-6, "7": 4707e-6, "8": 9076e-6, "9": 7948e-6, "7B": 4118e-6, qB: 4271e-6, I: 0.015896, r: 4879e-6, J: 0.020136, D: 5725e-6, E: 4525e-6, F: 533e-5, A: 4283e-6, B: 7948e-6, C: 4471e-6, K: 4486e-6, L: 453e-5, G: 8322e-6, M: 4417e-6, N: 4425e-6, O: 4161e-6, s: 4443e-6, t: 4283e-6, u: 8322e-6, v: 0.013698, w: 4161e-6, x: 8786e-6, y: 4118e-6, z: 4317e-6, AB: 4783e-6, BB: 3929e-6, CB: 4783e-6, DB: 487e-5, EB: 5029e-6, FB: 47e-4, GB: 0.015896, HB: 7948e-6, IB: 3867e-6, JB: 4525e-6, KB: 4293e-6, LB: 3702e-6, MB: 4538e-6, NB: 8282e-6, OB: 0.011601, PB: 0.051662, QB: 0.011601, RB: 3929e-6, SB: 3974e-6, TB: 3974e-6, UB: 0.011601, VB: 3939e-6, rB: 3855e-6, WB: 3929e-6, sB: 4356e-6, XB: 4425e-6, YB: 8322e-6, ZB: 415e-5, aB: 4267e-6, bB: 3801e-6, cB: 4267e-6, dB: 7948e-6, eB: 415e-5, fB: 4293e-6, gB: 4425e-6, d: 3974e-6, hB: 415e-5, iB: 415e-5, jB: 4318e-6, kB: 4356e-6, lB: 3974e-6, mB: 0.035766, P: 3974e-6, Q: 7948e-6, R: 7948e-6, tB: 3974e-6, S: 3974e-6, T: 3929e-6, U: 4268e-6, V: 3801e-6, W: 7948e-6, X: 7948e-6, Y: 3974e-6, Z: 3974e-6, a: 0.03974, b: 3801e-6, e: 3855e-6, f: 0.015896, g: 3974e-6, h: 3974e-6, i: 3974e-6, j: 3974e-6, k: 0.011922, l: 7948e-6, m: 0.011922, n: 0.063584, o: 0.043714, p: 0.071532, q: 1.50615, c: 0.679554, H: 7948e-6, uB: 0, vB: 0, "8B": 8786e-6, "9B": 487e-5 }, B: "moz", C: ["7B", "qB", "8B", "9B", "I", "r", "J", "D", "E", "F", "A", "B", "C", "K", "L", "G", "M", "N", "O", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "VB", "rB", "WB", "sB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "d", "hB", "iB", "jB", "kB", "lB", "mB", "P", "Q", "R", "tB", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "c", "H", "uB", "vB", ""], E: "Firefox", F: { "0": 1391472e3, "1": 1395100800, "2": 1398729600, "3": 1402358400, "4": 1405987200, "5": 1409616e3, "6": 1413244800, "7": 1417392e3, "8": 1421107200, "9": 1424736e3, "7B": 1161648e3, qB: 1213660800, "8B": 124632e4, "9B": 1264032e3, I: 1300752e3, r: 1308614400, J: 1313452800, D: 1317081600, E: 1317081600, F: 1320710400, A: 1324339200, B: 1327968e3, C: 1331596800, K: 1335225600, L: 1338854400, G: 1342483200, M: 1346112e3, N: 1349740800, O: 1353628800, s: 1357603200, t: 1361232e3, u: 1364860800, v: 1368489600, w: 1372118400, x: 1375747200, y: 1379376e3, z: 1386633600, AB: 1428278400, BB: 1431475200, CB: 1435881600, DB: 1439251200, EB: 144288e4, FB: 1446508800, GB: 1450137600, HB: 1453852800, IB: 1457395200, JB: 1461628800, KB: 1465257600, LB: 1470096e3, MB: 1474329600, NB: 1479168e3, OB: 1485216e3, PB: 1488844800, QB: 149256e4, RB: 1497312e3, SB: 1502150400, TB: 1506556800, UB: 1510617600, VB: 1516665600, rB: 1520985600, WB: 1525824e3, sB: 1529971200, XB: 1536105600, YB: 1540252800, ZB: 1544486400, aB: 154872e4, bB: 1552953600, cB: 1558396800, dB: 1562630400, eB: 1567468800, fB: 1571788800, gB: 1575331200, d: 1578355200, hB: 1581379200, iB: 1583798400, jB: 1586304e3, kB: 1588636800, lB: 1591056e3, mB: 1593475200, P: 1595894400, Q: 1598313600, R: 1600732800, tB: 1603152e3, S: 1605571200, T: 1607990400, U: 1611619200, V: 1614038400, W: 1616457600, X: 1618790400, Y: 1622505600, Z: 1626134400, a: 1628553600, b: 1630972800, e: 1633392e3, f: 1635811200, g: 1638835200, h: 1641859200, i: 1644364800, j: 1646697600, k: 1649116800, l: 1651536e3, m: 1653955200, n: 1656374400, o: 1658793600, p: 1661212800, q: 1663632e3, c: 1666051200, H: 1668470400, uB: null, vB: null } }, D: { A: { "0": 4326e-6, "1": 47e-4, "2": 4538e-6, "3": 8322e-6, "4": 8596e-6, "5": 4566e-6, "6": 4118e-6, "7": 7948e-6, "8": 3702e-6, "9": 4335e-6, I: 4706e-6, r: 4879e-6, J: 4879e-6, D: 5591e-6, E: 5591e-6, F: 5591e-6, A: 4534e-6, B: 4464e-6, C: 0.010424, K: 83e-4, L: 4706e-6, G: 0.015087, M: 4393e-6, N: 4393e-6, O: 8652e-6, s: 8322e-6, t: 4393e-6, u: 4317e-6, v: 3974e-6, w: 8786e-6, x: 3939e-6, y: 4461e-6, z: 4141e-6, AB: 4464e-6, BB: 0.015896, CB: 3867e-6, DB: 0.015896, EB: 3974e-6, FB: 3974e-6, GB: 7948e-6, HB: 7948e-6, IB: 3974e-6, JB: 3867e-6, KB: 7948e-6, LB: 0.01987, MB: 0.047688, NB: 3867e-6, OB: 3929e-6, PB: 3974e-6, QB: 7948e-6, RB: 3867e-6, SB: 3974e-6, TB: 0.035766, UB: 3974e-6, VB: 3702e-6, rB: 3702e-6, WB: 0.011922, sB: 0.011922, XB: 3974e-6, YB: 7948e-6, ZB: 3929e-6, aB: 0.011922, bB: 0.027818, cB: 7948e-6, dB: 7948e-6, eB: 0.047688, fB: 0.023844, gB: 0.011922, d: 0.03974, hB: 0.011922, iB: 0.031792, jB: 0.043714, kB: 0.035766, lB: 0.011922, mB: 0.031792, P: 0.107298, Q: 0.035766, R: 0.03974, S: 0.067558, T: 0.051662, U: 0.083454, V: 0.083454, W: 0.083454, X: 0.01987, Y: 0.03974, Z: 0.023844, a: 0.055636, b: 0.047688, e: 0.043714, f: 0.035766, g: 0.023844, h: 0.063584, i: 0.05961, j: 0.051662, k: 0.055636, l: 0.151012, m: 0.087428, n: 0.143064, o: 0.421244, p: 0.41727, q: 6.00869, c: 15.7013, H: 0.643788, uB: 0.01987, vB: 0.011922, AC: 0 }, B: "webkit", C: ["", "", "", "", "", "I", "r", "J", "D", "E", "F", "A", "B", "C", "K", "L", "G", "M", "N", "O", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "VB", "rB", "WB", "sB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "d", "hB", "iB", "jB", "kB", "lB", "mB", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "c", "H", "uB", "vB", "AC"], E: "Chrome", F: { "0": 1364428800, "1": 1369094400, "2": 1374105600, "3": 1376956800, "4": 1384214400, "5": 1389657600, "6": 1392940800, "7": 1397001600, "8": 1400544e3, "9": 1405468800, I: 1264377600, r: 1274745600, J: 1283385600, D: 1287619200, E: 1291248e3, F: 1296777600, A: 1299542400, B: 1303862400, C: 1307404800, K: 1312243200, L: 1316131200, G: 1316131200, M: 1319500800, N: 1323734400, O: 1328659200, s: 1332892800, t: 133704e4, u: 1340668800, v: 1343692800, w: 1348531200, x: 1352246400, y: 1357862400, z: 1361404800, AB: 1409011200, BB: 141264e4, CB: 1416268800, DB: 1421798400, EB: 1425513600, FB: 1429401600, GB: 143208e4, HB: 1437523200, IB: 1441152e3, JB: 1444780800, KB: 1449014400, LB: 1453248e3, MB: 1456963200, NB: 1460592e3, OB: 1464134400, PB: 1469059200, QB: 1472601600, RB: 1476230400, SB: 1480550400, TB: 1485302400, UB: 1489017600, VB: 149256e4, rB: 1496707200, WB: 1500940800, sB: 1504569600, XB: 1508198400, YB: 1512518400, ZB: 1516752e3, aB: 1520294400, bB: 1523923200, cB: 1527552e3, dB: 1532390400, eB: 1536019200, fB: 1539648e3, gB: 1543968e3, d: 154872e4, hB: 1552348800, iB: 1555977600, jB: 1559606400, kB: 1564444800, lB: 1568073600, mB: 1571702400, P: 1575936e3, Q: 1580860800, R: 1586304e3, S: 1589846400, T: 1594684800, U: 1598313600, V: 1601942400, W: 1605571200, X: 1611014400, Y: 1614556800, Z: 1618272e3, a: 1621987200, b: 1626739200, e: 1630368e3, f: 1632268800, g: 1634601600, h: 1637020800, i: 1641340800, j: 1643673600, k: 1646092800, l: 1648512e3, m: 1650931200, n: 1653350400, o: 1655769600, p: 1659398400, q: 1661817600, c: 1664236800, H: 1666656e3, uB: null, vB: null, AC: null } }, E: { A: { I: 0, r: 8322e-6, J: 4656e-6, D: 4465e-6, E: 3974e-6, F: 3929e-6, A: 4425e-6, B: 4318e-6, C: 3801e-6, K: 0.023844, L: 0.11922, G: 0.027818, BC: 0, wB: 8692e-6, CC: 0.011922, DC: 456e-5, EC: 4283e-6, FC: 0.015896, xB: 7948e-6, nB: 0.01987, oB: 0.035766, yB: 0.313946, GC: 0.305998, HC: 0.051662, zB: 0.051662, "0B": 0.131142, "1B": 0.266258, "2B": 1.63331, pB: 0.49675, "3B": 0.071532, IC: 0, JC: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "BC", "wB", "I", "r", "CC", "J", "DC", "D", "EC", "E", "F", "FC", "A", "xB", "B", "nB", "C", "oB", "K", "yB", "L", "GC", "G", "HC", "zB", "0B", "1B", "2B", "pB", "3B", "IC", "JC", ""], E: "Safari", F: { BC: 1205798400, wB: 1226534400, I: 1244419200, r: 1275868800, CC: 131112e4, J: 1343174400, DC: 13824e5, D: 13824e5, EC: 1410998400, E: 1413417600, F: 1443657600, FC: 1458518400, A: 1474329600, xB: 1490572800, B: 1505779200, nB: 1522281600, C: 1537142400, oB: 1553472e3, K: 1568851200, yB: 1585008e3, L: 1600214400, GC: 1619395200, G: 1632096e3, HC: 1635292800, zB: 1639353600, "0B": 1647216e3, "1B": 1652745600, "2B": 1658275200, pB: 1662940800, "3B": 1666569600, IC: null, JC: null } }, F: { A: { "0": 4393e-6, "1": 7948e-6, "2": 4879e-6, "3": 4879e-6, "4": 3974e-6, "5": 5152e-6, "6": 5014e-6, "7": 9758e-6, "8": 4879e-6, "9": 3974e-6, F: 82e-4, B: 0.016581, C: 4317e-6, G: 685e-5, M: 685e-5, N: 685e-5, O: 5014e-6, s: 6015e-6, t: 4879e-6, u: 6597e-6, v: 6597e-6, w: 0.013434, x: 6702e-6, y: 6015e-6, z: 5595e-6, AB: 4283e-6, BB: 4367e-6, CB: 4534e-6, DB: 7948e-6, EB: 4227e-6, FB: 4418e-6, GB: 4161e-6, HB: 4227e-6, IB: 4725e-6, JB: 0.011922, KB: 8942e-6, LB: 4707e-6, MB: 4827e-6, NB: 4707e-6, OB: 4707e-6, PB: 4326e-6, QB: 8922e-6, RB: 0.014349, SB: 4425e-6, TB: 472e-5, UB: 4425e-6, VB: 4425e-6, WB: 472e-5, XB: 4532e-6, YB: 4566e-6, ZB: 0.02283, aB: 867e-5, bB: 4656e-6, cB: 4642e-6, dB: 3929e-6, eB: 944e-5, fB: 4293e-6, gB: 3929e-6, d: 4298e-6, hB: 0.096692, iB: 4201e-6, jB: 4141e-6, kB: 4257e-6, lB: 3939e-6, mB: 8236e-6, P: 3855e-6, Q: 3939e-6, R: 8514e-6, tB: 3939e-6, S: 3939e-6, T: 3702e-6, U: 0.011922, V: 3855e-6, W: 3855e-6, X: 3929e-6, Y: 7948e-6, Z: 0.405348, a: 0.862358, b: 0, KC: 685e-5, LC: 0, MC: 8392e-6, NC: 4706e-6, nB: 6229e-6, "4B": 4879e-6, OC: 8786e-6, oB: 472e-5 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "F", "KC", "LC", "MC", "NC", "B", "nB", "4B", "OC", "C", "oB", "G", "M", "N", "O", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "VB", "WB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "d", "hB", "iB", "jB", "kB", "lB", "mB", "P", "Q", "R", "tB", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "", "", ""], E: "Opera", F: { "0": 1422316800, "1": 1425945600, "2": 1430179200, "3": 1433808e3, "4": 1438646400, "5": 1442448e3, "6": 1445904e3, "7": 1449100800, "8": 1454371200, "9": 1457308800, F: 1150761600, KC: 1223424e3, LC: 1251763200, MC: 1267488e3, NC: 1277942400, B: 1292457600, nB: 1302566400, "4B": 1309219200, OC: 1323129600, C: 1323129600, oB: 1352073600, G: 1372723200, M: 1377561600, N: 1381104e3, O: 1386288e3, s: 1390867200, t: 1393891200, u: 1399334400, v: 1401753600, w: 1405987200, x: 1409616e3, y: 1413331200, z: 1417132800, AB: 146232e4, BB: 1465344e3, CB: 1470096e3, DB: 1474329600, EB: 1477267200, FB: 1481587200, GB: 1486425600, HB: 1490054400, IB: 1494374400, JB: 1498003200, KB: 1502236800, LB: 1506470400, MB: 1510099200, NB: 1515024e3, OB: 1517961600, PB: 1521676800, QB: 1525910400, RB: 1530144e3, SB: 1534982400, TB: 1537833600, UB: 1543363200, VB: 1548201600, WB: 1554768e3, XB: 1561593600, YB: 1566259200, ZB: 1570406400, aB: 1573689600, bB: 1578441600, cB: 1583971200, dB: 1587513600, eB: 1592956800, fB: 1595894400, gB: 1600128e3, d: 1603238400, hB: 161352e4, iB: 1612224e3, jB: 1616544e3, kB: 1619568e3, lB: 1623715200, mB: 1627948800, P: 1631577600, Q: 1633392e3, R: 1635984e3, tB: 1638403200, S: 1642550400, T: 1644969600, U: 1647993600, V: 1650412800, W: 1652745600, X: 1654646400, Y: 1657152e3, Z: 1660780800, a: 1663113600, b: 1668816e3 }, D: { F: "o", B: "o", C: "o", KC: "o", LC: "o", MC: "o", NC: "o", nB: "o", "4B": "o", OC: "o", oB: "o" } }, G: { A: { E: 0, wB: 0, PC: 0, "5B": 319488e-8, QC: 479232e-8, RC: 319488e-8, SC: 0.014377, TC: 479232e-8, UC: 0.0159744, VC: 0.0607028, WC: 319488e-8, XC: 0.0718849, YC: 0.0255591, ZC: 0.0223642, aC: 0.0223642, bC: 0.408945, cC: 0.0287539, dC: 958465e-8, eC: 0.0383386, fC: 0.119808, gC: 0.354632, hC: 0.773162, iC: 0.201278, zB: 0.28115, "0B": 0.351437, "1B": 0.800318, "2B": 6.71564, pB: 4.55111, "3B": 0.241214 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "wB", "PC", "5B", "QC", "RC", "SC", "E", "TC", "UC", "VC", "WC", "XC", "YC", "ZC", "aC", "bC", "cC", "dC", "eC", "fC", "gC", "hC", "iC", "zB", "0B", "1B", "2B", "pB", "3B", "", "", ""], E: "Safari on iOS", F: { wB: 1270252800, PC: 1283904e3, "5B": 1299628800, QC: 1331078400, RC: 1359331200, SC: 1394409600, E: 1410912e3, TC: 1413763200, UC: 1442361600, VC: 1458518400, WC: 1473724800, XC: 1490572800, YC: 1505779200, ZC: 1522281600, aC: 1537142400, bC: 1553472e3, cC: 1568851200, dC: 1572220800, eC: 1580169600, fC: 1585008e3, gC: 1600214400, hC: 1619395200, iC: 1632096e3, zB: 1639353600, "0B": 1647216e3, "1B": 1652659200, "2B": 1658275200, pB: 1662940800, "3B": 1666569600 } }, H: { A: { jC: 1.02708 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "jC", "", "", ""], E: "Opera Mini", F: { jC: 1426464e3 } }, I: { A: { qB: 0, I: 0.0223354, H: 0, kC: 0, lC: 0, mC: 0, nC: 0.0297805, "5B": 0.0893414, oC: 0, pC: 0.364811 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "kC", "lC", "mC", "qB", "I", "nC", "5B", "oC", "pC", "H", "", "", ""], E: "Android Browser", F: { kC: 1256515200, lC: 1274313600, mC: 1291593600, qB: 1298332800, I: 1318896e3, nC: 1341792e3, "5B": 1374624e3, oC: 1386547200, pC: 1401667200, H: 1666828800 } }, J: { A: { D: 0, A: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "D", "A", "", "", ""], E: "Blackberry Browser", F: { D: 1325376e3, A: 1359504e3 } }, K: { A: { A: 0, B: 0, C: 0, d: 0.0111391, nB: 0, "4B": 0, oB: 0 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "nB", "4B", "C", "oB", "d", "", "", ""], E: "Opera Mobile", F: { A: 1287100800, B: 1300752e3, nB: 1314835200, "4B": 1318291200, C: 1330300800, oB: 1349740800, d: 1666828800 }, D: { d: "webkit" } }, L: { A: { H: 40.2785 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "H", "", "", ""], E: "Chrome for Android", F: { H: 1666828800 } }, M: { A: { c: 0.283269 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "c", "", "", ""], E: "Firefox for Android", F: { c: 1666051200 } }, N: { A: { A: 0.0115934, B: 0.022664 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "", "", ""], E: "IE Mobile", F: { A: 1340150400, B: 1353456e3 } }, O: { A: { qC: 0.638862 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "qC", "", "", ""], E: "UC Browser for Android", F: { qC: 1634688e3 }, D: { qC: "webkit" } }, P: { A: { I: 0.146868, rC: 0.0103543, sC: 0.010304, tC: 0.0629436, uC: 0.0103584, vC: 0.0104443, xB: 0.0105043, wC: 0.0314718, xC: 0.0104906, yC: 0.052453, zC: 0.052453, "0C": 0.0314718, pB: 0.0944154, "1C": 0.157359, "2C": 2.15057, "3C": 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "I", "rC", "sC", "tC", "uC", "vC", "xB", "wC", "xC", "yC", "zC", "0C", "pB", "1C", "2C", "3C", "", "", ""], E: "Samsung Internet", F: { I: 1461024e3, rC: 1481846400, sC: 1509408e3, tC: 1528329600, uC: 1546128e3, vC: 1554163200, xB: 1567900800, wC: 1582588800, xC: 1593475200, yC: 1605657600, zC: 1618531200, "0C": 1629072e3, pB: 1640736e3, "1C": 1651708800, "2C": 1659657600, "3C": 1667260800 } }, Q: { A: { yB: 0.126567 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "yB", "", "", ""], E: "QQ Browser", F: { yB: 1663718400 } }, R: { A: { "4C": 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "4C", "", "", ""], E: "Baidu Browser", F: { "4C": 1663027200 } }, S: { A: { "5C": 0.042189 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "5C", "", "", ""], E: "KaiOS Browser", F: { "5C": 1527811200 } } };
30618
30620
  });
30619
30621
  var require_agents2 = __commonJSMin((exports, module2) => {
30620
30622
  "use strict";
@@ -30622,8 +30624,8 @@ var require_agents2 = __commonJSMin((exports, module2) => {
30622
30624
  var versions = require_browserVersions2().browserVersions;
30623
30625
  var agentsData = require_agents();
30624
30626
  function unpackBrowserVersions(versionsData) {
30625
- return Object.keys(versionsData).reduce((usage, version4) => {
30626
- usage[versions[version4]] = versionsData[version4];
30627
+ return Object.keys(versionsData).reduce((usage, version5) => {
30628
+ usage[versions[version5]] = versionsData[version5];
30627
30629
  return usage;
30628
30630
  }, {});
30629
30631
  }
@@ -30633,11 +30635,11 @@ var require_agents2 = __commonJSMin((exports, module2) => {
30633
30635
  if (entry === "A") {
30634
30636
  data.usage_global = unpackBrowserVersions(versionsData[entry]);
30635
30637
  } else if (entry === "C") {
30636
- data.versions = versionsData[entry].reduce((list, version4) => {
30637
- if (version4 === "") {
30638
+ data.versions = versionsData[entry].reduce((list, version5) => {
30639
+ if (version5 === "") {
30638
30640
  list.push(null);
30639
30641
  } else {
30640
- list.push(versions[version4]);
30642
+ list.push(versions[version5]);
30641
30643
  }
30642
30644
  return list;
30643
30645
  }, []);
@@ -30728,7 +30730,7 @@ var require_region = __commonJSMin((exports, module2) => {
30728
30730
  list[browsers[browser2]] = Object.keys(data).reduce((memo, key) => {
30729
30731
  let stats = data[key];
30730
30732
  if (key === "_") {
30731
- stats.split(" ").forEach((version4) => memo[version4] = null);
30733
+ stats.split(" ").forEach((version5) => memo[version5] = null);
30732
30734
  } else {
30733
30735
  memo[key] = stats;
30734
30736
  }
@@ -35022,7 +35024,7 @@ var require_compatRequire = __commonJSMin((exports) => {
35022
35024
  var require_constants = __commonJSMin((exports) => {
35023
35025
  "use strict";
35024
35026
  Object.defineProperty(exports, "__esModule", { value: true });
35025
- exports.PLUGIN_SCHEMAS = exports.INTERNAL_SERVER_PLUGINS = exports.INTERNAL_CLI_PLUGINS = exports.DEFAULT_SERVER_CONFIG = exports.OUTPUT_CONFIG_FILE = exports.CONFIG_FILE_EXTENSIONS = exports.CONFIG_CACHE_DIR = exports.SHARED_DIR = exports.SERVER_DIR = exports.API_DIR = exports.LOADABLE_STATS_FILE = exports.SERVER_RENDER_FUNCTION_NAME = exports.ENTRY_NAME_PATTERN = exports.SERVER_BUNDLE_DIRECTORY = exports.LAUNCH_EDITOR_ENDPOINT = exports.MAIN_ENTRY_NAME = exports.ROUTE_SPEC_FILE = exports.HMR_SOCK_PATH = void 0;
35027
+ exports.PLUGIN_SCHEMAS = exports.INTERNAL_SERVER_PLUGINS = exports.INTERNAL_CLI_PLUGINS = exports.ROUTE_MANIFEST = exports.ROUTE_MINIFEST_FILE = exports.DEFAULT_SERVER_CONFIG = exports.OUTPUT_CONFIG_FILE = exports.CONFIG_FILE_EXTENSIONS = exports.CONFIG_CACHE_DIR = exports.SHARED_DIR = exports.SERVER_DIR = exports.API_DIR = exports.LOADABLE_STATS_FILE = exports.SERVER_RENDER_FUNCTION_NAME = exports.ENTRY_NAME_PATTERN = exports.SERVER_BUNDLE_DIRECTORY = exports.LAUNCH_EDITOR_ENDPOINT = exports.MAIN_ENTRY_NAME = exports.ROUTE_SPEC_FILE = exports.HMR_SOCK_PATH = void 0;
35026
35028
  exports.HMR_SOCK_PATH = "/webpack-hmr";
35027
35029
  exports.ROUTE_SPEC_FILE = "route.json";
35028
35030
  exports.MAIN_ENTRY_NAME = "main";
@@ -35038,6 +35040,8 @@ var require_constants = __commonJSMin((exports) => {
35038
35040
  exports.CONFIG_FILE_EXTENSIONS = [".js", ".ts", ".ejs", ".mjs"];
35039
35041
  exports.OUTPUT_CONFIG_FILE = "modern.config.json";
35040
35042
  exports.DEFAULT_SERVER_CONFIG = "modern.server-runtime.config";
35043
+ exports.ROUTE_MINIFEST_FILE = "routes-manifest.json";
35044
+ exports.ROUTE_MANIFEST = `_MODERNJS_ROUTE_MANIFEST`;
35041
35045
  exports.INTERNAL_CLI_PLUGINS = {
35042
35046
  "@modern-js/app-tools": "@modern-js/app-tools/cli",
35043
35047
  "@modern-js/monorepo-tools": "@modern-js/monorepo-tools/cli",
@@ -35142,6 +35146,10 @@ var require_constants = __commonJSMin((exports) => {
35142
35146
  {
35143
35147
  target: "source.designSystem.supportStyledComponents",
35144
35148
  schema: { type: ["boolean"] }
35149
+ },
35150
+ {
35151
+ target: "designSystem",
35152
+ schema: { typeof: ["object"] }
35145
35153
  }
35146
35154
  ],
35147
35155
  "@modern-js/plugin-router": [
@@ -35855,7 +35863,7 @@ var require_watch = __commonJSMin((exports) => {
35855
35863
  };
35856
35864
  Object.defineProperty(exports, "__esModule", { value: true });
35857
35865
  exports.watch = exports.WatchChangeType = void 0;
35858
- var path3 = __importStar(__require("path"));
35866
+ var path4 = __importStar(__require("path"));
35859
35867
  var compiled_1 = require_compiled();
35860
35868
  exports.WatchChangeType = {
35861
35869
  ADD: "add",
@@ -35869,17 +35877,17 @@ var require_watch = __commonJSMin((exports) => {
35869
35877
  });
35870
35878
  watcher.on("ready", () => ready = true);
35871
35879
  watcher.on("change", async (filePath) => {
35872
- const changedFilePath = path3.resolve(filePath);
35880
+ const changedFilePath = path4.resolve(filePath);
35873
35881
  await runTask({ changedFilePath, changeType: exports.WatchChangeType.CHANGE });
35874
35882
  });
35875
35883
  watcher.on("add", async (filePath) => {
35876
- const changedFilePath = path3.resolve(filePath);
35884
+ const changedFilePath = path4.resolve(filePath);
35877
35885
  if (ready) {
35878
35886
  await runTask({ changedFilePath, changeType: exports.WatchChangeType.ADD });
35879
35887
  }
35880
35888
  });
35881
35889
  watcher.on("unlink", async (filePath) => {
35882
- const changedFilePath = path3.resolve(filePath);
35890
+ const changedFilePath = path4.resolve(filePath);
35883
35891
  await runTask({ changedFilePath, changeType: exports.WatchChangeType.UNLINK });
35884
35892
  });
35885
35893
  watcher.on("error", (err) => {
@@ -35946,11 +35954,11 @@ var require_getServerConfig = __commonJSMin((exports) => {
35946
35954
  };
35947
35955
  Object.defineProperty(exports, "__esModule", { value: true });
35948
35956
  exports.getServerConfig = void 0;
35949
- var path3 = __importStar(__require("path"));
35957
+ var path4 = __importStar(__require("path"));
35950
35958
  var constants_1 = require_constants();
35951
35959
  var findExists_1 = require_findExists();
35952
35960
  var getServerConfig = async (appDirectory, configFile) => {
35953
- const configFilePath = (0, findExists_1.findExists)(constants_1.CONFIG_FILE_EXTENSIONS.map((extension) => path3.resolve(appDirectory, `${configFile}${extension}`)));
35961
+ const configFilePath = (0, findExists_1.findExists)(constants_1.CONFIG_FILE_EXTENSIONS.map((extension) => path4.resolve(appDirectory, `${configFile}${extension}`)));
35954
35962
  return configFilePath;
35955
35963
  };
35956
35964
  exports.getServerConfig = getServerConfig;
@@ -36104,10 +36112,10 @@ var require_analyzeProject = __commonJSMin((exports) => {
36104
36112
  };
36105
36113
  Object.defineProperty(exports, "__esModule", { value: true });
36106
36114
  exports.isApiOnly = void 0;
36107
- var path3 = __importStar(__require("path"));
36115
+ var path4 = __importStar(__require("path"));
36108
36116
  var compiled_1 = require_compiled();
36109
36117
  var isApiOnly = async (appDirectory, entryDir) => {
36110
- const srcDir = path3.join(appDirectory, entryDir !== null && entryDir !== void 0 ? entryDir : "src");
36118
+ const srcDir = path4.join(appDirectory, entryDir !== null && entryDir !== void 0 ? entryDir : "src");
36111
36119
  const existSrc = await compiled_1.fs.pathExists(srcDir);
36112
36120
  const options3 = (0, compiled_1.minimist)(process.argv.slice(2));
36113
36121
  return !existSrc || Boolean(options3["api-only"]);
@@ -36289,9 +36297,10 @@ var require_routes = __commonJSMin((exports) => {
36289
36297
  return filename.slice(0, -extname.length);
36290
36298
  };
36291
36299
  exports.getPathWithoutExt = getPathWithoutExt;
36292
- var getRouteId = (componentPath, routesDir) => {
36300
+ var getRouteId = (componentPath, routesDir, entryName) => {
36293
36301
  const relativePath = (0, path_2.normalizeToPosixPath)(path_1.default.relative(routesDir, componentPath));
36294
- const id = (0, exports.getPathWithoutExt)(relativePath);
36302
+ const pathWithoutExt = (0, exports.getPathWithoutExt)(relativePath);
36303
+ const id = `${entryName}_${pathWithoutExt}`;
36295
36304
  return id;
36296
36305
  };
36297
36306
  exports.getRouteId = getRouteId;
@@ -61519,145 +61528,6 @@ var require_dotenv_expand2 = __commonJSMin((exports, module2) => {
61519
61528
  module2.exports = a;
61520
61529
  })();
61521
61530
  });
61522
- var require_browsers3 = __commonJSMin((exports, module2) => {
61523
- module2.exports = { A: "ie", B: "edge", C: "firefox", D: "chrome", E: "safari", F: "opera", G: "ios_saf", H: "op_mini", I: "android", J: "bb", K: "op_mob", L: "and_chr", M: "and_ff", N: "ie_mob", O: "and_uc", P: "samsung", Q: "and_qq", R: "baidu", S: "kaios" };
61524
- });
61525
- var require_browsers4 = __commonJSMin((exports, module2) => {
61526
- module2.exports.browsers = require_browsers3();
61527
- });
61528
- var require_browserVersions3 = __commonJSMin((exports, module2) => {
61529
- module2.exports = { "0": "30", "1": "31", "2": "32", "3": "33", "4": "34", "5": "35", "6": "36", "7": "37", "8": "38", "9": "39", A: "10", B: "11", C: "12", D: "7", E: "8", F: "9", G: "15", H: "104", I: "4", J: "6", K: "13", L: "14", M: "16", N: "17", O: "18", P: "79", Q: "80", R: "81", S: "83", T: "84", U: "85", V: "86", W: "87", X: "88", Y: "89", Z: "90", a: "101", b: "64", c: "91", d: "92", e: "93", f: "94", g: "95", h: "96", i: "97", j: "98", k: "99", l: "100", m: "102", n: "103", o: "5", p: "19", q: "20", r: "21", s: "22", t: "23", u: "24", v: "25", w: "26", x: "27", y: "28", z: "29", AB: "40", BB: "41", CB: "42", DB: "43", EB: "44", FB: "45", GB: "46", HB: "47", IB: "48", JB: "49", KB: "50", LB: "51", MB: "52", NB: "53", OB: "54", PB: "55", QB: "56", RB: "57", SB: "58", TB: "60", UB: "62", VB: "63", WB: "65", XB: "66", YB: "67", ZB: "68", aB: "69", bB: "70", cB: "71", dB: "72", eB: "73", fB: "74", gB: "75", hB: "76", iB: "77", jB: "78", kB: "11.1", lB: "12.1", mB: "16.0", nB: "3", oB: "59", pB: "61", qB: "82", rB: "105", sB: "3.2", tB: "10.1", uB: "15.2-15.3", vB: "15.4", wB: "15.5", xB: "11.5", yB: "4.2-4.3", zB: "5.5", "0B": "2", "1B": "3.5", "2B": "3.6", "3B": "106", "4B": "107", "5B": "3.1", "6B": "5.1", "7B": "6.1", "8B": "7.1", "9B": "9.1", AC: "13.1", BC: "14.1", CC: "15.1", DC: "15.6", EC: "TP", FC: "9.5-9.6", GC: "10.0-10.1", HC: "10.5", IC: "10.6", JC: "11.6", KC: "4.0-4.1", LC: "5.0-5.1", MC: "6.0-6.1", NC: "7.0-7.1", OC: "8.1-8.4", PC: "9.0-9.2", QC: "9.3", RC: "10.0-10.2", SC: "10.3", TC: "11.0-11.2", UC: "11.3-11.4", VC: "12.0-12.1", WC: "12.2-12.5", XC: "13.0-13.1", YC: "13.2", ZC: "13.3", aC: "13.4-13.7", bC: "14.0-14.4", cC: "14.5-14.8", dC: "15.0-15.1", eC: "all", fC: "2.1", gC: "2.2", hC: "2.3", iC: "4.1", jC: "4.4", kC: "4.4.3-4.4.4", lC: "12.12", mC: "5.0-5.4", nC: "6.2-6.4", oC: "7.2-7.4", pC: "8.2", qC: "9.2", rC: "11.1-11.2", sC: "12.0", tC: "13.0", uC: "14.0", vC: "15.0", wC: "17.0", xC: "10.4", yC: "7.12", zC: "2.5" };
61530
- });
61531
- var require_browserVersions4 = __commonJSMin((exports, module2) => {
61532
- module2.exports.browserVersions = require_browserVersions3();
61533
- });
61534
- var require_agents3 = __commonJSMin((exports, module2) => {
61535
- module2.exports = { A: { A: { J: 0.0131217, D: 621152e-8, E: 0.022212, F: 0.059232, A: 556471e-8, B: 0.466452, zB: 9298e-6 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "zB", "J", "D", "E", "F", "A", "B", "", "", ""], E: "IE", F: { zB: 962323200, J: 998870400, D: 1161129600, E: 1237420800, F: 1300060800, A: 1346716800, B: 1381968e3 } }, B: { A: { C: 3702e-6, K: 4267e-6, L: 4268e-6, G: 7404e-6, M: 3702e-6, N: 7404e-6, O: 0.022212, P: 0, Q: 4298e-6, R: 944e-5, S: 4043e-6, T: 3702e-6, U: 3702e-6, V: 3801e-6, W: 7404e-6, X: 4318e-6, Y: 3702e-6, Z: 4118e-6, c: 3939e-6, d: 7404e-6, e: 4118e-6, f: 3939e-6, g: 3801e-6, h: 7404e-6, i: 7404e-6, j: 7404e-6, k: 0.011106, l: 0.014808, a: 0.066636, m: 0.12957, n: 3.72421, H: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "C", "K", "L", "G", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "a", "m", "n", "H", "", "", ""], E: "Edge", F: { C: 1438128e3, K: 1447286400, L: 1470096e3, G: 1491868800, M: 1508198400, N: 1525046400, O: 1542067200, P: 1579046400, Q: 1581033600, R: 1586736e3, S: 1590019200, T: 1594857600, U: 1598486400, V: 1602201600, W: 1605830400, X: 161136e4, Y: 1614816e3, Z: 1618358400, c: 1622073600, d: 1626912e3, e: 1630627200, f: 1632441600, g: 1634774400, h: 1637539200, i: 1641427200, j: 1643932800, k: 1646265600, l: 1649635200, a: 1651190400, m: 1653955200, n: 1655942400, H: 1659657600 }, D: { C: "ms", K: "ms", L: "ms", G: "ms", M: "ms", N: "ms", O: "ms" } }, C: { A: { "0": 8322e-6, "1": 8928e-6, "2": 4471e-6, "3": 9284e-6, "4": 4707e-6, "5": 9076e-6, "6": 7404e-6, "7": 4783e-6, "8": 4271e-6, "9": 4783e-6, "0B": 4118e-6, nB: 4271e-6, I: 0.01851, o: 4879e-6, J: 0.020136, D: 5725e-6, E: 4525e-6, F: 533e-5, A: 4283e-6, B: 7404e-6, C: 4471e-6, K: 4486e-6, L: 453e-5, G: 8322e-6, M: 4417e-6, N: 4425e-6, O: 4161e-6, p: 4443e-6, q: 4283e-6, r: 8322e-6, s: 0.013698, t: 4161e-6, u: 8786e-6, v: 4118e-6, w: 4317e-6, x: 4393e-6, y: 4418e-6, z: 8834e-6, AB: 487e-5, BB: 5029e-6, CB: 47e-4, DB: 0.09255, EB: 7404e-6, FB: 3867e-6, GB: 4525e-6, HB: 4293e-6, IB: 3702e-6, JB: 4538e-6, KB: 8282e-6, LB: 0.011601, MB: 0.059232, NB: 0.011601, OB: 7602e-6, PB: 3801e-6, QB: 7404e-6, RB: 0.011601, SB: 3939e-6, oB: 3702e-6, TB: 3801e-6, pB: 4356e-6, UB: 4425e-6, VB: 8322e-6, b: 415e-5, WB: 4267e-6, XB: 3801e-6, YB: 4267e-6, ZB: 7404e-6, aB: 415e-5, bB: 4293e-6, cB: 4425e-6, dB: 3702e-6, eB: 415e-5, fB: 415e-5, gB: 4318e-6, hB: 4356e-6, iB: 3702e-6, jB: 0.03702, P: 3702e-6, Q: 3702e-6, R: 0.014808, qB: 3702e-6, S: 3702e-6, T: 3702e-6, U: 4268e-6, V: 3801e-6, W: 7404e-6, X: 0.011106, Y: 7404e-6, Z: 7404e-6, c: 0.085146, d: 3801e-6, e: 3702e-6, f: 0.022212, g: 0.011106, h: 7404e-6, i: 7404e-6, j: 7404e-6, k: 0.022212, l: 0.029616, a: 0.12957, m: 2.01019, n: 0.248034, H: 0, rB: 0, "1B": 8786e-6, "2B": 487e-5 }, B: "moz", C: ["0B", "nB", "1B", "2B", "I", "o", "J", "D", "E", "F", "A", "B", "C", "K", "L", "G", "M", "N", "O", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "oB", "TB", "pB", "UB", "VB", "b", "WB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "jB", "P", "Q", "R", "qB", "S", "T", "U", "V", "W", "X", "Y", "Z", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "a", "m", "n", "H", "rB", ""], E: "Firefox", F: { "0": 1402358400, "1": 1405987200, "2": 1409616e3, "3": 1413244800, "4": 1417392e3, "5": 1421107200, "6": 1424736e3, "7": 1428278400, "8": 1431475200, "9": 1435881600, "0B": 1161648e3, nB: 1213660800, "1B": 124632e4, "2B": 1264032e3, I: 1300752e3, o: 1308614400, J: 1313452800, D: 1317081600, E: 1317081600, F: 1320710400, A: 1324339200, B: 1327968e3, C: 1331596800, K: 1335225600, L: 1338854400, G: 1342483200, M: 1346112e3, N: 1349740800, O: 1353628800, p: 1357603200, q: 1361232e3, r: 1364860800, s: 1368489600, t: 1372118400, u: 1375747200, v: 1379376e3, w: 1386633600, x: 1391472e3, y: 1395100800, z: 1398729600, AB: 1439251200, BB: 144288e4, CB: 1446508800, DB: 1450137600, EB: 1453852800, FB: 1457395200, GB: 1461628800, HB: 1465257600, IB: 1470096e3, JB: 1474329600, KB: 1479168e3, LB: 1485216e3, MB: 1488844800, NB: 149256e4, OB: 1497312e3, PB: 1502150400, QB: 1506556800, RB: 1510617600, SB: 1516665600, oB: 1520985600, TB: 1525824e3, pB: 1529971200, UB: 1536105600, VB: 1540252800, b: 1544486400, WB: 154872e4, XB: 1552953600, YB: 1558396800, ZB: 1562630400, aB: 1567468800, bB: 1571788800, cB: 1575331200, dB: 1578355200, eB: 1581379200, fB: 1583798400, gB: 1586304e3, hB: 1588636800, iB: 1591056e3, jB: 1593475200, P: 1595894400, Q: 1598313600, R: 1600732800, qB: 1603152e3, S: 1605571200, T: 1607990400, U: 1611619200, V: 1614038400, W: 1616457600, X: 1618790400, Y: 1622505600, Z: 1626134400, c: 1628553600, d: 1630972800, e: 1633392e3, f: 1635811200, g: 1638835200, h: 1641859200, i: 1644364800, j: 1646697600, k: 1649116800, l: 1651536e3, a: 1653955200, m: 1656374400, n: 1658793600, H: null, rB: null } }, D: { A: { "0": 8322e-6, "1": 8596e-6, "2": 4566e-6, "3": 4118e-6, "4": 7404e-6, "5": 3702e-6, "6": 4335e-6, "7": 4464e-6, "8": 0.01851, "9": 3867e-6, I: 4706e-6, o: 4879e-6, J: 4879e-6, D: 5591e-6, E: 5591e-6, F: 5591e-6, A: 4534e-6, B: 4464e-6, C: 0.010424, K: 83e-4, L: 4706e-6, G: 0.015087, M: 4393e-6, N: 4393e-6, O: 8652e-6, p: 8322e-6, q: 4393e-6, r: 4317e-6, s: 7404e-6, t: 8786e-6, u: 3939e-6, v: 4461e-6, w: 4141e-6, x: 4326e-6, y: 47e-4, z: 4538e-6, AB: 0.014808, BB: 3702e-6, CB: 7734e-6, DB: 3702e-6, EB: 3867e-6, FB: 3867e-6, GB: 3867e-6, HB: 0.011106, IB: 0.01851, JB: 0.051828, KB: 3867e-6, LB: 3801e-6, MB: 7404e-6, NB: 0.011106, OB: 3867e-6, PB: 3702e-6, QB: 0.033318, RB: 3702e-6, SB: 3702e-6, oB: 3702e-6, TB: 0.011106, pB: 0.011106, UB: 7404e-6, VB: 0.011106, b: 3702e-6, WB: 0.011106, XB: 0.025914, YB: 0.011106, ZB: 7404e-6, aB: 0.066636, bB: 0.033318, cB: 0.014808, dB: 0.022212, eB: 7404e-6, fB: 0.040722, gB: 0.048126, hB: 0.05553, iB: 0.014808, jB: 0.033318, P: 0.173994, Q: 0.051828, R: 0.03702, S: 0.096252, T: 0.044424, U: 0.07404, V: 0.066636, W: 0.085146, X: 0.022212, Y: 0.044424, Z: 0.029616, c: 0.059232, d: 0.059232, e: 0.044424, f: 0.048126, g: 0.029616, h: 0.085146, i: 0.088848, j: 0.103656, k: 0.103656, l: 0.16659, a: 0.25914, m: 1.23647, n: 18.8913, H: 0.022212, rB: 0.01851, "3B": 7404e-6, "4B": 0 }, B: "webkit", C: ["", "", "", "", "I", "o", "J", "D", "E", "F", "A", "B", "C", "K", "L", "G", "M", "N", "O", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "oB", "TB", "pB", "UB", "VB", "b", "WB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "jB", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "a", "m", "n", "H", "rB", "3B", "4B"], E: "Chrome", F: { "0": 1376956800, "1": 1384214400, "2": 1389657600, "3": 1392940800, "4": 1397001600, "5": 1400544e3, "6": 1405468800, "7": 1409011200, "8": 141264e4, "9": 1416268800, I: 1264377600, o: 1274745600, J: 1283385600, D: 1287619200, E: 1291248e3, F: 1296777600, A: 1299542400, B: 1303862400, C: 1307404800, K: 1312243200, L: 1316131200, G: 1316131200, M: 1319500800, N: 1323734400, O: 1328659200, p: 1332892800, q: 133704e4, r: 1340668800, s: 1343692800, t: 1348531200, u: 1352246400, v: 1357862400, w: 1361404800, x: 1364428800, y: 1369094400, z: 1374105600, AB: 1421798400, BB: 1425513600, CB: 1429401600, DB: 143208e4, EB: 1437523200, FB: 1441152e3, GB: 1444780800, HB: 1449014400, IB: 1453248e3, JB: 1456963200, KB: 1460592e3, LB: 1464134400, MB: 1469059200, NB: 1472601600, OB: 1476230400, PB: 1480550400, QB: 1485302400, RB: 1489017600, SB: 149256e4, oB: 1496707200, TB: 1500940800, pB: 1504569600, UB: 1508198400, VB: 1512518400, b: 1516752e3, WB: 1520294400, XB: 1523923200, YB: 1527552e3, ZB: 1532390400, aB: 1536019200, bB: 1539648e3, cB: 1543968e3, dB: 154872e4, eB: 1552348800, fB: 1555977600, gB: 1559606400, hB: 1564444800, iB: 1568073600, jB: 1571702400, P: 1575936e3, Q: 1580860800, R: 1586304e3, S: 1589846400, T: 1594684800, U: 1598313600, V: 1601942400, W: 1605571200, X: 1611014400, Y: 1614556800, Z: 1618272e3, c: 1621987200, d: 1626739200, e: 1630368e3, f: 1632268800, g: 1634601600, h: 1637020800, i: 1641340800, j: 1643673600, k: 1646092800, l: 1648512e3, a: 1650931200, m: 1653350400, n: 1655769600, H: 1659398400, rB: null, "3B": null, "4B": null } }, E: { A: { I: 0, o: 8322e-6, J: 4656e-6, D: 4465e-6, E: 4356e-6, F: 4891e-6, A: 4425e-6, B: 4318e-6, C: 3801e-6, K: 0.029616, L: 0.125868, G: 0.03702, "5B": 0, sB: 8692e-6, "6B": 7404e-6, "7B": 456e-5, "8B": 4283e-6, "9B": 0.014808, tB: 7404e-6, kB: 0.022212, lB: 0.040722, AC: 0.251736, BC: 0.359094, CC: 0.066636, uB: 0.066636, vB: 0.251736, wB: 1.77696, DC: 0.077742, mB: 0.011106, EC: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "5B", "sB", "I", "o", "6B", "J", "7B", "D", "8B", "E", "F", "9B", "A", "tB", "B", "kB", "C", "lB", "K", "AC", "L", "BC", "G", "CC", "uB", "vB", "wB", "DC", "mB", "EC", ""], E: "Safari", F: { "5B": 1205798400, sB: 1226534400, I: 1244419200, o: 1275868800, "6B": 131112e4, J: 1343174400, "7B": 13824e5, D: 13824e5, "8B": 1410998400, E: 1413417600, F: 1443657600, "9B": 1458518400, A: 1474329600, tB: 1490572800, B: 1505779200, kB: 1522281600, C: 1537142400, lB: 1553472e3, K: 1568851200, AC: 1585008e3, L: 1600214400, BC: 1619395200, G: 1632096e3, CC: 1635292800, uB: 1639353600, vB: 1647216e3, wB: 1652745600, DC: 1658275200, mB: null, EC: null } }, F: { A: { "0": 4879e-6, "1": 3702e-6, "2": 5152e-6, "3": 5014e-6, "4": 9758e-6, "5": 4879e-6, "6": 3702e-6, "7": 4283e-6, "8": 4367e-6, "9": 4534e-6, F: 82e-4, B: 0.016581, C: 4317e-6, G: 685e-5, M: 685e-5, N: 685e-5, O: 5014e-6, p: 6015e-6, q: 4879e-6, r: 6597e-6, s: 6597e-6, t: 0.013434, u: 6702e-6, v: 6015e-6, w: 5595e-6, x: 4393e-6, y: 7404e-6, z: 4879e-6, AB: 7404e-6, BB: 4227e-6, CB: 4418e-6, DB: 4161e-6, EB: 4227e-6, FB: 4725e-6, GB: 0.011106, HB: 8942e-6, IB: 4707e-6, JB: 4827e-6, KB: 4707e-6, LB: 4707e-6, MB: 4326e-6, NB: 8922e-6, OB: 0.014349, PB: 4425e-6, QB: 472e-5, RB: 4425e-6, SB: 4425e-6, TB: 472e-5, UB: 4532e-6, VB: 4566e-6, b: 0.02283, WB: 867e-5, XB: 4656e-6, YB: 4642e-6, ZB: 3867e-6, aB: 944e-5, bB: 4293e-6, cB: 3867e-6, dB: 4298e-6, eB: 0.096692, fB: 4201e-6, gB: 4141e-6, hB: 4257e-6, iB: 3939e-6, jB: 8236e-6, P: 3702e-6, Q: 3939e-6, R: 8514e-6, qB: 3939e-6, S: 3939e-6, T: 3702e-6, U: 0.025914, V: 0.011106, W: 0.029616, X: 0.681168, Y: 0.266544, Z: 0, FC: 685e-5, GC: 0, HC: 8392e-6, IC: 4706e-6, kB: 6229e-6, xB: 4879e-6, JC: 8786e-6, lB: 472e-5 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "F", "FC", "GC", "HC", "IC", "B", "kB", "xB", "JC", "C", "lB", "G", "M", "N", "O", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "VB", "b", "WB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "jB", "P", "Q", "R", "qB", "S", "T", "U", "V", "W", "X", "Y", "Z", "", ""], E: "Opera", F: { "0": 1433808e3, "1": 1438646400, "2": 1442448e3, "3": 1445904e3, "4": 1449100800, "5": 1454371200, "6": 1457308800, "7": 146232e4, "8": 1465344e3, "9": 1470096e3, F: 1150761600, FC: 1223424e3, GC: 1251763200, HC: 1267488e3, IC: 1277942400, B: 1292457600, kB: 1302566400, xB: 1309219200, JC: 1323129600, C: 1323129600, lB: 1352073600, G: 1372723200, M: 1377561600, N: 1381104e3, O: 1386288e3, p: 1390867200, q: 1393891200, r: 1399334400, s: 1401753600, t: 1405987200, u: 1409616e3, v: 1413331200, w: 1417132800, x: 1422316800, y: 1425945600, z: 1430179200, AB: 1474329600, BB: 1477267200, CB: 1481587200, DB: 1486425600, EB: 1490054400, FB: 1494374400, GB: 1498003200, HB: 1502236800, IB: 1506470400, JB: 1510099200, KB: 1515024e3, LB: 1517961600, MB: 1521676800, NB: 1525910400, OB: 1530144e3, PB: 1534982400, QB: 1537833600, RB: 1543363200, SB: 1548201600, TB: 1554768e3, UB: 1561593600, VB: 1566259200, b: 1570406400, WB: 1573689600, XB: 1578441600, YB: 1583971200, ZB: 1587513600, aB: 1592956800, bB: 1595894400, cB: 1600128e3, dB: 1603238400, eB: 161352e4, fB: 1612224e3, gB: 1616544e3, hB: 1619568e3, iB: 1623715200, jB: 1627948800, P: 1631577600, Q: 1633392e3, R: 1635984e3, qB: 1638403200, S: 1642550400, T: 1644969600, U: 1647993600, V: 1650412800, W: 1652745600, X: 1654646400, Y: 1657152e3, Z: null }, D: { F: "o", B: "o", C: "o", FC: "o", GC: "o", HC: "o", IC: "o", kB: "o", xB: "o", JC: "o", lB: "o" } }, G: { A: { E: 0, sB: 0, KC: 0, yB: 311971e-8, LC: 467956e-8, MC: 467956e-8, NC: 0.0140387, OC: 623942e-8, PC: 0.0187183, QC: 0.074873, RC: 779927e-8, SC: 0.0873518, TC: 0.0421161, UC: 0.0311971, VC: 0.0296372, WC: 0.547509, XC: 0.0233978, YC: 0.0124788, ZC: 0.0545949, aC: 0.180943, bC: 0.508512, cC: 1.15273, dC: 0.355647, uB: 0.608343, vB: 1.01079, wB: 10.4105, mB: 0.0701934 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "sB", "KC", "yB", "LC", "MC", "NC", "E", "OC", "PC", "QC", "RC", "SC", "TC", "UC", "VC", "WC", "XC", "YC", "ZC", "aC", "bC", "cC", "dC", "uB", "vB", "wB", "mB", "", ""], E: "Safari on iOS", F: { sB: 1270252800, KC: 1283904e3, yB: 1299628800, LC: 1331078400, MC: 1359331200, NC: 1394409600, E: 1410912e3, OC: 1413763200, PC: 1442361600, QC: 1458518400, RC: 1473724800, SC: 1490572800, TC: 1505779200, UC: 1522281600, VC: 1537142400, WC: 1553472e3, XC: 1568851200, YC: 1572220800, ZC: 1580169600, aC: 1585008e3, bC: 1600214400, cC: 1619395200, dC: 1632096e3, uB: 1639353600, vB: 1647216e3, wB: 1652659200, mB: null } }, H: { A: { eC: 0.954006 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "eC", "", "", ""], E: "Opera Mini", F: { eC: 1426464e3 } }, I: { A: { nB: 0, I: 0.0241567, H: 0, fC: 0, gC: 0, hC: 0, iC: 0.0362351, yB: 0.066431, jC: 0, kC: 0.314037 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "fC", "gC", "hC", "nB", "I", "iC", "yB", "jC", "kC", "H", "", "", ""], E: "Android Browser", F: { fC: 1256515200, gC: 1274313600, hC: 1291593600, nB: 1298332800, I: 1318896e3, iC: 1341792e3, yB: 1374624e3, jC: 1386547200, kC: 1401667200, H: 1659484800 } }, J: { A: { D: 0, A: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "D", "A", "", "", ""], E: "Blackberry Browser", F: { D: 1325376e3, A: 1359504e3 } }, K: { A: { A: 0, B: 0, C: 0, b: 0.0111391, kB: 0, xB: 0, lB: 0 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "kB", "xB", "C", "lB", "b", "", "", ""], E: "Opera Mobile", F: { A: 1287100800, B: 1300752e3, kB: 1314835200, xB: 1318291200, C: 1330300800, lB: 1349740800, b: 1613433600 }, D: { b: "webkit" } }, L: { A: { H: 42.8703 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "H", "", "", ""], E: "Chrome for Android", F: { H: 1659484800 } }, M: { A: { a: 0.3149 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "a", "", "", ""], E: "Firefox for Android", F: { a: 1653955200 } }, N: { A: { A: 0.0115934, B: 0.022664 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "", "", ""], E: "IE Mobile", F: { A: 1340150400, B: 1353456e3 } }, O: { A: { lC: 1.01398 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "lC", "", "", ""], E: "UC Browser for Android", F: { lC: 1471392e3 }, D: { lC: "webkit" } }, P: { A: { I: 0.20822, mC: 0.0103543, nC: 0.010304, oC: 0.0728769, pC: 0.0103584, qC: 0.010411, tB: 0.0105043, rC: 0.0416439, sC: 0.020822, tC: 0.0832878, uC: 0.0728769, vC: 0.0832878, mB: 0.166576, wC: 2.30083 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "I", "mC", "nC", "oC", "pC", "qC", "tB", "rC", "sC", "tC", "uC", "vC", "mB", "wC", "", "", ""], E: "Samsung Internet", F: { I: 1461024e3, mC: 1481846400, nC: 1509408e3, oC: 1528329600, pC: 1546128e3, qC: 1554163200, tB: 1567900800, rC: 1582588800, sC: 1593475200, tC: 1605657600, uC: 1618531200, vC: 1629072e3, mB: 1640736e3, wC: 1651708800 } }, Q: { A: { xC: 0.239324 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "xC", "", "", ""], E: "QQ Browser", F: { xC: 1589846400 } }, R: { A: { yC: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "yC", "", "", ""], E: "Baidu Browser", F: { yC: 1491004800 } }, S: { A: { zC: 0.03149 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "zC", "", "", ""], E: "KaiOS Browser", F: { zC: 1527811200 } } };
61536
- });
61537
- var require_agents4 = __commonJSMin((exports, module2) => {
61538
- "use strict";
61539
- var browsers = require_browsers4().browsers;
61540
- var versions = require_browserVersions4().browserVersions;
61541
- var agentsData = require_agents3();
61542
- function unpackBrowserVersions(versionsData) {
61543
- return Object.keys(versionsData).reduce((usage, version4) => {
61544
- usage[versions[version4]] = versionsData[version4];
61545
- return usage;
61546
- }, {});
61547
- }
61548
- module2.exports.agents = Object.keys(agentsData).reduce((map, key) => {
61549
- let versionsData = agentsData[key];
61550
- map[browsers[key]] = Object.keys(versionsData).reduce((data, entry) => {
61551
- if (entry === "A") {
61552
- data.usage_global = unpackBrowserVersions(versionsData[entry]);
61553
- } else if (entry === "C") {
61554
- data.versions = versionsData[entry].reduce((list, version4) => {
61555
- if (version4 === "") {
61556
- list.push(null);
61557
- } else {
61558
- list.push(versions[version4]);
61559
- }
61560
- return list;
61561
- }, []);
61562
- } else if (entry === "D") {
61563
- data.prefix_exceptions = unpackBrowserVersions(versionsData[entry]);
61564
- } else if (entry === "E") {
61565
- data.browser = versionsData[entry];
61566
- } else if (entry === "F") {
61567
- data.release_date = Object.keys(versionsData[entry]).reduce((map2, key2) => {
61568
- map2[versions[key2]] = versionsData[entry][key2];
61569
- return map2;
61570
- }, {});
61571
- } else {
61572
- data.prefix = versionsData[entry];
61573
- }
61574
- return data;
61575
- }, {});
61576
- return map;
61577
- }, {});
61578
- });
61579
- var require_statuses2 = __commonJSMin((exports, module2) => {
61580
- module2.exports = {
61581
- 1: "ls",
61582
- 2: "rec",
61583
- 3: "pr",
61584
- 4: "cr",
61585
- 5: "wd",
61586
- 6: "other",
61587
- 7: "unoff"
61588
- };
61589
- });
61590
- var require_supported2 = __commonJSMin((exports, module2) => {
61591
- module2.exports = {
61592
- y: 1 << 0,
61593
- n: 1 << 1,
61594
- a: 1 << 2,
61595
- p: 1 << 3,
61596
- u: 1 << 4,
61597
- x: 1 << 5,
61598
- d: 1 << 6
61599
- };
61600
- });
61601
- var require_feature2 = __commonJSMin((exports, module2) => {
61602
- "use strict";
61603
- var statuses = require_statuses2();
61604
- var supported = require_supported2();
61605
- var browsers = require_browsers4().browsers;
61606
- var versions = require_browserVersions4().browserVersions;
61607
- var MATH2LOG = Math.log(2);
61608
- function unpackSupport(cipher) {
61609
- let stats = Object.keys(supported).reduce((list, support) => {
61610
- if (cipher & supported[support])
61611
- list.push(support);
61612
- return list;
61613
- }, []);
61614
- let notes = cipher >> 7;
61615
- let notesArray = [];
61616
- while (notes) {
61617
- let note = Math.floor(Math.log(notes) / MATH2LOG) + 1;
61618
- notesArray.unshift(`#${note}`);
61619
- notes -= Math.pow(2, note - 1);
61620
- }
61621
- return stats.concat(notesArray).join(" ");
61622
- }
61623
- function unpackFeature(packed) {
61624
- let unpacked = { status: statuses[packed.B], title: packed.C };
61625
- unpacked.stats = Object.keys(packed.A).reduce((browserStats, key) => {
61626
- let browser2 = packed.A[key];
61627
- browserStats[browsers[key]] = Object.keys(browser2).reduce((stats, support) => {
61628
- let packedVersions = browser2[support].split(" ");
61629
- let unpacked2 = unpackSupport(support);
61630
- packedVersions.forEach((v) => stats[versions[v]] = unpacked2);
61631
- return stats;
61632
- }, {});
61633
- return browserStats;
61634
- }, {});
61635
- return unpacked;
61636
- }
61637
- module2.exports = unpackFeature;
61638
- module2.exports.default = unpackFeature;
61639
- });
61640
- var require_region2 = __commonJSMin((exports, module2) => {
61641
- "use strict";
61642
- var browsers = require_browsers4().browsers;
61643
- function unpackRegion(packed) {
61644
- return Object.keys(packed).reduce((list, browser2) => {
61645
- let data = packed[browser2];
61646
- list[browsers[browser2]] = Object.keys(data).reduce((memo, key) => {
61647
- let stats = data[key];
61648
- if (key === "_") {
61649
- stats.split(" ").forEach((version4) => memo[version4] = null);
61650
- } else {
61651
- memo[key] = stats;
61652
- }
61653
- return memo;
61654
- }, {});
61655
- return list;
61656
- }, {});
61657
- }
61658
- module2.exports = unpackRegion;
61659
- module2.exports.default = unpackRegion;
61660
- });
61661
61531
  var require_browserslist2 = __commonJSMin((exports, module2) => {
61662
61532
  (() => {
61663
61533
  var e = { 923: (e2) => {
@@ -62839,13 +62709,13 @@ var require_browserslist2 = __commonJSMin((exports, module2) => {
62839
62709
  e2.exports = webpackEmptyContext;
62840
62710
  }, 768: (e2) => {
62841
62711
  "use strict";
62842
- e2.exports = require_agents4();
62712
+ e2.exports = require_agents2();
62843
62713
  }, 711: (e2) => {
62844
62714
  "use strict";
62845
- e2.exports = require_feature2();
62715
+ e2.exports = require_feature();
62846
62716
  }, 225: (e2) => {
62847
62717
  "use strict";
62848
- e2.exports = require_region2();
62718
+ e2.exports = require_region();
62849
62719
  }, 147: (e2) => {
62850
62720
  "use strict";
62851
62721
  e2.exports = __require("fs");
@@ -66742,7 +66612,7 @@ var require_watch2 = __commonJSMin((exports) => {
66742
66612
  };
66743
66613
  Object.defineProperty(exports, "__esModule", { value: true });
66744
66614
  exports.watch = exports.WatchChangeType = void 0;
66745
- var path3 = __importStar(__require("path"));
66615
+ var path4 = __importStar(__require("path"));
66746
66616
  var compiled_1 = require_compiled2();
66747
66617
  exports.WatchChangeType = {
66748
66618
  ADD: "add",
@@ -66756,17 +66626,17 @@ var require_watch2 = __commonJSMin((exports) => {
66756
66626
  });
66757
66627
  watcher.on("ready", () => ready = true);
66758
66628
  watcher.on("change", async (filePath) => {
66759
- const changedFilePath = path3.resolve(filePath);
66629
+ const changedFilePath = path4.resolve(filePath);
66760
66630
  await runTask({ changedFilePath, changeType: exports.WatchChangeType.CHANGE });
66761
66631
  });
66762
66632
  watcher.on("add", async (filePath) => {
66763
- const changedFilePath = path3.resolve(filePath);
66633
+ const changedFilePath = path4.resolve(filePath);
66764
66634
  if (ready) {
66765
66635
  await runTask({ changedFilePath, changeType: exports.WatchChangeType.ADD });
66766
66636
  }
66767
66637
  });
66768
66638
  watcher.on("unlink", async (filePath) => {
66769
- const changedFilePath = path3.resolve(filePath);
66639
+ const changedFilePath = path4.resolve(filePath);
66770
66640
  await runTask({ changedFilePath, changeType: exports.WatchChangeType.UNLINK });
66771
66641
  });
66772
66642
  watcher.on("error", (err) => {
@@ -66833,11 +66703,11 @@ var require_getServerConfig2 = __commonJSMin((exports) => {
66833
66703
  };
66834
66704
  Object.defineProperty(exports, "__esModule", { value: true });
66835
66705
  exports.getServerConfig = void 0;
66836
- var path3 = __importStar(__require("path"));
66706
+ var path4 = __importStar(__require("path"));
66837
66707
  var constants_1 = require_constants3();
66838
66708
  var findExists_1 = require_findExists2();
66839
66709
  var getServerConfig = async (appDirectory, configFile) => {
66840
- const configFilePath = (0, findExists_1.findExists)(constants_1.CONFIG_FILE_EXTENSIONS.map((extension) => path3.resolve(appDirectory, `${configFile}${extension}`)));
66710
+ const configFilePath = (0, findExists_1.findExists)(constants_1.CONFIG_FILE_EXTENSIONS.map((extension) => path4.resolve(appDirectory, `${configFile}${extension}`)));
66841
66711
  return configFilePath;
66842
66712
  };
66843
66713
  exports.getServerConfig = getServerConfig;
@@ -66991,10 +66861,10 @@ var require_analyzeProject2 = __commonJSMin((exports) => {
66991
66861
  };
66992
66862
  Object.defineProperty(exports, "__esModule", { value: true });
66993
66863
  exports.isApiOnly = void 0;
66994
- var path3 = __importStar(__require("path"));
66864
+ var path4 = __importStar(__require("path"));
66995
66865
  var compiled_1 = require_compiled2();
66996
66866
  var isApiOnly = async (appDirectory, entryDir) => {
66997
- const srcDir = path3.join(appDirectory, entryDir !== null && entryDir !== void 0 ? entryDir : "src");
66867
+ const srcDir = path4.join(appDirectory, entryDir !== null && entryDir !== void 0 ? entryDir : "src");
66998
66868
  const existSrc = await compiled_1.fs.pathExists(srcDir);
66999
66869
  const options3 = (0, compiled_1.minimist)(process.argv.slice(2));
67000
66870
  return !existSrc || Boolean(options3["api-only"]);
@@ -67368,15 +67238,15 @@ var require_nodeRequire = __commonJSMin((exports) => {
67368
67238
  value: true
67369
67239
  });
67370
67240
  exports.nodeRequire = void 0;
67371
- var nodeRequire = (path3) => {
67241
+ var nodeRequire = (path4) => {
67372
67242
  try {
67373
- const module2 = __non_webpack_require__(path3);
67243
+ const module2 = __non_webpack_require__(path4);
67374
67244
  if (module2 !== null && module2 !== void 0 && module2.default) {
67375
67245
  return module2.default;
67376
67246
  }
67377
67247
  return module2;
67378
67248
  } catch (error) {
67379
- const module2 = __require(path3);
67249
+ const module2 = __require(path4);
67380
67250
  if (module2 !== null && module2 !== void 0 && module2.default) {
67381
67251
  return module2.default;
67382
67252
  }
@@ -67392,9 +67262,9 @@ var require_fsExists = __commonJSMin((exports) => {
67392
67262
  });
67393
67263
  exports.fsExists = fsExists;
67394
67264
  var _utils = require_dist2();
67395
- async function fsExists(path3) {
67265
+ async function fsExists(path4) {
67396
67266
  try {
67397
- await _utils.fs.access(path3);
67267
+ await _utils.fs.access(path4);
67398
67268
  return true;
67399
67269
  } catch (e) {
67400
67270
  return false;
@@ -68056,14 +67926,14 @@ var require_cookies = __commonJSMin((exports, module2) => {
68056
67926
  var utils = require_utils();
68057
67927
  module2.exports = utils.isStandardBrowserEnv() ? function standardBrowserEnv() {
68058
67928
  return {
68059
- write: function write(name4, value, expires, path3, domain, secure) {
67929
+ write: function write(name4, value, expires, path4, domain, secure) {
68060
67930
  var cookie = [];
68061
67931
  cookie.push(name4 + "=" + encodeURIComponent(value));
68062
67932
  if (utils.isNumber(expires)) {
68063
67933
  cookie.push("expires=" + new Date(expires).toGMTString());
68064
67934
  }
68065
- if (utils.isString(path3)) {
68066
- cookie.push("path=" + path3);
67935
+ if (utils.isString(path4)) {
67936
+ cookie.push("path=" + path4);
68067
67937
  }
68068
67938
  if (utils.isString(domain)) {
68069
67939
  cookie.push("domain=" + domain);
@@ -69780,9 +69650,9 @@ var require_validator = __commonJSMin((exports, module2) => {
69780
69650
  });
69781
69651
  var deprecatedWarnings = {};
69782
69652
  var currentVerArr = pkg.version.split(".");
69783
- function isOlderVersion(version4, thanVersion) {
69653
+ function isOlderVersion(version5, thanVersion) {
69784
69654
  var pkgVersionArr = thanVersion ? thanVersion.split(".") : currentVerArr;
69785
- var destVer = version4.split(".");
69655
+ var destVer = version5.split(".");
69786
69656
  for (var i = 0; i < 3; i++) {
69787
69657
  if (pkgVersionArr[i] > destVer[i]) {
69788
69658
  return true;
@@ -69792,18 +69662,18 @@ var require_validator = __commonJSMin((exports, module2) => {
69792
69662
  }
69793
69663
  return false;
69794
69664
  }
69795
- validators.transitional = function transitional(validator, version4, message) {
69796
- var isDeprecated = version4 && isOlderVersion(version4);
69665
+ validators.transitional = function transitional(validator, version5, message) {
69666
+ var isDeprecated = version5 && isOlderVersion(version5);
69797
69667
  function formatMessage(opt, desc) {
69798
69668
  return "[Axios v" + pkg.version + "] Transitional option '" + opt + "'" + desc + (message ? ". " + message : "");
69799
69669
  }
69800
69670
  return function(value, opt, opts) {
69801
69671
  if (validator === false) {
69802
- throw new Error(formatMessage(opt, " has been removed in " + version4));
69672
+ throw new Error(formatMessage(opt, " has been removed in " + version5));
69803
69673
  }
69804
69674
  if (isDeprecated && !deprecatedWarnings[opt]) {
69805
69675
  deprecatedWarnings[opt] = true;
69806
- console.warn(formatMessage(opt, " has been deprecated since v" + version4 + " and will be removed in the near future"));
69676
+ console.warn(formatMessage(opt, " has been deprecated since v" + version5 + " and will be removed in the near future"));
69807
69677
  }
69808
69678
  return validator ? validator(value, opt, opts) : true;
69809
69679
  };
@@ -71238,10 +71108,10 @@ var require_header = __commonJSMin((exports, module2) => {
71238
71108
  throw new Error("need 512 bytes for header");
71239
71109
  const prefixSize = this.ctime || this.atime ? 130 : 155;
71240
71110
  const split = splitPrefix(this.path || "", prefixSize);
71241
- const path3 = split[0];
71111
+ const path4 = split[0];
71242
71112
  const prefix = split[1];
71243
71113
  this.needPax = split[2];
71244
- this.needPax = encString(buf, off, 100, path3) || this.needPax;
71114
+ this.needPax = encString(buf, off, 100, path4) || this.needPax;
71245
71115
  this.needPax = encNumber(buf, off + 100, 8, this.mode) || this.needPax;
71246
71116
  this.needPax = encNumber(buf, off + 108, 8, this.uid) || this.needPax;
71247
71117
  this.needPax = encNumber(buf, off + 116, 8, this.gid) || this.needPax;
@@ -71339,7 +71209,7 @@ var require_header = __commonJSMin((exports, module2) => {
71339
71209
  var require_pax = __commonJSMin((exports, module2) => {
71340
71210
  "use strict";
71341
71211
  var Header = require_header();
71342
- var path3 = __require("path");
71212
+ var path4 = __require("path");
71343
71213
  var Pax = class {
71344
71214
  constructor(obj, global2) {
71345
71215
  this.atime = obj.atime || null;
@@ -71369,7 +71239,7 @@ var require_pax = __commonJSMin((exports, module2) => {
71369
71239
  for (let i = 0; i < 512; i++)
71370
71240
  buf[i] = 0;
71371
71241
  new Header({
71372
- path: ("PaxHeader/" + path3.basename(this.path)).slice(0, 99),
71242
+ path: ("PaxHeader/" + path4.basename(this.path)).slice(0, 99),
71373
71243
  mode: this.mode || 420,
71374
71244
  uid: this.uid || null,
71375
71245
  gid: this.gid || null,
@@ -71476,16 +71346,16 @@ var require_winchars = __commonJSMin((exports, module2) => {
71476
71346
  });
71477
71347
  var require_strip_absolute_path = __commonJSMin((exports, module2) => {
71478
71348
  var { isAbsolute, parse } = __require("path").win32;
71479
- module2.exports = (path3) => {
71349
+ module2.exports = (path4) => {
71480
71350
  let r = "";
71481
- let parsed = parse(path3);
71482
- while (isAbsolute(path3) || parsed.root) {
71483
- const root = path3.charAt(0) === "/" && path3.slice(0, 4) !== "//?/" ? "/" : parsed.root;
71484
- path3 = path3.substr(root.length);
71351
+ let parsed = parse(path4);
71352
+ while (isAbsolute(path4) || parsed.root) {
71353
+ const root = path4.charAt(0) === "/" && path4.slice(0, 4) !== "//?/" ? "/" : parsed.root;
71354
+ path4 = path4.substr(root.length);
71485
71355
  r += root;
71486
- parsed = parse(path3);
71356
+ parsed = parse(path4);
71487
71357
  }
71488
- return [r, path3];
71358
+ return [r, path4];
71489
71359
  };
71490
71360
  });
71491
71361
  var require_mode_fix = __commonJSMin((exports, module2) => {
@@ -71510,15 +71380,15 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71510
71380
  var MiniPass = require_minipass();
71511
71381
  var Pax = require_pax();
71512
71382
  var Header = require_header();
71513
- var fs2 = __require("fs");
71514
- var path3 = __require("path");
71383
+ var fs3 = __require("fs");
71384
+ var path4 = __require("path");
71515
71385
  var normPath = require_normalize_windows_path();
71516
71386
  var stripSlash = require_strip_trailing_slashes();
71517
- var prefixPath = (path4, prefix) => {
71387
+ var prefixPath = (path5, prefix) => {
71518
71388
  if (!prefix)
71519
- return normPath(path4);
71520
- path4 = normPath(path4).replace(/^\.(\/|$)/, "");
71521
- return stripSlash(prefix) + "/" + path4;
71389
+ return normPath(path5);
71390
+ path5 = normPath(path5).replace(/^\.(\/|$)/, "");
71391
+ return stripSlash(prefix) + "/" + path5;
71522
71392
  };
71523
71393
  var maxReadSize = 16 * 1024 * 1024;
71524
71394
  var PROCESS = Symbol("process");
@@ -71587,7 +71457,7 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71587
71457
  this.path = winchars.decode(this.path.replace(/\\/g, "/"));
71588
71458
  p = p.replace(/\\/g, "/");
71589
71459
  }
71590
- this.absolute = normPath(opt.absolute || path3.resolve(this.cwd, p));
71460
+ this.absolute = normPath(opt.absolute || path4.resolve(this.cwd, p));
71591
71461
  if (this.path === "")
71592
71462
  this.path = "./";
71593
71463
  if (pathWarn) {
@@ -71607,7 +71477,7 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71607
71477
  return super.emit(ev, ...data);
71608
71478
  }
71609
71479
  [LSTAT]() {
71610
- fs2.lstat(this.absolute, (er, stat) => {
71480
+ fs3.lstat(this.absolute, (er, stat) => {
71611
71481
  if (er)
71612
71482
  return this.emit("error", er);
71613
71483
  this[ONLSTAT](stat);
@@ -71637,8 +71507,8 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71637
71507
  [MODE](mode) {
71638
71508
  return modeFix(mode, this.type === "Directory", this.portable);
71639
71509
  }
71640
- [PREFIX](path4) {
71641
- return prefixPath(path4, this.prefix);
71510
+ [PREFIX](path5) {
71511
+ return prefixPath(path5, this.prefix);
71642
71512
  }
71643
71513
  [HEADER]() {
71644
71514
  if (this.type === "Directory" && this.portable)
@@ -71682,7 +71552,7 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71682
71552
  this.end();
71683
71553
  }
71684
71554
  [SYMLINK]() {
71685
- fs2.readlink(this.absolute, (er, linkpath) => {
71555
+ fs3.readlink(this.absolute, (er, linkpath) => {
71686
71556
  if (er)
71687
71557
  return this.emit("error", er);
71688
71558
  this[ONREADLINK](linkpath);
@@ -71695,7 +71565,7 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71695
71565
  }
71696
71566
  [HARDLINK](linkpath) {
71697
71567
  this.type = "Link";
71698
- this.linkpath = normPath(path3.relative(this.cwd, linkpath));
71568
+ this.linkpath = normPath(path4.relative(this.cwd, linkpath));
71699
71569
  this.stat.size = 0;
71700
71570
  this[HEADER]();
71701
71571
  this.end();
@@ -71716,7 +71586,7 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71716
71586
  this[OPENFILE]();
71717
71587
  }
71718
71588
  [OPENFILE]() {
71719
- fs2.open(this.absolute, "r", (er, fd) => {
71589
+ fs3.open(this.absolute, "r", (er, fd) => {
71720
71590
  if (er)
71721
71591
  return this.emit("error", er);
71722
71592
  this[ONOPENFILE](fd);
@@ -71738,7 +71608,7 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71738
71608
  }
71739
71609
  [READ]() {
71740
71610
  const { fd, buf, offset, length, pos } = this;
71741
- fs2.read(fd, buf, offset, length, pos, (er, bytesRead) => {
71611
+ fs3.read(fd, buf, offset, length, pos, (er, bytesRead) => {
71742
71612
  if (er) {
71743
71613
  return this[CLOSE](() => this.emit("error", er));
71744
71614
  }
@@ -71746,7 +71616,7 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71746
71616
  });
71747
71617
  }
71748
71618
  [CLOSE](cb) {
71749
- fs2.close(this.fd, cb);
71619
+ fs3.close(this.fd, cb);
71750
71620
  }
71751
71621
  [ONREAD](bytesRead) {
71752
71622
  if (bytesRead <= 0 && this.remain > 0) {
@@ -71808,19 +71678,19 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71808
71678
  });
71809
71679
  var WriteEntrySync = class extends WriteEntry {
71810
71680
  [LSTAT]() {
71811
- this[ONLSTAT](fs2.lstatSync(this.absolute));
71681
+ this[ONLSTAT](fs3.lstatSync(this.absolute));
71812
71682
  }
71813
71683
  [SYMLINK]() {
71814
- this[ONREADLINK](fs2.readlinkSync(this.absolute));
71684
+ this[ONREADLINK](fs3.readlinkSync(this.absolute));
71815
71685
  }
71816
71686
  [OPENFILE]() {
71817
- this[ONOPENFILE](fs2.openSync(this.absolute, "r"));
71687
+ this[ONOPENFILE](fs3.openSync(this.absolute, "r"));
71818
71688
  }
71819
71689
  [READ]() {
71820
71690
  let threw = true;
71821
71691
  try {
71822
71692
  const { fd, buf, offset, length, pos } = this;
71823
- const bytesRead = fs2.readSync(fd, buf, offset, length, pos);
71693
+ const bytesRead = fs3.readSync(fd, buf, offset, length, pos);
71824
71694
  this[ONREAD](bytesRead);
71825
71695
  threw = false;
71826
71696
  } finally {
@@ -71837,7 +71707,7 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71837
71707
  cb();
71838
71708
  }
71839
71709
  [CLOSE](cb) {
71840
- fs2.closeSync(this.fd);
71710
+ fs3.closeSync(this.fd);
71841
71711
  cb();
71842
71712
  }
71843
71713
  };
@@ -71916,8 +71786,8 @@ var require_write_entry = __commonJSMin((exports, module2) => {
71916
71786
  super.write(this.header.block);
71917
71787
  readEntry.pipe(this);
71918
71788
  }
71919
- [PREFIX](path4) {
71920
- return prefixPath(path4, this.prefix);
71789
+ [PREFIX](path5) {
71790
+ return prefixPath(path5, this.prefix);
71921
71791
  }
71922
71792
  [MODE](mode) {
71923
71793
  return modeFix(mode, this.type === "Directory", this.portable);
@@ -72318,8 +72188,8 @@ var require_yallist = __commonJSMin((exports, module2) => {
72318
72188
  var require_pack = __commonJSMin((exports, module2) => {
72319
72189
  "use strict";
72320
72190
  var PackJob = class {
72321
- constructor(path4, absolute) {
72322
- this.path = path4 || "./";
72191
+ constructor(path5, absolute) {
72192
+ this.path = path5 || "./";
72323
72193
  this.absolute = absolute;
72324
72194
  this.entry = null;
72325
72195
  this.stat = null;
@@ -72357,8 +72227,8 @@ var require_pack = __commonJSMin((exports, module2) => {
72357
72227
  var WRITEENTRYCLASS = Symbol("writeEntryClass");
72358
72228
  var WRITE = Symbol("write");
72359
72229
  var ONDRAIN = Symbol("ondrain");
72360
- var fs2 = __require("fs");
72361
- var path3 = __require("path");
72230
+ var fs3 = __require("fs");
72231
+ var path4 = __require("path");
72362
72232
  var warner = require_warn_mixin();
72363
72233
  var normPath = require_normalize_windows_path();
72364
72234
  var Pack = warner(class Pack extends MiniPass {
@@ -72407,28 +72277,28 @@ var require_pack = __commonJSMin((exports, module2) => {
72407
72277
  [WRITE](chunk) {
72408
72278
  return super.write(chunk);
72409
72279
  }
72410
- add(path4) {
72411
- this.write(path4);
72280
+ add(path5) {
72281
+ this.write(path5);
72412
72282
  return this;
72413
72283
  }
72414
- end(path4) {
72415
- if (path4)
72416
- this.write(path4);
72284
+ end(path5) {
72285
+ if (path5)
72286
+ this.write(path5);
72417
72287
  this[ENDED] = true;
72418
72288
  this[PROCESS]();
72419
72289
  return this;
72420
72290
  }
72421
- write(path4) {
72291
+ write(path5) {
72422
72292
  if (this[ENDED])
72423
72293
  throw new Error("write after end");
72424
- if (path4 instanceof ReadEntry)
72425
- this[ADDTARENTRY](path4);
72294
+ if (path5 instanceof ReadEntry)
72295
+ this[ADDTARENTRY](path5);
72426
72296
  else
72427
- this[ADDFSENTRY](path4);
72297
+ this[ADDFSENTRY](path5);
72428
72298
  return this.flowing;
72429
72299
  }
72430
72300
  [ADDTARENTRY](p) {
72431
- const absolute = normPath(path3.resolve(this.cwd, p.path));
72301
+ const absolute = normPath(path4.resolve(this.cwd, p.path));
72432
72302
  if (!this.filter(p.path, p))
72433
72303
  p.resume();
72434
72304
  else {
@@ -72441,7 +72311,7 @@ var require_pack = __commonJSMin((exports, module2) => {
72441
72311
  this[PROCESS]();
72442
72312
  }
72443
72313
  [ADDFSENTRY](p) {
72444
- const absolute = normPath(path3.resolve(this.cwd, p));
72314
+ const absolute = normPath(path4.resolve(this.cwd, p));
72445
72315
  this[QUEUE].push(new PackJob(p, absolute));
72446
72316
  this[PROCESS]();
72447
72317
  }
@@ -72449,7 +72319,7 @@ var require_pack = __commonJSMin((exports, module2) => {
72449
72319
  job.pending = true;
72450
72320
  this[JOBS] += 1;
72451
72321
  const stat = this.follow ? "stat" : "lstat";
72452
- fs2[stat](job.absolute, (er, stat2) => {
72322
+ fs3[stat](job.absolute, (er, stat2) => {
72453
72323
  job.pending = false;
72454
72324
  this[JOBS] -= 1;
72455
72325
  if (er)
@@ -72468,7 +72338,7 @@ var require_pack = __commonJSMin((exports, module2) => {
72468
72338
  [READDIR](job) {
72469
72339
  job.pending = true;
72470
72340
  this[JOBS] += 1;
72471
- fs2.readdir(job.absolute, (er, entries) => {
72341
+ fs3.readdir(job.absolute, (er, entries) => {
72472
72342
  job.pending = false;
72473
72343
  this[JOBS] -= 1;
72474
72344
  if (er)
@@ -72614,10 +72484,10 @@ var require_pack = __commonJSMin((exports, module2) => {
72614
72484
  }
72615
72485
  [STAT](job) {
72616
72486
  const stat = this.follow ? "statSync" : "lstatSync";
72617
- this[ONSTAT](job, fs2[stat](job.absolute));
72487
+ this[ONSTAT](job, fs3[stat](job.absolute));
72618
72488
  }
72619
72489
  [READDIR](job, stat) {
72620
- this[ONREADDIR](job, fs2.readdirSync(job.absolute));
72490
+ this[ONREADDIR](job, fs3.readdirSync(job.absolute));
72621
72491
  }
72622
72492
  [PIPE](job) {
72623
72493
  const source = job.entry;
@@ -72647,8 +72517,8 @@ var require_fs_minipass = __commonJSMin((exports) => {
72647
72517
  "use strict";
72648
72518
  var MiniPass = require_minipass();
72649
72519
  var EE = __require("events").EventEmitter;
72650
- var fs2 = __require("fs");
72651
- var writev = fs2.writev;
72520
+ var fs3 = __require("fs");
72521
+ var writev = fs3.writev;
72652
72522
  if (!writev) {
72653
72523
  const binding = process.binding("fs");
72654
72524
  const FSReqWrap = binding.FSReqWrap || binding.FSReqCallback;
@@ -72688,16 +72558,16 @@ var require_fs_minipass = __commonJSMin((exports) => {
72688
72558
  var _defaultFlag = Symbol("_defaultFlag");
72689
72559
  var _errored = Symbol("_errored");
72690
72560
  var ReadStream = class extends MiniPass {
72691
- constructor(path3, opt) {
72561
+ constructor(path4, opt) {
72692
72562
  opt = opt || {};
72693
72563
  super(opt);
72694
72564
  this.readable = true;
72695
72565
  this.writable = false;
72696
- if (typeof path3 !== "string")
72566
+ if (typeof path4 !== "string")
72697
72567
  throw new TypeError("path must be a string");
72698
72568
  this[_errored] = false;
72699
72569
  this[_fd] = typeof opt.fd === "number" ? opt.fd : null;
72700
- this[_path] = path3;
72570
+ this[_path] = path4;
72701
72571
  this[_readSize] = opt.readSize || 16 * 1024 * 1024;
72702
72572
  this[_reading] = false;
72703
72573
  this[_size] = typeof opt.size === "number" ? opt.size : Infinity;
@@ -72721,7 +72591,7 @@ var require_fs_minipass = __commonJSMin((exports) => {
72721
72591
  throw new TypeError("this is a readable stream");
72722
72592
  }
72723
72593
  [_open]() {
72724
- fs2.open(this[_path], "r", (er, fd) => this[_onopen](er, fd));
72594
+ fs3.open(this[_path], "r", (er, fd) => this[_onopen](er, fd));
72725
72595
  }
72726
72596
  [_onopen](er, fd) {
72727
72597
  if (er)
@@ -72741,7 +72611,7 @@ var require_fs_minipass = __commonJSMin((exports) => {
72741
72611
  const buf = this[_makeBuf]();
72742
72612
  if (buf.length === 0)
72743
72613
  return process.nextTick(() => this[_onread](null, 0, buf));
72744
- fs2.read(this[_fd], buf, 0, buf.length, null, (er, br, buf2) => this[_onread](er, br, buf2));
72614
+ fs3.read(this[_fd], buf, 0, buf.length, null, (er, br, buf2) => this[_onread](er, br, buf2));
72745
72615
  }
72746
72616
  }
72747
72617
  [_onread](er, br, buf) {
@@ -72755,7 +72625,7 @@ var require_fs_minipass = __commonJSMin((exports) => {
72755
72625
  if (this[_autoClose] && typeof this[_fd] === "number") {
72756
72626
  const fd = this[_fd];
72757
72627
  this[_fd] = null;
72758
- fs2.close(fd, (er) => er ? this.emit("error", er) : this.emit("close"));
72628
+ fs3.close(fd, (er) => er ? this.emit("error", er) : this.emit("close"));
72759
72629
  }
72760
72630
  }
72761
72631
  [_onerror](er) {
@@ -72798,7 +72668,7 @@ var require_fs_minipass = __commonJSMin((exports) => {
72798
72668
  [_open]() {
72799
72669
  let threw = true;
72800
72670
  try {
72801
- this[_onopen](null, fs2.openSync(this[_path], "r"));
72671
+ this[_onopen](null, fs3.openSync(this[_path], "r"));
72802
72672
  threw = false;
72803
72673
  } finally {
72804
72674
  if (threw)
@@ -72812,7 +72682,7 @@ var require_fs_minipass = __commonJSMin((exports) => {
72812
72682
  this[_reading] = true;
72813
72683
  do {
72814
72684
  const buf = this[_makeBuf]();
72815
- const br = buf.length === 0 ? 0 : fs2.readSync(this[_fd], buf, 0, buf.length, null);
72685
+ const br = buf.length === 0 ? 0 : fs3.readSync(this[_fd], buf, 0, buf.length, null);
72816
72686
  if (!this[_handleChunk](br, buf))
72817
72687
  break;
72818
72688
  } while (true);
@@ -72828,13 +72698,13 @@ var require_fs_minipass = __commonJSMin((exports) => {
72828
72698
  if (this[_autoClose] && typeof this[_fd] === "number") {
72829
72699
  const fd = this[_fd];
72830
72700
  this[_fd] = null;
72831
- fs2.closeSync(fd);
72701
+ fs3.closeSync(fd);
72832
72702
  this.emit("close");
72833
72703
  }
72834
72704
  }
72835
72705
  };
72836
72706
  var WriteStream = class extends EE {
72837
- constructor(path3, opt) {
72707
+ constructor(path4, opt) {
72838
72708
  opt = opt || {};
72839
72709
  super(opt);
72840
72710
  this.readable = false;
@@ -72844,7 +72714,7 @@ var require_fs_minipass = __commonJSMin((exports) => {
72844
72714
  this[_ended] = false;
72845
72715
  this[_needDrain] = false;
72846
72716
  this[_queue] = [];
72847
- this[_path] = path3;
72717
+ this[_path] = path4;
72848
72718
  this[_fd] = typeof opt.fd === "number" ? opt.fd : null;
72849
72719
  this[_mode] = opt.mode === void 0 ? 438 : opt.mode;
72850
72720
  this[_pos] = typeof opt.start === "number" ? opt.start : null;
@@ -72875,7 +72745,7 @@ var require_fs_minipass = __commonJSMin((exports) => {
72875
72745
  this.emit("error", er);
72876
72746
  }
72877
72747
  [_open]() {
72878
- fs2.open(this[_path], this[_flags], this[_mode], (er, fd) => this[_onopen](er, fd));
72748
+ fs3.open(this[_path], this[_flags], this[_mode], (er, fd) => this[_onopen](er, fd));
72879
72749
  }
72880
72750
  [_onopen](er, fd) {
72881
72751
  if (this[_defaultFlag] && this[_flags] === "r+" && er && er.code === "ENOENT") {
@@ -72914,7 +72784,7 @@ var require_fs_minipass = __commonJSMin((exports) => {
72914
72784
  return true;
72915
72785
  }
72916
72786
  [_write](buf) {
72917
- fs2.write(this[_fd], buf, 0, buf.length, this[_pos], (er, bw) => this[_onwrite](er, bw));
72787
+ fs3.write(this[_fd], buf, 0, buf.length, this[_pos], (er, bw) => this[_onwrite](er, bw));
72918
72788
  }
72919
72789
  [_onwrite](er, bw) {
72920
72790
  if (er)
@@ -72953,7 +72823,7 @@ var require_fs_minipass = __commonJSMin((exports) => {
72953
72823
  if (this[_autoClose] && typeof this[_fd] === "number") {
72954
72824
  const fd = this[_fd];
72955
72825
  this[_fd] = null;
72956
- fs2.close(fd, (er) => er ? this.emit("error", er) : this.emit("close"));
72826
+ fs3.close(fd, (er) => er ? this.emit("error", er) : this.emit("close"));
72957
72827
  }
72958
72828
  }
72959
72829
  };
@@ -72962,7 +72832,7 @@ var require_fs_minipass = __commonJSMin((exports) => {
72962
72832
  let fd;
72963
72833
  if (this[_defaultFlag] && this[_flags] === "r+") {
72964
72834
  try {
72965
- fd = fs2.openSync(this[_path], this[_flags], this[_mode]);
72835
+ fd = fs3.openSync(this[_path], this[_flags], this[_mode]);
72966
72836
  } catch (er) {
72967
72837
  if (er.code === "ENOENT") {
72968
72838
  this[_flags] = "w";
@@ -72971,21 +72841,21 @@ var require_fs_minipass = __commonJSMin((exports) => {
72971
72841
  throw er;
72972
72842
  }
72973
72843
  } else
72974
- fd = fs2.openSync(this[_path], this[_flags], this[_mode]);
72844
+ fd = fs3.openSync(this[_path], this[_flags], this[_mode]);
72975
72845
  this[_onopen](null, fd);
72976
72846
  }
72977
72847
  [_close]() {
72978
72848
  if (this[_autoClose] && typeof this[_fd] === "number") {
72979
72849
  const fd = this[_fd];
72980
72850
  this[_fd] = null;
72981
- fs2.closeSync(fd);
72851
+ fs3.closeSync(fd);
72982
72852
  this.emit("close");
72983
72853
  }
72984
72854
  }
72985
72855
  [_write](buf) {
72986
72856
  let threw = true;
72987
72857
  try {
72988
- this[_onwrite](null, fs2.writeSync(this[_fd], buf, 0, buf.length, this[_pos]));
72858
+ this[_onwrite](null, fs3.writeSync(this[_fd], buf, 0, buf.length, this[_pos]));
72989
72859
  threw = false;
72990
72860
  } finally {
72991
72861
  if (threw)
@@ -73377,9 +73247,9 @@ var require_list = __commonJSMin((exports, module2) => {
73377
73247
  "use strict";
73378
73248
  var hlo = require_high_level_opt();
73379
73249
  var Parser = require_parse();
73380
- var fs2 = __require("fs");
73250
+ var fs3 = __require("fs");
73381
73251
  var fsm = require_fs_minipass();
73382
- var path3 = __require("path");
73252
+ var path4 = __require("path");
73383
73253
  var stripSlash = require_strip_trailing_slashes();
73384
73254
  module2.exports = (opt_, files, cb) => {
73385
73255
  if (typeof opt_ === "function")
@@ -73414,8 +73284,8 @@ var require_list = __commonJSMin((exports, module2) => {
73414
73284
  const map = new Map(files.map((f) => [stripSlash(f), true]));
73415
73285
  const filter = opt.filter;
73416
73286
  const mapHas = (file, r) => {
73417
- const root = r || path3.parse(file).root || ".";
73418
- const ret = file === root ? false : map.has(file) ? map.get(file) : mapHas(path3.dirname(file), root);
73287
+ const root = r || path4.parse(file).root || ".";
73288
+ const ret = file === root ? false : map.has(file) ? map.get(file) : mapHas(path4.dirname(file), root);
73419
73289
  map.set(file, ret);
73420
73290
  return ret;
73421
73291
  };
@@ -73427,16 +73297,16 @@ var require_list = __commonJSMin((exports, module2) => {
73427
73297
  let threw = true;
73428
73298
  let fd;
73429
73299
  try {
73430
- const stat = fs2.statSync(file);
73300
+ const stat = fs3.statSync(file);
73431
73301
  const readSize = opt.maxReadSize || 16 * 1024 * 1024;
73432
73302
  if (stat.size < readSize)
73433
- p.end(fs2.readFileSync(file));
73303
+ p.end(fs3.readFileSync(file));
73434
73304
  else {
73435
73305
  let pos = 0;
73436
73306
  const buf = Buffer.allocUnsafe(readSize);
73437
- fd = fs2.openSync(file, "r");
73307
+ fd = fs3.openSync(file, "r");
73438
73308
  while (pos < stat.size) {
73439
- const bytesRead = fs2.readSync(fd, buf, 0, readSize, pos);
73309
+ const bytesRead = fs3.readSync(fd, buf, 0, readSize, pos);
73440
73310
  pos += bytesRead;
73441
73311
  p.write(buf.slice(0, bytesRead));
73442
73312
  }
@@ -73446,7 +73316,7 @@ var require_list = __commonJSMin((exports, module2) => {
73446
73316
  } finally {
73447
73317
  if (threw && fd) {
73448
73318
  try {
73449
- fs2.closeSync(fd);
73319
+ fs3.closeSync(fd);
73450
73320
  } catch (er) {
73451
73321
  }
73452
73322
  }
@@ -73459,7 +73329,7 @@ var require_list = __commonJSMin((exports, module2) => {
73459
73329
  const p = new Promise((resolve, reject) => {
73460
73330
  parse.on("error", reject);
73461
73331
  parse.on("end", resolve);
73462
- fs2.stat(file, (er, stat) => {
73332
+ fs3.stat(file, (er, stat) => {
73463
73333
  if (er)
73464
73334
  reject(er);
73465
73335
  else {
@@ -73482,7 +73352,7 @@ var require_create = __commonJSMin((exports, module2) => {
73482
73352
  var Pack = require_pack();
73483
73353
  var fsm = require_fs_minipass();
73484
73354
  var t = require_list();
73485
- var path3 = __require("path");
73355
+ var path4 = __require("path");
73486
73356
  module2.exports = (opt_, files, cb) => {
73487
73357
  if (typeof files === "function")
73488
73358
  cb = files;
@@ -73524,7 +73394,7 @@ var require_create = __commonJSMin((exports, module2) => {
73524
73394
  files.forEach((file) => {
73525
73395
  if (file.charAt(0) === "@") {
73526
73396
  t({
73527
- file: path3.resolve(p.cwd, file.substr(1)),
73397
+ file: path4.resolve(p.cwd, file.substr(1)),
73528
73398
  sync: true,
73529
73399
  noResume: true,
73530
73400
  onentry: (entry) => p.add(entry)
@@ -73539,7 +73409,7 @@ var require_create = __commonJSMin((exports, module2) => {
73539
73409
  const file = files.shift();
73540
73410
  if (file.charAt(0) === "@") {
73541
73411
  return t({
73542
- file: path3.resolve(p.cwd, file.substr(1)),
73412
+ file: path4.resolve(p.cwd, file.substr(1)),
73543
73413
  noResume: true,
73544
73414
  onentry: (entry) => p.add(entry)
73545
73415
  }).then((_) => addFilesAsync(p, files));
@@ -73563,10 +73433,10 @@ var require_replace = __commonJSMin((exports, module2) => {
73563
73433
  "use strict";
73564
73434
  var hlo = require_high_level_opt();
73565
73435
  var Pack = require_pack();
73566
- var fs2 = __require("fs");
73436
+ var fs3 = __require("fs");
73567
73437
  var fsm = require_fs_minipass();
73568
73438
  var t = require_list();
73569
- var path3 = __require("path");
73439
+ var path4 = __require("path");
73570
73440
  var Header = require_header();
73571
73441
  module2.exports = (opt_, files, cb) => {
73572
73442
  const opt = hlo(opt_);
@@ -73586,19 +73456,19 @@ var require_replace = __commonJSMin((exports, module2) => {
73586
73456
  let position;
73587
73457
  try {
73588
73458
  try {
73589
- fd = fs2.openSync(opt.file, "r+");
73459
+ fd = fs3.openSync(opt.file, "r+");
73590
73460
  } catch (er) {
73591
73461
  if (er.code === "ENOENT")
73592
- fd = fs2.openSync(opt.file, "w+");
73462
+ fd = fs3.openSync(opt.file, "w+");
73593
73463
  else
73594
73464
  throw er;
73595
73465
  }
73596
- const st = fs2.fstatSync(fd);
73466
+ const st = fs3.fstatSync(fd);
73597
73467
  const headBuf = Buffer.alloc(512);
73598
73468
  POSITION:
73599
73469
  for (position = 0; position < st.size; position += 512) {
73600
73470
  for (let bufPos = 0, bytes = 0; bufPos < 512; bufPos += bytes) {
73601
- bytes = fs2.readSync(fd, headBuf, bufPos, headBuf.length - bufPos, position + bufPos);
73471
+ bytes = fs3.readSync(fd, headBuf, bufPos, headBuf.length - bufPos, position + bufPos);
73602
73472
  if (position === 0 && headBuf[0] === 31 && headBuf[1] === 139)
73603
73473
  throw new Error("cannot append to compressed archives");
73604
73474
  if (!bytes)
@@ -73619,7 +73489,7 @@ var require_replace = __commonJSMin((exports, module2) => {
73619
73489
  } finally {
73620
73490
  if (threw) {
73621
73491
  try {
73622
- fs2.closeSync(fd);
73492
+ fs3.closeSync(fd);
73623
73493
  } catch (er) {
73624
73494
  }
73625
73495
  }
@@ -73639,7 +73509,7 @@ var require_replace = __commonJSMin((exports, module2) => {
73639
73509
  const getPos = (fd, size, cb_) => {
73640
73510
  const cb2 = (er, pos) => {
73641
73511
  if (er)
73642
- fs2.close(fd, (_) => cb_(er));
73512
+ fs3.close(fd, (_) => cb_(er));
73643
73513
  else
73644
73514
  cb_(null, pos);
73645
73515
  };
@@ -73653,7 +73523,7 @@ var require_replace = __commonJSMin((exports, module2) => {
73653
73523
  return cb2(er);
73654
73524
  bufPos += bytes;
73655
73525
  if (bufPos < 512 && bytes) {
73656
- return fs2.read(fd, headBuf, bufPos, headBuf.length - bufPos, position + bufPos, onread);
73526
+ return fs3.read(fd, headBuf, bufPos, headBuf.length - bufPos, position + bufPos, onread);
73657
73527
  }
73658
73528
  if (position === 0 && headBuf[0] === 31 && headBuf[1] === 139)
73659
73529
  return cb2(new Error("cannot append to compressed archives"));
@@ -73671,9 +73541,9 @@ var require_replace = __commonJSMin((exports, module2) => {
73671
73541
  if (opt.mtimeCache)
73672
73542
  opt.mtimeCache.set(h.path, h.mtime);
73673
73543
  bufPos = 0;
73674
- fs2.read(fd, headBuf, 0, 512, position, onread);
73544
+ fs3.read(fd, headBuf, 0, 512, position, onread);
73675
73545
  };
73676
- fs2.read(fd, headBuf, 0, 512, position, onread);
73546
+ fs3.read(fd, headBuf, 0, 512, position, onread);
73677
73547
  };
73678
73548
  const promise = new Promise((resolve, reject) => {
73679
73549
  p.on("error", reject);
@@ -73681,13 +73551,13 @@ var require_replace = __commonJSMin((exports, module2) => {
73681
73551
  const onopen = (er, fd) => {
73682
73552
  if (er && er.code === "ENOENT" && flag === "r+") {
73683
73553
  flag = "w+";
73684
- return fs2.open(opt.file, flag, onopen);
73554
+ return fs3.open(opt.file, flag, onopen);
73685
73555
  }
73686
73556
  if (er)
73687
73557
  return reject(er);
73688
- fs2.fstat(fd, (er2, st) => {
73558
+ fs3.fstat(fd, (er2, st) => {
73689
73559
  if (er2)
73690
- return fs2.close(fd, () => reject(er2));
73560
+ return fs3.close(fd, () => reject(er2));
73691
73561
  getPos(fd, st.size, (er3, position) => {
73692
73562
  if (er3)
73693
73563
  return reject(er3);
@@ -73702,7 +73572,7 @@ var require_replace = __commonJSMin((exports, module2) => {
73702
73572
  });
73703
73573
  });
73704
73574
  };
73705
- fs2.open(opt.file, flag, onopen);
73575
+ fs3.open(opt.file, flag, onopen);
73706
73576
  });
73707
73577
  return cb ? promise.then(cb, cb) : promise;
73708
73578
  };
@@ -73710,7 +73580,7 @@ var require_replace = __commonJSMin((exports, module2) => {
73710
73580
  files.forEach((file) => {
73711
73581
  if (file.charAt(0) === "@") {
73712
73582
  t({
73713
- file: path3.resolve(p.cwd, file.substr(1)),
73583
+ file: path4.resolve(p.cwd, file.substr(1)),
73714
73584
  sync: true,
73715
73585
  noResume: true,
73716
73586
  onentry: (entry) => p.add(entry)
@@ -73725,7 +73595,7 @@ var require_replace = __commonJSMin((exports, module2) => {
73725
73595
  const file = files.shift();
73726
73596
  if (file.charAt(0) === "@") {
73727
73597
  return t({
73728
- file: path3.resolve(p.cwd, file.substr(1)),
73598
+ file: path4.resolve(p.cwd, file.substr(1)),
73729
73599
  noResume: true,
73730
73600
  onentry: (entry) => p.add(entry)
73731
73601
  }).then((_) => addFilesAsync(p, files));
@@ -73755,29 +73625,29 @@ var require_update = __commonJSMin((exports, module2) => {
73755
73625
  const filter = opt.filter;
73756
73626
  if (!opt.mtimeCache)
73757
73627
  opt.mtimeCache = /* @__PURE__ */ new Map();
73758
- opt.filter = filter ? (path3, stat) => filter(path3, stat) && !(opt.mtimeCache.get(path3) > stat.mtime) : (path3, stat) => !(opt.mtimeCache.get(path3) > stat.mtime);
73628
+ opt.filter = filter ? (path4, stat) => filter(path4, stat) && !(opt.mtimeCache.get(path4) > stat.mtime) : (path4, stat) => !(opt.mtimeCache.get(path4) > stat.mtime);
73759
73629
  };
73760
73630
  });
73761
73631
  var require_opts_arg = __commonJSMin((exports, module2) => {
73762
73632
  var { promisify } = __require("util");
73763
- var fs2 = __require("fs");
73633
+ var fs3 = __require("fs");
73764
73634
  var optsArg = (opts) => {
73765
73635
  if (!opts)
73766
- opts = { mode: 511, fs: fs2 };
73636
+ opts = { mode: 511, fs: fs3 };
73767
73637
  else if (typeof opts === "object")
73768
- opts = { mode: 511, fs: fs2, ...opts };
73638
+ opts = { mode: 511, fs: fs3, ...opts };
73769
73639
  else if (typeof opts === "number")
73770
- opts = { mode: opts, fs: fs2 };
73640
+ opts = { mode: opts, fs: fs3 };
73771
73641
  else if (typeof opts === "string")
73772
- opts = { mode: parseInt(opts, 8), fs: fs2 };
73642
+ opts = { mode: parseInt(opts, 8), fs: fs3 };
73773
73643
  else
73774
73644
  throw new TypeError("invalid options argument");
73775
- opts.mkdir = opts.mkdir || opts.fs.mkdir || fs2.mkdir;
73645
+ opts.mkdir = opts.mkdir || opts.fs.mkdir || fs3.mkdir;
73776
73646
  opts.mkdirAsync = promisify(opts.mkdir);
73777
- opts.stat = opts.stat || opts.fs.stat || fs2.stat;
73647
+ opts.stat = opts.stat || opts.fs.stat || fs3.stat;
73778
73648
  opts.statAsync = promisify(opts.stat);
73779
- opts.statSync = opts.statSync || opts.fs.statSync || fs2.statSync;
73780
- opts.mkdirSync = opts.mkdirSync || opts.fs.mkdirSync || fs2.mkdirSync;
73649
+ opts.statSync = opts.statSync || opts.fs.statSync || fs3.statSync;
73650
+ opts.mkdirSync = opts.mkdirSync || opts.fs.mkdirSync || fs3.mkdirSync;
73781
73651
  return opts;
73782
73652
  };
73783
73653
  module2.exports = optsArg;
@@ -73785,40 +73655,40 @@ var require_opts_arg = __commonJSMin((exports, module2) => {
73785
73655
  var require_path_arg = __commonJSMin((exports, module2) => {
73786
73656
  var platform = process.env.__TESTING_MKDIRP_PLATFORM__ || process.platform;
73787
73657
  var { resolve, parse } = __require("path");
73788
- var pathArg = (path3) => {
73789
- if (/\0/.test(path3)) {
73658
+ var pathArg = (path4) => {
73659
+ if (/\0/.test(path4)) {
73790
73660
  throw Object.assign(new TypeError("path must be a string without null bytes"), {
73791
- path: path3,
73661
+ path: path4,
73792
73662
  code: "ERR_INVALID_ARG_VALUE"
73793
73663
  });
73794
73664
  }
73795
- path3 = resolve(path3);
73665
+ path4 = resolve(path4);
73796
73666
  if (platform === "win32") {
73797
73667
  const badWinChars = /[*|"<>?:]/;
73798
- const { root } = parse(path3);
73799
- if (badWinChars.test(path3.substr(root.length))) {
73668
+ const { root } = parse(path4);
73669
+ if (badWinChars.test(path4.substr(root.length))) {
73800
73670
  throw Object.assign(new Error("Illegal characters in path."), {
73801
- path: path3,
73671
+ path: path4,
73802
73672
  code: "EINVAL"
73803
73673
  });
73804
73674
  }
73805
73675
  }
73806
- return path3;
73676
+ return path4;
73807
73677
  };
73808
73678
  module2.exports = pathArg;
73809
73679
  });
73810
73680
  var require_find_made = __commonJSMin((exports, module2) => {
73811
73681
  var { dirname } = __require("path");
73812
- var findMade = (opts, parent, path3 = void 0) => {
73813
- if (path3 === parent)
73682
+ var findMade = (opts, parent, path4 = void 0) => {
73683
+ if (path4 === parent)
73814
73684
  return Promise.resolve();
73815
- return opts.statAsync(parent).then((st) => st.isDirectory() ? path3 : void 0, (er) => er.code === "ENOENT" ? findMade(opts, dirname(parent), parent) : void 0);
73685
+ return opts.statAsync(parent).then((st) => st.isDirectory() ? path4 : void 0, (er) => er.code === "ENOENT" ? findMade(opts, dirname(parent), parent) : void 0);
73816
73686
  };
73817
- var findMadeSync = (opts, parent, path3 = void 0) => {
73818
- if (path3 === parent)
73687
+ var findMadeSync = (opts, parent, path4 = void 0) => {
73688
+ if (path4 === parent)
73819
73689
  return void 0;
73820
73690
  try {
73821
- return opts.statSync(parent).isDirectory() ? path3 : void 0;
73691
+ return opts.statSync(parent).isDirectory() ? path4 : void 0;
73822
73692
  } catch (er) {
73823
73693
  return er.code === "ENOENT" ? findMadeSync(opts, dirname(parent), parent) : void 0;
73824
73694
  }
@@ -73827,21 +73697,21 @@ var require_find_made = __commonJSMin((exports, module2) => {
73827
73697
  });
73828
73698
  var require_mkdirp_manual = __commonJSMin((exports, module2) => {
73829
73699
  var { dirname } = __require("path");
73830
- var mkdirpManual = (path3, opts, made) => {
73700
+ var mkdirpManual = (path4, opts, made) => {
73831
73701
  opts.recursive = false;
73832
- const parent = dirname(path3);
73833
- if (parent === path3) {
73834
- return opts.mkdirAsync(path3, opts).catch((er) => {
73702
+ const parent = dirname(path4);
73703
+ if (parent === path4) {
73704
+ return opts.mkdirAsync(path4, opts).catch((er) => {
73835
73705
  if (er.code !== "EISDIR")
73836
73706
  throw er;
73837
73707
  });
73838
73708
  }
73839
- return opts.mkdirAsync(path3, opts).then(() => made || path3, (er) => {
73709
+ return opts.mkdirAsync(path4, opts).then(() => made || path4, (er) => {
73840
73710
  if (er.code === "ENOENT")
73841
- return mkdirpManual(parent, opts).then((made2) => mkdirpManual(path3, opts, made2));
73711
+ return mkdirpManual(parent, opts).then((made2) => mkdirpManual(path4, opts, made2));
73842
73712
  if (er.code !== "EEXIST" && er.code !== "EROFS")
73843
73713
  throw er;
73844
- return opts.statAsync(path3).then((st) => {
73714
+ return opts.statAsync(path4).then((st) => {
73845
73715
  if (st.isDirectory())
73846
73716
  return made;
73847
73717
  else
@@ -73851,12 +73721,12 @@ var require_mkdirp_manual = __commonJSMin((exports, module2) => {
73851
73721
  });
73852
73722
  });
73853
73723
  };
73854
- var mkdirpManualSync = (path3, opts, made) => {
73855
- const parent = dirname(path3);
73724
+ var mkdirpManualSync = (path4, opts, made) => {
73725
+ const parent = dirname(path4);
73856
73726
  opts.recursive = false;
73857
- if (parent === path3) {
73727
+ if (parent === path4) {
73858
73728
  try {
73859
- return opts.mkdirSync(path3, opts);
73729
+ return opts.mkdirSync(path4, opts);
73860
73730
  } catch (er) {
73861
73731
  if (er.code !== "EISDIR")
73862
73732
  throw er;
@@ -73865,15 +73735,15 @@ var require_mkdirp_manual = __commonJSMin((exports, module2) => {
73865
73735
  }
73866
73736
  }
73867
73737
  try {
73868
- opts.mkdirSync(path3, opts);
73869
- return made || path3;
73738
+ opts.mkdirSync(path4, opts);
73739
+ return made || path4;
73870
73740
  } catch (er) {
73871
73741
  if (er.code === "ENOENT")
73872
- return mkdirpManualSync(path3, opts, mkdirpManualSync(parent, opts, made));
73742
+ return mkdirpManualSync(path4, opts, mkdirpManualSync(parent, opts, made));
73873
73743
  if (er.code !== "EEXIST" && er.code !== "EROFS")
73874
73744
  throw er;
73875
73745
  try {
73876
- if (!opts.statSync(path3).isDirectory())
73746
+ if (!opts.statSync(path4).isDirectory())
73877
73747
  throw er;
73878
73748
  } catch (_) {
73879
73749
  throw er;
@@ -73886,30 +73756,30 @@ var require_mkdirp_native = __commonJSMin((exports, module2) => {
73886
73756
  var { dirname } = __require("path");
73887
73757
  var { findMade, findMadeSync } = require_find_made();
73888
73758
  var { mkdirpManual, mkdirpManualSync } = require_mkdirp_manual();
73889
- var mkdirpNative = (path3, opts) => {
73759
+ var mkdirpNative = (path4, opts) => {
73890
73760
  opts.recursive = true;
73891
- const parent = dirname(path3);
73892
- if (parent === path3)
73893
- return opts.mkdirAsync(path3, opts);
73894
- return findMade(opts, path3).then((made) => opts.mkdirAsync(path3, opts).then(() => made).catch((er) => {
73761
+ const parent = dirname(path4);
73762
+ if (parent === path4)
73763
+ return opts.mkdirAsync(path4, opts);
73764
+ return findMade(opts, path4).then((made) => opts.mkdirAsync(path4, opts).then(() => made).catch((er) => {
73895
73765
  if (er.code === "ENOENT")
73896
- return mkdirpManual(path3, opts);
73766
+ return mkdirpManual(path4, opts);
73897
73767
  else
73898
73768
  throw er;
73899
73769
  }));
73900
73770
  };
73901
- var mkdirpNativeSync = (path3, opts) => {
73771
+ var mkdirpNativeSync = (path4, opts) => {
73902
73772
  opts.recursive = true;
73903
- const parent = dirname(path3);
73904
- if (parent === path3)
73905
- return opts.mkdirSync(path3, opts);
73906
- const made = findMadeSync(opts, path3);
73773
+ const parent = dirname(path4);
73774
+ if (parent === path4)
73775
+ return opts.mkdirSync(path4, opts);
73776
+ const made = findMadeSync(opts, path4);
73907
73777
  try {
73908
- opts.mkdirSync(path3, opts);
73778
+ opts.mkdirSync(path4, opts);
73909
73779
  return made;
73910
73780
  } catch (er) {
73911
73781
  if (er.code === "ENOENT")
73912
- return mkdirpManualSync(path3, opts);
73782
+ return mkdirpManualSync(path4, opts);
73913
73783
  else
73914
73784
  throw er;
73915
73785
  }
@@ -73917,12 +73787,12 @@ var require_mkdirp_native = __commonJSMin((exports, module2) => {
73917
73787
  module2.exports = { mkdirpNative, mkdirpNativeSync };
73918
73788
  });
73919
73789
  var require_use_native = __commonJSMin((exports, module2) => {
73920
- var fs2 = __require("fs");
73921
- var version4 = process.env.__TESTING_MKDIRP_NODE_VERSION__ || process.version;
73922
- var versArr = version4.replace(/^v/, "").split(".");
73790
+ var fs3 = __require("fs");
73791
+ var version5 = process.env.__TESTING_MKDIRP_NODE_VERSION__ || process.version;
73792
+ var versArr = version5.replace(/^v/, "").split(".");
73923
73793
  var hasNative = +versArr[0] > 10 || +versArr[0] === 10 && +versArr[1] >= 12;
73924
- var useNative = !hasNative ? () => false : (opts) => opts.mkdir === fs2.mkdir;
73925
- var useNativeSync = !hasNative ? () => false : (opts) => opts.mkdirSync === fs2.mkdirSync;
73794
+ var useNative = !hasNative ? () => false : (opts) => opts.mkdir === fs3.mkdir;
73795
+ var useNativeSync = !hasNative ? () => false : (opts) => opts.mkdirSync === fs3.mkdirSync;
73926
73796
  module2.exports = { useNative, useNativeSync };
73927
73797
  });
73928
73798
  var require_mkdirp = __commonJSMin((exports, module2) => {
@@ -73931,88 +73801,88 @@ var require_mkdirp = __commonJSMin((exports, module2) => {
73931
73801
  var { mkdirpNative, mkdirpNativeSync } = require_mkdirp_native();
73932
73802
  var { mkdirpManual, mkdirpManualSync } = require_mkdirp_manual();
73933
73803
  var { useNative, useNativeSync } = require_use_native();
73934
- var mkdirp = (path3, opts) => {
73935
- path3 = pathArg(path3);
73804
+ var mkdirp = (path4, opts) => {
73805
+ path4 = pathArg(path4);
73936
73806
  opts = optsArg(opts);
73937
- return useNative(opts) ? mkdirpNative(path3, opts) : mkdirpManual(path3, opts);
73807
+ return useNative(opts) ? mkdirpNative(path4, opts) : mkdirpManual(path4, opts);
73938
73808
  };
73939
- var mkdirpSync = (path3, opts) => {
73940
- path3 = pathArg(path3);
73809
+ var mkdirpSync = (path4, opts) => {
73810
+ path4 = pathArg(path4);
73941
73811
  opts = optsArg(opts);
73942
- return useNativeSync(opts) ? mkdirpNativeSync(path3, opts) : mkdirpManualSync(path3, opts);
73812
+ return useNativeSync(opts) ? mkdirpNativeSync(path4, opts) : mkdirpManualSync(path4, opts);
73943
73813
  };
73944
73814
  mkdirp.sync = mkdirpSync;
73945
- mkdirp.native = (path3, opts) => mkdirpNative(pathArg(path3), optsArg(opts));
73946
- mkdirp.manual = (path3, opts) => mkdirpManual(pathArg(path3), optsArg(opts));
73947
- mkdirp.nativeSync = (path3, opts) => mkdirpNativeSync(pathArg(path3), optsArg(opts));
73948
- mkdirp.manualSync = (path3, opts) => mkdirpManualSync(pathArg(path3), optsArg(opts));
73815
+ mkdirp.native = (path4, opts) => mkdirpNative(pathArg(path4), optsArg(opts));
73816
+ mkdirp.manual = (path4, opts) => mkdirpManual(pathArg(path4), optsArg(opts));
73817
+ mkdirp.nativeSync = (path4, opts) => mkdirpNativeSync(pathArg(path4), optsArg(opts));
73818
+ mkdirp.manualSync = (path4, opts) => mkdirpManualSync(pathArg(path4), optsArg(opts));
73949
73819
  module2.exports = mkdirp;
73950
73820
  });
73951
73821
  var require_chownr = __commonJSMin((exports, module2) => {
73952
73822
  "use strict";
73953
- var fs2 = __require("fs");
73954
- var path3 = __require("path");
73955
- var LCHOWN = fs2.lchown ? "lchown" : "chown";
73956
- var LCHOWNSYNC = fs2.lchownSync ? "lchownSync" : "chownSync";
73957
- var needEISDIRHandled = fs2.lchown && !process.version.match(/v1[1-9]+\./) && !process.version.match(/v10\.[6-9]/);
73958
- var lchownSync = (path4, uid, gid) => {
73823
+ var fs3 = __require("fs");
73824
+ var path4 = __require("path");
73825
+ var LCHOWN = fs3.lchown ? "lchown" : "chown";
73826
+ var LCHOWNSYNC = fs3.lchownSync ? "lchownSync" : "chownSync";
73827
+ var needEISDIRHandled = fs3.lchown && !process.version.match(/v1[1-9]+\./) && !process.version.match(/v10\.[6-9]/);
73828
+ var lchownSync = (path5, uid, gid) => {
73959
73829
  try {
73960
- return fs2[LCHOWNSYNC](path4, uid, gid);
73830
+ return fs3[LCHOWNSYNC](path5, uid, gid);
73961
73831
  } catch (er) {
73962
73832
  if (er.code !== "ENOENT")
73963
73833
  throw er;
73964
73834
  }
73965
73835
  };
73966
- var chownSync = (path4, uid, gid) => {
73836
+ var chownSync = (path5, uid, gid) => {
73967
73837
  try {
73968
- return fs2.chownSync(path4, uid, gid);
73838
+ return fs3.chownSync(path5, uid, gid);
73969
73839
  } catch (er) {
73970
73840
  if (er.code !== "ENOENT")
73971
73841
  throw er;
73972
73842
  }
73973
73843
  };
73974
- var handleEISDIR = needEISDIRHandled ? (path4, uid, gid, cb) => (er) => {
73844
+ var handleEISDIR = needEISDIRHandled ? (path5, uid, gid, cb) => (er) => {
73975
73845
  if (!er || er.code !== "EISDIR")
73976
73846
  cb(er);
73977
73847
  else
73978
- fs2.chown(path4, uid, gid, cb);
73848
+ fs3.chown(path5, uid, gid, cb);
73979
73849
  } : (_, __, ___, cb) => cb;
73980
- var handleEISDirSync = needEISDIRHandled ? (path4, uid, gid) => {
73850
+ var handleEISDirSync = needEISDIRHandled ? (path5, uid, gid) => {
73981
73851
  try {
73982
- return lchownSync(path4, uid, gid);
73852
+ return lchownSync(path5, uid, gid);
73983
73853
  } catch (er) {
73984
73854
  if (er.code !== "EISDIR")
73985
73855
  throw er;
73986
- chownSync(path4, uid, gid);
73856
+ chownSync(path5, uid, gid);
73987
73857
  }
73988
- } : (path4, uid, gid) => lchownSync(path4, uid, gid);
73858
+ } : (path5, uid, gid) => lchownSync(path5, uid, gid);
73989
73859
  var nodeVersion = process.version;
73990
- var readdir = (path4, options3, cb) => fs2.readdir(path4, options3, cb);
73991
- var readdirSync = (path4, options3) => fs2.readdirSync(path4, options3);
73860
+ var readdir = (path5, options3, cb) => fs3.readdir(path5, options3, cb);
73861
+ var readdirSync = (path5, options3) => fs3.readdirSync(path5, options3);
73992
73862
  if (/^v4\./.test(nodeVersion))
73993
- readdir = (path4, options3, cb) => fs2.readdir(path4, cb);
73863
+ readdir = (path5, options3, cb) => fs3.readdir(path5, cb);
73994
73864
  var chown = (cpath, uid, gid, cb) => {
73995
- fs2[LCHOWN](cpath, uid, gid, handleEISDIR(cpath, uid, gid, (er) => {
73865
+ fs3[LCHOWN](cpath, uid, gid, handleEISDIR(cpath, uid, gid, (er) => {
73996
73866
  cb(er && er.code !== "ENOENT" ? er : null);
73997
73867
  }));
73998
73868
  };
73999
73869
  var chownrKid = (p, child, uid, gid, cb) => {
74000
73870
  if (typeof child === "string")
74001
- return fs2.lstat(path3.resolve(p, child), (er, stats) => {
73871
+ return fs3.lstat(path4.resolve(p, child), (er, stats) => {
74002
73872
  if (er)
74003
73873
  return cb(er.code !== "ENOENT" ? er : null);
74004
73874
  stats.name = child;
74005
73875
  chownrKid(p, stats, uid, gid, cb);
74006
73876
  });
74007
73877
  if (child.isDirectory()) {
74008
- chownr(path3.resolve(p, child.name), uid, gid, (er) => {
73878
+ chownr(path4.resolve(p, child.name), uid, gid, (er) => {
74009
73879
  if (er)
74010
73880
  return cb(er);
74011
- const cpath = path3.resolve(p, child.name);
73881
+ const cpath = path4.resolve(p, child.name);
74012
73882
  chown(cpath, uid, gid, cb);
74013
73883
  });
74014
73884
  } else {
74015
- const cpath = path3.resolve(p, child.name);
73885
+ const cpath = path4.resolve(p, child.name);
74016
73886
  chown(cpath, uid, gid, cb);
74017
73887
  }
74018
73888
  };
@@ -74042,7 +73912,7 @@ var require_chownr = __commonJSMin((exports, module2) => {
74042
73912
  var chownrKidSync = (p, child, uid, gid) => {
74043
73913
  if (typeof child === "string") {
74044
73914
  try {
74045
- const stats = fs2.lstatSync(path3.resolve(p, child));
73915
+ const stats = fs3.lstatSync(path4.resolve(p, child));
74046
73916
  stats.name = child;
74047
73917
  child = stats;
74048
73918
  } catch (er) {
@@ -74053,8 +73923,8 @@ var require_chownr = __commonJSMin((exports, module2) => {
74053
73923
  }
74054
73924
  }
74055
73925
  if (child.isDirectory())
74056
- chownrSync(path3.resolve(p, child.name), uid, gid);
74057
- handleEISDirSync(path3.resolve(p, child.name), uid, gid);
73926
+ chownrSync(path4.resolve(p, child.name), uid, gid);
73927
+ handleEISDirSync(path4.resolve(p, child.name), uid, gid);
74058
73928
  };
74059
73929
  var chownrSync = (p, uid, gid) => {
74060
73930
  let children;
@@ -74078,14 +73948,14 @@ var require_chownr = __commonJSMin((exports, module2) => {
74078
73948
  var require_mkdir = __commonJSMin((exports, module2) => {
74079
73949
  "use strict";
74080
73950
  var mkdirp = require_mkdirp();
74081
- var fs2 = __require("fs");
74082
- var path3 = __require("path");
73951
+ var fs3 = __require("fs");
73952
+ var path4 = __require("path");
74083
73953
  var chownr = require_chownr();
74084
73954
  var normPath = require_normalize_windows_path();
74085
73955
  var SymlinkError = class extends Error {
74086
- constructor(symlink, path4) {
73956
+ constructor(symlink, path5) {
74087
73957
  super("Cannot extract through symbolic link");
74088
- this.path = path4;
73958
+ this.path = path5;
74089
73959
  this.symlink = symlink;
74090
73960
  }
74091
73961
  get name() {
@@ -74093,9 +73963,9 @@ var require_mkdir = __commonJSMin((exports, module2) => {
74093
73963
  }
74094
73964
  };
74095
73965
  var CwdError = class extends Error {
74096
- constructor(path4, code) {
74097
- super(code + ": Cannot cd into '" + path4 + "'");
74098
- this.path = path4;
73966
+ constructor(path5, code) {
73967
+ super(code + ": Cannot cd into '" + path5 + "'");
73968
+ this.path = path5;
74099
73969
  this.code = code;
74100
73970
  }
74101
73971
  get name() {
@@ -74105,7 +73975,7 @@ var require_mkdir = __commonJSMin((exports, module2) => {
74105
73975
  var cGet = (cache, key) => cache.get(normPath(key));
74106
73976
  var cSet = (cache, key, val) => cache.set(normPath(key), val);
74107
73977
  var checkCwd = (dir, cb) => {
74108
- fs2.stat(dir, (er, st) => {
73978
+ fs3.stat(dir, (er, st) => {
74109
73979
  if (er || !st.isDirectory())
74110
73980
  er = new CwdError(dir, er && er.code || "ENOTDIR");
74111
73981
  cb(er);
@@ -74131,7 +74001,7 @@ var require_mkdir = __commonJSMin((exports, module2) => {
74131
74001
  if (created && doChown)
74132
74002
  chownr(created, uid, gid, (er2) => done(er2));
74133
74003
  else if (needChmod)
74134
- fs2.chmod(dir, mode, cb);
74004
+ fs3.chmod(dir, mode, cb);
74135
74005
  else
74136
74006
  cb();
74137
74007
  }
@@ -74142,7 +74012,7 @@ var require_mkdir = __commonJSMin((exports, module2) => {
74142
74012
  return checkCwd(dir, done);
74143
74013
  if (preserve)
74144
74014
  return mkdirp(dir, { mode }).then((made) => done(null, made), done);
74145
- const sub = normPath(path3.relative(cwd, dir));
74015
+ const sub = normPath(path4.relative(cwd, dir));
74146
74016
  const parts = sub.split("/");
74147
74017
  mkdir_(cwd, parts, mode, cache, unlink, cwd, null, done);
74148
74018
  };
@@ -74150,24 +74020,24 @@ var require_mkdir = __commonJSMin((exports, module2) => {
74150
74020
  if (!parts.length)
74151
74021
  return cb(null, created);
74152
74022
  const p = parts.shift();
74153
- const part = normPath(path3.resolve(base + "/" + p));
74023
+ const part = normPath(path4.resolve(base + "/" + p));
74154
74024
  if (cGet(cache, part))
74155
74025
  return mkdir_(part, parts, mode, cache, unlink, cwd, created, cb);
74156
- fs2.mkdir(part, mode, onmkdir(part, parts, mode, cache, unlink, cwd, created, cb));
74026
+ fs3.mkdir(part, mode, onmkdir(part, parts, mode, cache, unlink, cwd, created, cb));
74157
74027
  };
74158
74028
  var onmkdir = (part, parts, mode, cache, unlink, cwd, created, cb) => (er) => {
74159
74029
  if (er) {
74160
- fs2.lstat(part, (statEr, st) => {
74030
+ fs3.lstat(part, (statEr, st) => {
74161
74031
  if (statEr) {
74162
74032
  statEr.path = statEr.path && normPath(statEr.path);
74163
74033
  cb(statEr);
74164
74034
  } else if (st.isDirectory())
74165
74035
  mkdir_(part, parts, mode, cache, unlink, cwd, created, cb);
74166
74036
  else if (unlink) {
74167
- fs2.unlink(part, (er2) => {
74037
+ fs3.unlink(part, (er2) => {
74168
74038
  if (er2)
74169
74039
  return cb(er2);
74170
- fs2.mkdir(part, mode, onmkdir(part, parts, mode, cache, unlink, cwd, created, cb));
74040
+ fs3.mkdir(part, mode, onmkdir(part, parts, mode, cache, unlink, cwd, created, cb));
74171
74041
  });
74172
74042
  } else if (st.isSymbolicLink())
74173
74043
  return cb(new SymlinkError(part, part + "/" + parts.join("/")));
@@ -74183,7 +74053,7 @@ var require_mkdir = __commonJSMin((exports, module2) => {
74183
74053
  let ok = false;
74184
74054
  let code = "ENOTDIR";
74185
74055
  try {
74186
- ok = fs2.statSync(dir).isDirectory();
74056
+ ok = fs3.statSync(dir).isDirectory();
74187
74057
  } catch (er) {
74188
74058
  code = er.code;
74189
74059
  } finally {
@@ -74208,7 +74078,7 @@ var require_mkdir = __commonJSMin((exports, module2) => {
74208
74078
  if (created2 && doChown)
74209
74079
  chownr.sync(created2, uid, gid);
74210
74080
  if (needChmod)
74211
- fs2.chmodSync(dir, mode);
74081
+ fs3.chmodSync(dir, mode);
74212
74082
  };
74213
74083
  if (cache && cGet(cache, dir) === true)
74214
74084
  return done();
@@ -74218,25 +74088,25 @@ var require_mkdir = __commonJSMin((exports, module2) => {
74218
74088
  }
74219
74089
  if (preserve)
74220
74090
  return done(mkdirp.sync(dir, mode));
74221
- const sub = normPath(path3.relative(cwd, dir));
74091
+ const sub = normPath(path4.relative(cwd, dir));
74222
74092
  const parts = sub.split("/");
74223
74093
  let created = null;
74224
74094
  for (let p = parts.shift(), part = cwd; p && (part += "/" + p); p = parts.shift()) {
74225
- part = normPath(path3.resolve(part));
74095
+ part = normPath(path4.resolve(part));
74226
74096
  if (cGet(cache, part))
74227
74097
  continue;
74228
74098
  try {
74229
- fs2.mkdirSync(part, mode);
74099
+ fs3.mkdirSync(part, mode);
74230
74100
  created = created || part;
74231
74101
  cSet(cache, part, true);
74232
74102
  } catch (er) {
74233
- const st = fs2.lstatSync(part);
74103
+ const st = fs3.lstatSync(part);
74234
74104
  if (st.isDirectory()) {
74235
74105
  cSet(cache, part, true);
74236
74106
  continue;
74237
74107
  } else if (unlink) {
74238
- fs2.unlinkSync(part);
74239
- fs2.mkdirSync(part, mode);
74108
+ fs3.unlinkSync(part);
74109
+ fs3.mkdirSync(part, mode);
74240
74110
  created = created || part;
74241
74111
  cSet(cache, part, true);
74242
74112
  continue;
@@ -74266,11 +74136,11 @@ var require_path_reservations = __commonJSMin((exports, module2) => {
74266
74136
  module2.exports = () => {
74267
74137
  const queues = /* @__PURE__ */ new Map();
74268
74138
  const reservations = /* @__PURE__ */ new Map();
74269
- const getDirs = (path3) => {
74270
- const dirs = path3.split("/").slice(0, -1).reduce((set, path4) => {
74139
+ const getDirs = (path4) => {
74140
+ const dirs = path4.split("/").slice(0, -1).reduce((set, path5) => {
74271
74141
  if (set.length)
74272
- path4 = join(set[set.length - 1], path4);
74273
- set.push(path4 || "/");
74142
+ path5 = join(set[set.length - 1], path5);
74143
+ set.push(path5 || "/");
74274
74144
  return set;
74275
74145
  }, []);
74276
74146
  return dirs;
@@ -74281,8 +74151,8 @@ var require_path_reservations = __commonJSMin((exports, module2) => {
74281
74151
  if (!res)
74282
74152
  throw new Error("function does not have any path reservations");
74283
74153
  return {
74284
- paths: res.paths.map((path3) => queues.get(path3)),
74285
- dirs: [...res.dirs].map((path3) => queues.get(path3))
74154
+ paths: res.paths.map((path4) => queues.get(path4)),
74155
+ dirs: [...res.dirs].map((path4) => queues.get(path4))
74286
74156
  };
74287
74157
  };
74288
74158
  const check = (fn) => {
@@ -74301,11 +74171,11 @@ var require_path_reservations = __commonJSMin((exports, module2) => {
74301
74171
  return false;
74302
74172
  const { paths, dirs } = reservations.get(fn);
74303
74173
  const next = /* @__PURE__ */ new Set();
74304
- paths.forEach((path3) => {
74305
- const q = queues.get(path3);
74174
+ paths.forEach((path4) => {
74175
+ const q = queues.get(path4);
74306
74176
  assert.equal(q[0], fn);
74307
74177
  if (q.length === 1)
74308
- queues.delete(path3);
74178
+ queues.delete(path4);
74309
74179
  else {
74310
74180
  q.shift();
74311
74181
  if (typeof q[0] === "function")
@@ -74333,12 +74203,12 @@ var require_path_reservations = __commonJSMin((exports, module2) => {
74333
74203
  paths = isWindows ? ["win32 parallelization disabled"] : paths.map((p) => {
74334
74204
  return normalize(stripSlashes(join(p))).toLowerCase();
74335
74205
  });
74336
- const dirs = new Set(paths.map((path3) => getDirs(path3)).reduce((a, b) => a.concat(b)));
74206
+ const dirs = new Set(paths.map((path4) => getDirs(path4)).reduce((a, b) => a.concat(b)));
74337
74207
  reservations.set(fn, { dirs, paths });
74338
- paths.forEach((path3) => {
74339
- const q = queues.get(path3);
74208
+ paths.forEach((path4) => {
74209
+ const q = queues.get(path4);
74340
74210
  if (!q)
74341
- queues.set(path3, [fn]);
74211
+ queues.set(path4, [fn]);
74342
74212
  else
74343
74213
  q.push(fn);
74344
74214
  });
@@ -74359,8 +74229,8 @@ var require_path_reservations = __commonJSMin((exports, module2) => {
74359
74229
  var require_get_write_flag = __commonJSMin((exports, module2) => {
74360
74230
  var platform = process.env.__FAKE_PLATFORM__ || process.platform;
74361
74231
  var isWindows = platform === "win32";
74362
- var fs2 = global.__FAKE_TESTING_FS__ || __require("fs");
74363
- var { O_CREAT, O_TRUNC, O_WRONLY, UV_FS_O_FILEMAP = 0 } = fs2.constants;
74232
+ var fs3 = global.__FAKE_TESTING_FS__ || __require("fs");
74233
+ var { O_CREAT, O_TRUNC, O_WRONLY, UV_FS_O_FILEMAP = 0 } = fs3.constants;
74364
74234
  var fMapEnabled = isWindows && !!UV_FS_O_FILEMAP;
74365
74235
  var fMapLimit = 512 * 1024;
74366
74236
  var fMapFlag = UV_FS_O_FILEMAP | O_TRUNC | O_CREAT | O_WRONLY;
@@ -74370,9 +74240,9 @@ var require_unpack = __commonJSMin((exports, module2) => {
74370
74240
  "use strict";
74371
74241
  var assert = __require("assert");
74372
74242
  var Parser = require_parse();
74373
- var fs2 = __require("fs");
74243
+ var fs3 = __require("fs");
74374
74244
  var fsm = require_fs_minipass();
74375
- var path3 = __require("path");
74245
+ var path4 = __require("path");
74376
74246
  var mkdir = require_mkdir();
74377
74247
  var wc = require_winchars();
74378
74248
  var pathReservations = require_path_reservations();
@@ -74409,31 +74279,31 @@ var require_unpack = __commonJSMin((exports, module2) => {
74409
74279
  var getFlag = require_get_write_flag();
74410
74280
  var platform = process.env.TESTING_TAR_FAKE_PLATFORM || process.platform;
74411
74281
  var isWindows = platform === "win32";
74412
- var unlinkFile = (path4, cb) => {
74282
+ var unlinkFile = (path5, cb) => {
74413
74283
  if (!isWindows)
74414
- return fs2.unlink(path4, cb);
74415
- const name4 = path4 + ".DELETE." + crypto.randomBytes(16).toString("hex");
74416
- fs2.rename(path4, name4, (er) => {
74284
+ return fs3.unlink(path5, cb);
74285
+ const name4 = path5 + ".DELETE." + crypto.randomBytes(16).toString("hex");
74286
+ fs3.rename(path5, name4, (er) => {
74417
74287
  if (er)
74418
74288
  return cb(er);
74419
- fs2.unlink(name4, cb);
74289
+ fs3.unlink(name4, cb);
74420
74290
  });
74421
74291
  };
74422
- var unlinkFileSync = (path4) => {
74292
+ var unlinkFileSync = (path5) => {
74423
74293
  if (!isWindows)
74424
- return fs2.unlinkSync(path4);
74425
- const name4 = path4 + ".DELETE." + crypto.randomBytes(16).toString("hex");
74426
- fs2.renameSync(path4, name4);
74427
- fs2.unlinkSync(name4);
74294
+ return fs3.unlinkSync(path5);
74295
+ const name4 = path5 + ".DELETE." + crypto.randomBytes(16).toString("hex");
74296
+ fs3.renameSync(path5, name4);
74297
+ fs3.unlinkSync(name4);
74428
74298
  };
74429
74299
  var uint32 = (a, b, c) => a === a >>> 0 ? a : b === b >>> 0 ? b : c;
74430
- var cacheKeyNormalize = (path4) => normalize(stripSlash(normPath(path4))).toLowerCase();
74300
+ var cacheKeyNormalize = (path5) => normalize(stripSlash(normPath(path5))).toLowerCase();
74431
74301
  var pruneCache = (cache, abs) => {
74432
74302
  abs = cacheKeyNormalize(abs);
74433
- for (const path4 of cache.keys()) {
74434
- const pnorm = cacheKeyNormalize(path4);
74303
+ for (const path5 of cache.keys()) {
74304
+ const pnorm = cacheKeyNormalize(path5);
74435
74305
  if (pnorm === abs || pnorm.indexOf(abs + "/") === 0)
74436
- cache.delete(path4);
74306
+ cache.delete(path5);
74437
74307
  }
74438
74308
  };
74439
74309
  var dropCache = (cache) => {
@@ -74484,7 +74354,7 @@ var require_unpack = __commonJSMin((exports, module2) => {
74484
74354
  this.noMtime = !!opt.noMtime;
74485
74355
  this.preservePaths = !!opt.preservePaths;
74486
74356
  this.unlink = !!opt.unlink;
74487
- this.cwd = normPath(path3.resolve(opt.cwd || process.cwd()));
74357
+ this.cwd = normPath(path4.resolve(opt.cwd || process.cwd()));
74488
74358
  this.strip = +opt.strip || 0;
74489
74359
  this.processUmask = opt.noChmod ? 0 : process.umask();
74490
74360
  this.umask = typeof opt.umask === "number" ? opt.umask : this.processUmask;
@@ -74538,10 +74408,10 @@ var require_unpack = __commonJSMin((exports, module2) => {
74538
74408
  });
74539
74409
  }
74540
74410
  }
74541
- if (path3.isAbsolute(entry.path))
74542
- entry.absolute = normPath(path3.resolve(entry.path));
74411
+ if (path4.isAbsolute(entry.path))
74412
+ entry.absolute = normPath(path4.resolve(entry.path));
74543
74413
  else
74544
- entry.absolute = normPath(path3.resolve(this.cwd, entry.path));
74414
+ entry.absolute = normPath(path4.resolve(this.cwd, entry.path));
74545
74415
  if (!this.preservePaths && entry.absolute.indexOf(this.cwd + "/") !== 0 && entry.absolute !== this.cwd) {
74546
74416
  this.warn("TAR_ENTRY_ERROR", "path escaped extraction target", {
74547
74417
  entry,
@@ -74554,9 +74424,9 @@ var require_unpack = __commonJSMin((exports, module2) => {
74554
74424
  if (entry.absolute === this.cwd && entry.type !== "Directory" && entry.type !== "GNUDumpDir")
74555
74425
  return false;
74556
74426
  if (this.win32) {
74557
- const { root: aRoot } = path3.win32.parse(entry.absolute);
74427
+ const { root: aRoot } = path4.win32.parse(entry.absolute);
74558
74428
  entry.absolute = aRoot + wc.encode(entry.absolute.substr(aRoot.length));
74559
- const { root: pRoot } = path3.win32.parse(entry.path);
74429
+ const { root: pRoot } = path4.win32.parse(entry.path);
74560
74430
  entry.path = pRoot + wc.encode(entry.path.substr(pRoot.length));
74561
74431
  }
74562
74432
  return true;
@@ -74625,7 +74495,7 @@ var require_unpack = __commonJSMin((exports, module2) => {
74625
74495
  });
74626
74496
  stream.on("error", (er) => {
74627
74497
  if (stream.fd)
74628
- fs2.close(stream.fd, () => {
74498
+ fs3.close(stream.fd, () => {
74629
74499
  });
74630
74500
  stream.write = () => true;
74631
74501
  this[ONERROR](er, entry);
@@ -74635,14 +74505,14 @@ var require_unpack = __commonJSMin((exports, module2) => {
74635
74505
  const done = (er) => {
74636
74506
  if (er) {
74637
74507
  if (stream.fd)
74638
- fs2.close(stream.fd, () => {
74508
+ fs3.close(stream.fd, () => {
74639
74509
  });
74640
74510
  this[ONERROR](er, entry);
74641
74511
  fullyDone();
74642
74512
  return;
74643
74513
  }
74644
74514
  if (--actions === 0) {
74645
- fs2.close(stream.fd, (er2) => {
74515
+ fs3.close(stream.fd, (er2) => {
74646
74516
  if (er2)
74647
74517
  this[ONERROR](er2, entry);
74648
74518
  else
@@ -74658,13 +74528,13 @@ var require_unpack = __commonJSMin((exports, module2) => {
74658
74528
  actions++;
74659
74529
  const atime = entry.atime || new Date();
74660
74530
  const mtime = entry.mtime;
74661
- fs2.futimes(fd, atime, mtime, (er) => er ? fs2.utimes(abs, atime, mtime, (er2) => done(er2 && er)) : done());
74531
+ fs3.futimes(fd, atime, mtime, (er) => er ? fs3.utimes(abs, atime, mtime, (er2) => done(er2 && er)) : done());
74662
74532
  }
74663
74533
  if (this[DOCHOWN](entry)) {
74664
74534
  actions++;
74665
74535
  const uid = this[UID](entry);
74666
74536
  const gid = this[GID](entry);
74667
- fs2.fchown(fd, uid, gid, (er) => er ? fs2.chown(abs, uid, gid, (er2) => done(er2 && er)) : done());
74537
+ fs3.fchown(fd, uid, gid, (er) => er ? fs3.chown(abs, uid, gid, (er2) => done(er2 && er)) : done());
74668
74538
  }
74669
74539
  done();
74670
74540
  });
@@ -74696,11 +74566,11 @@ var require_unpack = __commonJSMin((exports, module2) => {
74696
74566
  };
74697
74567
  if (entry.mtime && !this.noMtime) {
74698
74568
  actions++;
74699
- fs2.utimes(entry.absolute, entry.atime || new Date(), entry.mtime, done);
74569
+ fs3.utimes(entry.absolute, entry.atime || new Date(), entry.mtime, done);
74700
74570
  }
74701
74571
  if (this[DOCHOWN](entry)) {
74702
74572
  actions++;
74703
- fs2.chown(entry.absolute, this[UID](entry), this[GID](entry), done);
74573
+ fs3.chown(entry.absolute, this[UID](entry), this[GID](entry), done);
74704
74574
  }
74705
74575
  done();
74706
74576
  });
@@ -74714,7 +74584,7 @@ var require_unpack = __commonJSMin((exports, module2) => {
74714
74584
  this[LINK](entry, entry.linkpath, "symlink", done);
74715
74585
  }
74716
74586
  [HARDLINK](entry, done) {
74717
- const linkpath = normPath(path3.resolve(this.cwd, entry.linkpath));
74587
+ const linkpath = normPath(path4.resolve(this.cwd, entry.linkpath));
74718
74588
  this[LINK](entry, linkpath, "link", done);
74719
74589
  }
74720
74590
  [PEND]() {
@@ -74763,7 +74633,7 @@ var require_unpack = __commonJSMin((exports, module2) => {
74763
74633
  };
74764
74634
  const start = () => {
74765
74635
  if (entry.absolute !== this.cwd) {
74766
- const parent = normPath(path3.dirname(entry.absolute));
74636
+ const parent = normPath(path4.dirname(entry.absolute));
74767
74637
  if (parent !== this.cwd) {
74768
74638
  return this[MKDIR](parent, this.dmode, (er) => {
74769
74639
  if (er) {
@@ -74778,7 +74648,7 @@ var require_unpack = __commonJSMin((exports, module2) => {
74778
74648
  afterMakeParent();
74779
74649
  };
74780
74650
  const afterMakeParent = () => {
74781
- fs2.lstat(entry.absolute, (lstatEr, st) => {
74651
+ fs3.lstat(entry.absolute, (lstatEr, st) => {
74782
74652
  if (st && (this.keep || this.newer && st.mtime > entry.mtime)) {
74783
74653
  this[SKIP](entry);
74784
74654
  done();
@@ -74792,10 +74662,10 @@ var require_unpack = __commonJSMin((exports, module2) => {
74792
74662
  const afterChmod = (er) => this[MAKEFS](er, entry, done);
74793
74663
  if (!needChmod)
74794
74664
  return afterChmod();
74795
- return fs2.chmod(entry.absolute, entry.mode, afterChmod);
74665
+ return fs3.chmod(entry.absolute, entry.mode, afterChmod);
74796
74666
  }
74797
74667
  if (entry.absolute !== this.cwd) {
74798
- return fs2.rmdir(entry.absolute, (er) => this[MAKEFS](er, entry, done));
74668
+ return fs3.rmdir(entry.absolute, (er) => this[MAKEFS](er, entry, done));
74799
74669
  }
74800
74670
  }
74801
74671
  if (entry.absolute === this.cwd)
@@ -74829,7 +74699,7 @@ var require_unpack = __commonJSMin((exports, module2) => {
74829
74699
  }
74830
74700
  }
74831
74701
  [LINK](entry, linkpath, link, done) {
74832
- fs2[link](linkpath, entry.absolute, (er) => {
74702
+ fs3[link](linkpath, entry.absolute, (er) => {
74833
74703
  if (er)
74834
74704
  this[ONERROR](er, entry);
74835
74705
  else {
@@ -74861,14 +74731,14 @@ var require_unpack = __commonJSMin((exports, module2) => {
74861
74731
  this[CHECKED_CWD] = true;
74862
74732
  }
74863
74733
  if (entry.absolute !== this.cwd) {
74864
- const parent = normPath(path3.dirname(entry.absolute));
74734
+ const parent = normPath(path4.dirname(entry.absolute));
74865
74735
  if (parent !== this.cwd) {
74866
74736
  const mkParent = this[MKDIR](parent, this.dmode);
74867
74737
  if (mkParent)
74868
74738
  return this[ONERROR](mkParent, entry);
74869
74739
  }
74870
74740
  }
74871
- const [lstatEr, st] = callSync(() => fs2.lstatSync(entry.absolute));
74741
+ const [lstatEr, st] = callSync(() => fs3.lstatSync(entry.absolute));
74872
74742
  if (st && (this.keep || this.newer && st.mtime > entry.mtime))
74873
74743
  return this[SKIP](entry);
74874
74744
  if (lstatEr || this[ISREUSABLE](entry, st))
@@ -74877,11 +74747,11 @@ var require_unpack = __commonJSMin((exports, module2) => {
74877
74747
  if (entry.type === "Directory") {
74878
74748
  const needChmod = !this.noChmod && entry.mode && (st.mode & 4095) !== entry.mode;
74879
74749
  const [er3] = needChmod ? callSync(() => {
74880
- fs2.chmodSync(entry.absolute, entry.mode);
74750
+ fs3.chmodSync(entry.absolute, entry.mode);
74881
74751
  }) : [];
74882
74752
  return this[MAKEFS](er3, entry);
74883
74753
  }
74884
- const [er2] = callSync(() => fs2.rmdirSync(entry.absolute));
74754
+ const [er2] = callSync(() => fs3.rmdirSync(entry.absolute));
74885
74755
  this[MAKEFS](er2, entry);
74886
74756
  }
74887
74757
  const [er] = entry.absolute === this.cwd ? [] : callSync(() => unlinkFileSync(entry.absolute));
@@ -74892,7 +74762,7 @@ var require_unpack = __commonJSMin((exports, module2) => {
74892
74762
  const oner = (er) => {
74893
74763
  let closeError;
74894
74764
  try {
74895
- fs2.closeSync(fd);
74765
+ fs3.closeSync(fd);
74896
74766
  } catch (e) {
74897
74767
  closeError = e;
74898
74768
  }
@@ -74902,7 +74772,7 @@ var require_unpack = __commonJSMin((exports, module2) => {
74902
74772
  };
74903
74773
  let fd;
74904
74774
  try {
74905
- fd = fs2.openSync(entry.absolute, getFlag(entry.size), mode);
74775
+ fd = fs3.openSync(entry.absolute, getFlag(entry.size), mode);
74906
74776
  } catch (er) {
74907
74777
  return oner(er);
74908
74778
  }
@@ -74913,7 +74783,7 @@ var require_unpack = __commonJSMin((exports, module2) => {
74913
74783
  }
74914
74784
  tx.on("data", (chunk) => {
74915
74785
  try {
74916
- fs2.writeSync(fd, chunk, 0, chunk.length);
74786
+ fs3.writeSync(fd, chunk, 0, chunk.length);
74917
74787
  } catch (er) {
74918
74788
  oner(er);
74919
74789
  }
@@ -74924,10 +74794,10 @@ var require_unpack = __commonJSMin((exports, module2) => {
74924
74794
  const atime = entry.atime || new Date();
74925
74795
  const mtime = entry.mtime;
74926
74796
  try {
74927
- fs2.futimesSync(fd, atime, mtime);
74797
+ fs3.futimesSync(fd, atime, mtime);
74928
74798
  } catch (futimeser) {
74929
74799
  try {
74930
- fs2.utimesSync(entry.absolute, atime, mtime);
74800
+ fs3.utimesSync(entry.absolute, atime, mtime);
74931
74801
  } catch (utimeser) {
74932
74802
  er = futimeser;
74933
74803
  }
@@ -74937,10 +74807,10 @@ var require_unpack = __commonJSMin((exports, module2) => {
74937
74807
  const uid = this[UID](entry);
74938
74808
  const gid = this[GID](entry);
74939
74809
  try {
74940
- fs2.fchownSync(fd, uid, gid);
74810
+ fs3.fchownSync(fd, uid, gid);
74941
74811
  } catch (fchowner) {
74942
74812
  try {
74943
- fs2.chownSync(entry.absolute, uid, gid);
74813
+ fs3.chownSync(entry.absolute, uid, gid);
74944
74814
  } catch (chowner) {
74945
74815
  er = er || fchowner;
74946
74816
  }
@@ -74959,13 +74829,13 @@ var require_unpack = __commonJSMin((exports, module2) => {
74959
74829
  }
74960
74830
  if (entry.mtime && !this.noMtime) {
74961
74831
  try {
74962
- fs2.utimesSync(entry.absolute, entry.atime || new Date(), entry.mtime);
74832
+ fs3.utimesSync(entry.absolute, entry.atime || new Date(), entry.mtime);
74963
74833
  } catch (er2) {
74964
74834
  }
74965
74835
  }
74966
74836
  if (this[DOCHOWN](entry)) {
74967
74837
  try {
74968
- fs2.chownSync(entry.absolute, this[UID](entry), this[GID](entry));
74838
+ fs3.chownSync(entry.absolute, this[UID](entry), this[GID](entry));
74969
74839
  } catch (er2) {
74970
74840
  }
74971
74841
  }
@@ -74992,7 +74862,7 @@ var require_unpack = __commonJSMin((exports, module2) => {
74992
74862
  }
74993
74863
  [LINK](entry, linkpath, link, done) {
74994
74864
  try {
74995
- fs2[link + "Sync"](linkpath, entry.absolute);
74865
+ fs3[link + "Sync"](linkpath, entry.absolute);
74996
74866
  done();
74997
74867
  entry.resume();
74998
74868
  } catch (er) {
@@ -75007,9 +74877,9 @@ var require_extract = __commonJSMin((exports, module2) => {
75007
74877
  "use strict";
75008
74878
  var hlo = require_high_level_opt();
75009
74879
  var Unpack = require_unpack();
75010
- var fs2 = __require("fs");
74880
+ var fs3 = __require("fs");
75011
74881
  var fsm = require_fs_minipass();
75012
- var path3 = __require("path");
74882
+ var path4 = __require("path");
75013
74883
  var stripSlash = require_strip_trailing_slashes();
75014
74884
  module2.exports = (opt_, files, cb) => {
75015
74885
  if (typeof opt_ === "function")
@@ -75035,8 +74905,8 @@ var require_extract = __commonJSMin((exports, module2) => {
75035
74905
  const map = new Map(files.map((f) => [stripSlash(f), true]));
75036
74906
  const filter = opt.filter;
75037
74907
  const mapHas = (file, r) => {
75038
- const root = r || path3.parse(file).root || ".";
75039
- const ret = file === root ? false : map.has(file) ? map.get(file) : mapHas(path3.dirname(file), root);
74908
+ const root = r || path4.parse(file).root || ".";
74909
+ const ret = file === root ? false : map.has(file) ? map.get(file) : mapHas(path4.dirname(file), root);
75040
74910
  map.set(file, ret);
75041
74911
  return ret;
75042
74912
  };
@@ -75045,7 +74915,7 @@ var require_extract = __commonJSMin((exports, module2) => {
75045
74915
  var extractFileSync = (opt) => {
75046
74916
  const u = new Unpack.Sync(opt);
75047
74917
  const file = opt.file;
75048
- const stat = fs2.statSync(file);
74918
+ const stat = fs3.statSync(file);
75049
74919
  const readSize = opt.maxReadSize || 16 * 1024 * 1024;
75050
74920
  const stream = new fsm.ReadStreamSync(file, {
75051
74921
  readSize,
@@ -75060,7 +74930,7 @@ var require_extract = __commonJSMin((exports, module2) => {
75060
74930
  const p = new Promise((resolve, reject) => {
75061
74931
  u.on("error", reject);
75062
74932
  u.on("close", resolve);
75063
- fs2.stat(file, (er, stat) => {
74933
+ fs3.stat(file, (er, stat) => {
75064
74934
  if (er)
75065
74935
  reject(er);
75066
74936
  else {
@@ -75146,12 +75016,12 @@ var require_getNpmVersion = __commonJSMin((exports) => {
75146
75016
  var _constants = require_constants6();
75147
75017
  async function getNpmVersion(packageName, options3) {
75148
75018
  const {
75149
- version: version4,
75019
+ version: version5,
75150
75020
  registryUrl
75151
75021
  } = options3 || {};
75152
75022
  const params = ["view"];
75153
- if (version4) {
75154
- params.push(`${packageName}@${version4}`);
75023
+ if (version5) {
75024
+ params.push(`${packageName}@${version5}`);
75155
75025
  } else {
75156
75026
  params.push(packageName);
75157
75027
  }
@@ -75239,20 +75109,20 @@ var require_downloadPackage = __commonJSMin((exports) => {
75239
75109
  registryUrl,
75240
75110
  install
75241
75111
  } = options3;
75242
- const version4 = await (0, _getNpmVersion.getNpmVersion)(pkgName, {
75112
+ const version5 = await (0, _getNpmVersion.getNpmVersion)(pkgName, {
75243
75113
  registryUrl,
75244
75114
  version: pkgVersion
75245
75115
  });
75246
- if (version4 === void 0) {
75116
+ if (version5 === void 0) {
75247
75117
  throw new Error(`package ${pkgName}@${pkgVersion} not found in registry`);
75248
75118
  }
75249
- const targetDir = `${_os.default.tmpdir()}/csmith-generator/${pkgName}@${version4}`;
75119
+ const targetDir = `${_os.default.tmpdir()}/csmith-generator/${pkgName}@${version5}`;
75250
75120
  if (await (0, _fsExists.fsExists)(targetDir) && await isValidCache(targetDir)) {
75251
75121
  return targetDir;
75252
75122
  }
75253
75123
  await _utils.fs.remove(targetDir);
75254
75124
  await _utils.fs.mkdirp(targetDir);
75255
- const tarballPkg = await (0, _getNpmTarballUrl.getNpmTarballUrl)(pkgName, version4, {
75125
+ const tarballPkg = await (0, _getNpmTarballUrl.getNpmTarballUrl)(pkgName, version5, {
75256
75126
  registryUrl
75257
75127
  });
75258
75128
  await downloadAndDecompressTargz(tarballPkg, targetDir);
@@ -75409,9 +75279,9 @@ var require_materials = __commonJSMin((exports) => {
75409
75279
  async loadRemoteGenerator(generator) {
75410
75280
  const {
75411
75281
  name: name4,
75412
- version: version4
75282
+ version: version5
75413
75283
  } = (0, _utils.getPackageInfo)(generator);
75414
- const localPath = await (0, _utils.downloadPackage)(name4, version4, {
75284
+ const localPath = await (0, _utils.downloadPackage)(name4, version5, {
75415
75285
  registryUrl: this.registryUrl,
75416
75286
  install: true
75417
75287
  });
@@ -75585,8 +75455,9 @@ var require_node = __commonJSMin((exports) => {
75585
75455
  });
75586
75456
  });
75587
75457
  });
75588
- var import_utils4 = __toESM2(require_dist());
75458
+ var import_utils5 = __toESM2(require_dist());
75589
75459
  var import_codesmith = __toESM2(require_node());
75460
+ var version4 = "2.0.0-beta.1";
75590
75461
  function _classCallCheck(instance, Constructor) {
75591
75462
  if (!(instance instanceof Constructor)) {
75592
75463
  throw new TypeError("Cannot call a class as a function");
@@ -75720,15 +75591,21 @@ var ZH_LOCALE = {
75720
75591
  module: "\u4E00\u952E\u521B\u5EFA\u6A21\u5757\u5316\u5E94\u7528(\u4F7F\u7528\u9ED8\u8BA4\u914D\u7F6E)",
75721
75592
  monorepo: "\u4E00\u952E\u5E38\u89C1 Monorepo \u5E94\u7528(\u4F7F\u7528\u9ED8\u8BA4\u914D\u7F6E)",
75722
75593
  config: "\u521B\u5EFA\u9879\u76EE\u9ED8\u8BA4\u914D\u7F6E(JSON \u5B57\u7B26\u4E32)",
75594
+ generator: "\u4F7F\u7528\u81EA\u5B9A\u4E49\u751F\u6210\u5668",
75723
75595
  packages: "\u521B\u5EFA\u9879\u76EE\u6307\u5B9A\u7279\u5B9A\u4F9D\u8D56\u7248\u672C\u4FE1\u606F",
75724
75596
  distTag: "\u751F\u6210\u9879\u76EE\u65F6\u751F\u6210\u5668\u4F7F\u7528\u7279\u6B8A\u7684 npm Tag",
75725
75597
  registry: "\u5728\u521B\u5EFA\u8FC7\u7A0B\u4E2D\u5B9A\u5236 npm Registry",
75726
75598
  debug: "\u5F00\u542F Debug \u6A21\u5F0F\uFF0C\u6253\u5370\u8C03\u8BD5\u65E5\u5FD7\u4FE1\u606F",
75727
- plugin: "\u4F7F\u7528\u751F\u6210\u5668\u63D2\u4EF6\u521B\u5EFA\u65B0\u7684\u5DE5\u7A0B\u65B9\u6848\u7C7B\u578B\u6216\u5B9A\u5236\u5316 Modern.js \u5DE5\u7A0B\u65B9\u6848"
75599
+ plugin: "\u4F7F\u7528\u751F\u6210\u5668\u63D2\u4EF6\u521B\u5EFA\u65B0\u7684\u5DE5\u7A0B\u65B9\u6848\u7C7B\u578B\u6216\u5B9A\u5236\u5316 Modern.js \u5DE5\u7A0B\u65B9\u6848",
75600
+ noNeedInstall: "\u65E0\u9700\u5B89\u88C5\u4F9D\u8D56",
75601
+ version: "\u5F53\u524D create \u5DE5\u5177\u7248\u672C\u53F7",
75602
+ lang: "\u8BBE\u7F6E create \u5DE5\u5177\u8BED\u8A00(zh \u6216\u8005 en)",
75603
+ cleanCache: "\u6E05\u9664\u672C\u5730\u751F\u6210\u5668\u7F13\u5B58"
75728
75604
  },
75729
75605
  tooltip: {
75730
75606
  dir_entry: `\u4F60\u53EF\u4EE5\u6267\u884C 'cd {dirName}' \u8FDB\u5165\u76EE\u5F55`,
75731
- dir_exists: `\u76EE\u5F55 '{dirName}' \u5DF2\u7ECF\u5B58\u5728`
75607
+ dir_exists: `\u76EE\u5F55 '{dirName}' \u5DF2\u7ECF\u5B58\u5728`,
75608
+ clean_cache_success: "\u6E05\u9664\u751F\u6210\u5668\u7F13\u5B58\u6210\u529F\uFF01"
75732
75609
  }
75733
75610
  };
75734
75611
  var EN_LOCALE = {
@@ -75742,11 +75619,17 @@ var EN_LOCALE = {
75742
75619
  distTag: `use specified tag version for it's generator`,
75743
75620
  registry: "set npm registry url to run npm command",
75744
75621
  debug: "using debug mode to log something",
75745
- plugin: "use generator plugin to create new solution or customize Modern.js solution"
75622
+ generator: "run custom generator",
75623
+ plugin: "use generator plugin to create new solution or customize Modern.js solution",
75624
+ noNeedInstall: "not run install command",
75625
+ version: "show create tools version",
75626
+ lang: "set create tools language(en or zh)",
75627
+ cleanCache: "clean locale generator cache"
75746
75628
  },
75747
75629
  tooltip: {
75748
75630
  dir_entry: `you can execute 'cd {dirName}' to entry the project directory`,
75749
- dir_exists: `directory '{dirName}' already exists`
75631
+ dir_exists: `directory '{dirName}' already exists`,
75632
+ clean_cache_success: "Clean generator cache success!"
75750
75633
  }
75751
75634
  };
75752
75635
  var i18n = new I18n();
@@ -75801,7 +75684,18 @@ function createDir(dirname, pwd) {
75801
75684
  }
75802
75685
  var REPO_GENERATOR = "@modern-js/repo-generator";
75803
75686
  function getDefaultConfig(projectDir = import_path.default.basename(process.cwd()), options3, logger) {
75804
- const { mwa, module: module2, monorepo, config, packages, registry, distTag, plugin } = options3;
75687
+ const {
75688
+ mwa,
75689
+ module: module2,
75690
+ monorepo,
75691
+ config,
75692
+ packages,
75693
+ registry,
75694
+ distTag,
75695
+ plugin,
75696
+ needInstall,
75697
+ lang
75698
+ } = options3;
75805
75699
  let initialConfig = {};
75806
75700
  try {
75807
75701
  if (config) {
@@ -75813,7 +75707,7 @@ function getDefaultConfig(projectDir = import_path.default.basename(process.cwd(
75813
75707
  process.exit(1);
75814
75708
  }
75815
75709
  if (!initialConfig.locale) {
75816
- initialConfig.locale = getLocaleLanguage();
75710
+ initialConfig.locale = lang || getLocaleLanguage();
75817
75711
  }
75818
75712
  if (mwa) {
75819
75713
  initialConfig.defaultSolution = "mwa";
@@ -75837,6 +75731,9 @@ function getDefaultConfig(projectDir = import_path.default.basename(process.cwd(
75837
75731
  if (plugin) {
75838
75732
  initialConfig.plugins = plugin;
75839
75733
  }
75734
+ if (!needInstall) {
75735
+ initialConfig.noNeedInstall = true;
75736
+ }
75840
75737
  try {
75841
75738
  if (packages) {
75842
75739
  const packagesInfo = JSON.parse(packages);
@@ -75847,14 +75744,31 @@ function getDefaultConfig(projectDir = import_path.default.basename(process.cwd(
75847
75744
  logger.debug("parse packages error: ", e);
75848
75745
  process.exit(1);
75849
75746
  }
75747
+ if (process.env.EDENX_NO_INSTALL) {
75748
+ initialConfig.noNeedInstall = true;
75749
+ }
75850
75750
  return initialConfig;
75851
75751
  }
75852
75752
  async function createAction(projectDir, options3) {
75853
- const { debug, registry, distTag } = options3;
75753
+ const {
75754
+ lang,
75755
+ version: version5,
75756
+ debug,
75757
+ registry,
75758
+ distTag,
75759
+ generator: customGenerator
75760
+ } = options3;
75854
75761
  const smith = new import_codesmith.CodeSmith({
75855
75762
  debug,
75856
75763
  registryUrl: registry
75857
75764
  });
75765
+ if (lang) {
75766
+ i18n.changeLanguage({ locale: lang });
75767
+ }
75768
+ if (version5) {
75769
+ smith.logger.info("@modern-js/create", `v${version4}`);
75770
+ return;
75771
+ }
75858
75772
  smith.logger.debug("@modern-js/create", projectDir || "", options3);
75859
75773
  let pwd = process.cwd();
75860
75774
  try {
@@ -75864,11 +75778,11 @@ async function createAction(projectDir, options3) {
75864
75778
  process.exit(1);
75865
75779
  }
75866
75780
  const config = getDefaultConfig(projectDir, options3, smith.logger);
75867
- let generator = REPO_GENERATOR;
75868
- if (process.env.CODESMITH_ENV === "development") {
75781
+ let generator = customGenerator || REPO_GENERATOR;
75782
+ if (process.env.CODESMITH_ENV === "development" && generator === REPO_GENERATOR) {
75869
75783
  generator = __require.resolve(REPO_GENERATOR);
75870
- } else if (distTag) {
75871
- generator = `${REPO_GENERATOR}@${distTag}`;
75784
+ } else if (!import_path.default.isAbsolute(generator) && distTag) {
75785
+ generator = `${generator}@${distTag}`;
75872
75786
  }
75873
75787
  const task = [
75874
75788
  {
@@ -75891,12 +75805,23 @@ async function createAction(projectDir, options3) {
75891
75805
  smith.logger.info(i18n.t(localeKeys.tooltip.dir_entry, { dirName: projectDir }));
75892
75806
  }
75893
75807
  }
75808
+ var import_utils4 = __toESM2(require_dist());
75809
+ async function cleanCacheAction() {
75810
+ const tmpDir = import_os.default.tmpdir();
75811
+ const spinner = (0, import_utils4.ora)("Loading...").start();
75812
+ spinner.color = "yellow";
75813
+ const cacheDir = import_path3.default.join(tmpDir, "csmith-generator");
75814
+ import_utils4.fs.emptyDirSync(cacheDir);
75815
+ spinner.stop();
75816
+ console.info(`[INFO] ${i18n.t(localeKeys.tooltip.clean_cache_success)}`);
75817
+ }
75894
75818
  function src_default() {
75895
75819
  i18n.changeLanguage({ locale: getLocaleLanguage() });
75896
- const program = new import_utils4.Command();
75897
- program.usage("[projectDir]").description(i18n.t(localeKeys.command.description)).argument("[projectDir]").option("-c, --config <config>", i18n.t(localeKeys.command.config), "{}").option("--packages <packages>", i18n.t(localeKeys.command.packages), "{}").option("--mwa", i18n.t(localeKeys.command.mwa), false).option("--module", i18n.t(localeKeys.command.module), false).option("--monorepo", i18n.t(localeKeys.command.monorepo), false).option("-p, --plugin <plugin>", i18n.t(localeKeys.command.plugin), (val, memo) => {
75820
+ const program = new import_utils5.Command();
75821
+ program.command("clean-cache").description(i18n.t(localeKeys.command.cleanCache)).action(cleanCacheAction);
75822
+ program.usage("[projectDir]").description(i18n.t(localeKeys.command.description)).argument("[projectDir]").option("-c, --config <config>", i18n.t(localeKeys.command.config), "{}").option("--packages <packages>", i18n.t(localeKeys.command.packages), "{}").option("--mwa", i18n.t(localeKeys.command.mwa), false).option("--module", i18n.t(localeKeys.command.module), false).option("--monorepo", i18n.t(localeKeys.command.monorepo), false).option("--generator <generator>", i18n.t(localeKeys.command.generator)).option("-p, --plugin <plugin>", i18n.t(localeKeys.command.plugin), (val, memo) => {
75898
75823
  memo.push(val);
75899
75824
  return memo;
75900
- }, []).option("--dist-tag <distTag>", i18n.t(localeKeys.command.distTag), "").option("--registry <registry>", i18n.t(localeKeys.command.registry), "").option("-d,--debug", i18n.t(localeKeys.command.debug), false).action(createAction);
75825
+ }, []).option("--dist-tag <distTag>", i18n.t(localeKeys.command.distTag), "").option("--registry <registry>", i18n.t(localeKeys.command.registry), "").option("-d,--debug", i18n.t(localeKeys.command.debug), false).option("--no-need-install", i18n.t(localeKeys.command.noNeedInstall), false).option("--lang <lang>", i18n.t(localeKeys.command.lang)).option("--version", i18n.t(localeKeys.command.version)).action(createAction);
75901
75826
  program.parse(process.argv);
75902
75827
  }