fyn 2.0.4 → 2.1.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.
package/dist/fyn.js CHANGED
@@ -125,7 +125,7 @@ const Promise = __webpack_require__("./node_modules/.f/_/aveazul/1.1.0/aveazul/c
125
125
  const Fyn = __webpack_require__("./lib/fyn.ts");
126
126
  const _ = __webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js");
127
127
  const PkgInstaller = __webpack_require__("./lib/pkg-installer.ts");
128
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
128
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
129
129
  const chalk = __webpack_require__("./node_modules/.f/_/chalk/4.1.2/chalk/source/index.js");
130
130
  const logger = __webpack_require__("./lib/logger.ts");
131
131
  const PromiseQueue = __webpack_require__("./lib/util/promise-queue.ts");
@@ -143,7 +143,7 @@ const myPkg = __webpack_require__("./cli/mypkg.ts");
143
143
  const { cleanErrorStack } = __webpack_require__("./node_modules/.f/_/@jchip/error/1.0.3/@jchip/error/dist/index.js");
144
144
  const { setupNodeGypEnv } = __webpack_require__("./lib/util/setup-node-gyp.ts");
145
145
  const hardLinkDir = __webpack_require__("./lib/util/hard-link-dir.ts");
146
- const xsh = __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/index.js");
146
+ const xsh = __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/index.js");
147
147
  function checkNewVersion(npmConfig) {
148
148
  checkPkgNewVersionEngine({
149
149
  pkg: _.pick(myPkg, ["name", "version"]),
@@ -2728,11 +2728,12 @@ const Os = __webpack_require__("os");
2728
2728
  const Fs = __webpack_require__("./lib/util/file-ops.ts");
2729
2729
  const Fyn = __webpack_require__("./lib/fyn.ts");
2730
2730
  const PkgInstaller = __webpack_require__("./lib/pkg-installer.ts");
2731
+ const PkgBinLinker = __webpack_require__("./lib/pkg-bin-linker.ts");
2731
2732
  const logger = __webpack_require__("./lib/logger.ts");
2732
2733
  const fynTil = __webpack_require__("./lib/util/fyntil.ts");
2733
2734
  const lockfile = __webpack_require__("./node_modules/.f/_/lockfile/1.0.4/lockfile/lockfile.js");
2734
2735
  const util = __webpack_require__("util");
2735
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
2736
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
2736
2737
  const readline = __webpack_require__("readline");
2737
2738
  const createLock = util.promisify(lockfile.lock);
2738
2739
  const unlock = util.promisify(lockfile.unlock);
@@ -2747,9 +2748,12 @@ class FynGlobal {
2747
2748
  */
2748
2749
  constructor(options = {}) {
2749
2750
  this.options = options;
2750
- this.nodeVersion = options.nodeVersion || process.version.match(/^v(\d+)/)[1];
2751
+ const isBun = typeof process.versions.bun === "string";
2752
+ const runtimeVersion = options.nodeVersion || process.version.match(/^v?(\d+)/)[1];
2753
+ this.runtimePrefix = isBun ? "bun" : "v";
2754
+ this.nodeVersion = runtimeVersion;
2751
2755
  this.globalRoot = options.globalDir || Path.join(Os.homedir(), ".fyn", "global");
2752
- this.versionDir = Path.join(this.globalRoot, `v${this.nodeVersion}`);
2756
+ this.versionDir = Path.join(this.globalRoot, `${this.runtimePrefix}${runtimeVersion}`);
2753
2757
  this.packagesDir = Path.join(this.versionDir, "packages");
2754
2758
  this.globalBinDir = Path.join(this.versionDir, "bin");
2755
2759
  this.installedJsonPath = Path.join(this.versionDir, "installed.json");
@@ -2781,6 +2785,20 @@ class FynGlobal {
2781
2785
  _fynpo: false
2782
2786
  });
2783
2787
  }
2788
+ _getBinLinker() {
2789
+ if (!this._binLinker) {
2790
+ this._binLinker = new PkgBinLinker({ binDir: this.globalBinDir });
2791
+ }
2792
+ return this._binLinker;
2793
+ }
2794
+ _getVersionBinTargets(versionInfo) {
2795
+ const binDir = Path.join(this.packagesDir, versionInfo.dir, "node_modules", ".bin");
2796
+ const bins = {};
2797
+ for (const binName of versionInfo.bins || []) {
2798
+ bins[binName] = Path.join(binDir, binName);
2799
+ }
2800
+ return bins;
2801
+ }
2784
2802
  /**
2785
2803
  * Read the installed.json registry
2786
2804
  * @returns {Object} Registry object with packages info
@@ -3053,7 +3071,7 @@ class FynGlobal {
3053
3071
  */
3054
3072
  async ensureBinSymlink() {
3055
3073
  const binSymlink = Path.join(this.globalRoot, "bin");
3056
- const targetDir = `v${this.nodeVersion}/bin`;
3074
+ const targetDir = `${this.runtimePrefix}${this.nodeVersion}/bin`;
3057
3075
  try {
3058
3076
  const currentTarget = await Fs.readlink(binSymlink);
3059
3077
  if (currentTarget === targetDir) {
@@ -3112,20 +3130,14 @@ class FynGlobal {
3112
3130
  * @param {boolean} force - If true, overwrite existing bins
3113
3131
  */
3114
3132
  async linkBins(gId, bins, force = false) {
3115
- await Fs.$.mkdirp(this.globalBinDir);
3133
+ const binLinker = this._getBinLinker();
3116
3134
  for (const [binName, binPath] of Object.entries(bins)) {
3117
- const globalBinPath = Path.join(this.globalBinDir, binName);
3118
- if (await Fs.exists(globalBinPath)) {
3119
- if (force) {
3120
- await Fs.unlink(globalBinPath);
3121
- } else {
3122
- const owner = await this.findBinOwner(binName);
3123
- logger.warn(`${binName} already exists (from ${owner || "unknown"}), skipping`);
3124
- continue;
3125
- }
3135
+ if (!force && await binLinker.hasBinLink(binName)) {
3136
+ const owner = await this.findBinOwner(binName);
3137
+ logger.warn(`${binName} already exists (from ${owner || "unknown"}), skipping`);
3138
+ continue;
3126
3139
  }
3127
- const relativePath = Path.relative(this.globalBinDir, binPath);
3128
- await Fs.symlink(relativePath, globalBinPath);
3140
+ await binLinker.linkBinPath(binPath, binName, { overwrite: force });
3129
3141
  }
3130
3142
  }
3131
3143
  /**
@@ -3307,12 +3319,12 @@ class FynGlobal {
3307
3319
  const versions = await this.getPackageVersions(packageName);
3308
3320
  const versionInfo = versions.find((v) => v.version === version);
3309
3321
  if (!versionInfo) return;
3310
- for (const binName of versionInfo.bins || []) {
3311
- const binPath = Path.join(this.globalBinDir, binName);
3322
+ const binLinker = this._getBinLinker();
3323
+ const bins = this._getVersionBinTargets(versionInfo);
3324
+ for (const [binName, binPath] of Object.entries(bins)) {
3312
3325
  try {
3313
- const linkTarget = await Fs.readlink(binPath);
3314
- if (linkTarget.includes(versionInfo.dir)) {
3315
- await Fs.unlink(binPath);
3326
+ if (await binLinker.matchesBinPath(binName, binPath)) {
3327
+ await binLinker.removeBinLink(binName);
3316
3328
  }
3317
3329
  } catch (err) {
3318
3330
  }
@@ -3755,7 +3767,7 @@ module.exports = FynGlobal;
3755
3767
  const Path = __webpack_require__("path");
3756
3768
  const util = __webpack_require__("util");
3757
3769
  const assert = __webpack_require__("assert");
3758
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
3770
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
3759
3771
  const _ = __webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js");
3760
3772
  const logger = __webpack_require__("./lib/logger.ts");
3761
3773
  const PkgDepResolver = __webpack_require__("./lib/pkg-dep-resolver.ts");
@@ -3777,7 +3789,7 @@ const ck = __webpack_require__("./node_modules/.f/_/chalker/1.2.0/chalker/lib/in
3777
3789
  const { PACKAGE_RAW_INFO, DEP_ITEM } = __webpack_require__("./lib/symbols.ts");
3778
3790
  const { FYN_LOCK_FILE, FYN_INSTALL_CONFIG_FILE, FV_DIR, PACKAGE_FYN_JSON } = __webpack_require__("./lib/constants.ts");
3779
3791
  const { parseYarnLock } = __webpack_require__("./yarn/index.js");
3780
- const mm = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
3792
+ const mm = __webpack_require__("./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js");
3781
3793
  const npmConfigEnv = __webpack_require__("./lib/util/npm-config-env.ts");
3782
3794
  const PkgOptResolver = __webpack_require__("./lib/pkg-opt-resolver.ts");
3783
3795
  const { LocalPkgBuilder } = __webpack_require__("./lib/local-pkg-builder.ts");
@@ -4021,7 +4033,82 @@ class Fyn {
4021
4033
  return { mm: new mm.Minimatch(finalPath), res: resData[depPath] };
4022
4034
  });
4023
4035
  }
4036
+ const overridesData = {
4037
+ ...this._pkg.overrides,
4038
+ ..._.get(this._fynpo, ["config", "overrides"])
4039
+ };
4040
+ if (!_.isEmpty(overridesData)) {
4041
+ this._overrides = overridesData;
4042
+ this._overridesMatchers = this._processOverrides(overridesData);
4043
+ }
4044
+ }
4045
+ }
4046
+ /**
4047
+ * Process npm-style overrides into matchers
4048
+ *
4049
+ * npm overrides support:
4050
+ * 1. Simple: "package-name": "version"
4051
+ * 2. Nested: "parent-pkg": { "child-pkg": "version" }
4052
+ * 3. Version-conditional: "package@^1.0.0": "1.0.5"
4053
+ * 4. Reference: "$package-name" to reference a direct dependency version
4054
+ *
4055
+ * @param {object} overrides - The overrides object from package.json
4056
+ * @param {string} parentPath - The parent path for nested overrides
4057
+ * @returns {Array} Array of override matcher objects
4058
+ */
4059
+ _processOverrides(overrides, parentPath = "") {
4060
+ const matchers = [];
4061
+ for (const key of Object.keys(overrides)) {
4062
+ const value = overrides[key];
4063
+ let pkgName = key;
4064
+ let versionConstraint = null;
4065
+ const atIdx = key.lastIndexOf("@");
4066
+ if (atIdx > 0) {
4067
+ pkgName = key.substring(0, atIdx);
4068
+ versionConstraint = key.substring(atIdx + 1);
4069
+ }
4070
+ if (typeof value === "string") {
4071
+ let resolvedValue = value;
4072
+ if (value.startsWith("$")) {
4073
+ const refPkgName = value.substring(1);
4074
+ const directDepVersion = this._getDirectDependencyVersion(refPkgName);
4075
+ if (directDepVersion) {
4076
+ resolvedValue = directDepVersion;
4077
+ } else {
4078
+ logger.warn(
4079
+ `Override reference $${refPkgName} not found in direct dependencies, using as-is`
4080
+ );
4081
+ resolvedValue = value;
4082
+ }
4083
+ }
4084
+ matchers.push({
4085
+ pkgName,
4086
+ versionConstraint,
4087
+ parentPath,
4088
+ replacement: resolvedValue
4089
+ });
4090
+ } else if (typeof value === "object" && value !== null) {
4091
+ const newParentPath = parentPath ? `${parentPath}/${pkgName}` : pkgName;
4092
+ const nestedMatchers = this._processOverrides(value, newParentPath);
4093
+ matchers.push(...nestedMatchers);
4094
+ }
4024
4095
  }
4096
+ return matchers;
4097
+ }
4098
+ /**
4099
+ * Get the version of a direct dependency from package.json
4100
+ * @param {string} pkgName - Package name to look up
4101
+ * @returns {string|null} The version or null if not found
4102
+ */
4103
+ _getDirectDependencyVersion(pkgName) {
4104
+ const sections = ["dependencies", "devDependencies", "optionalDependencies"];
4105
+ for (const section of sections) {
4106
+ const version = _.get(this._pkg, [section, pkgName]);
4107
+ if (version) {
4108
+ return version;
4109
+ }
4110
+ }
4111
+ return null;
4025
4112
  }
4026
4113
  async _startInstall() {
4027
4114
  if (!this._distFetcher) {
@@ -4611,7 +4698,7 @@ module.exports = Fyn;
4611
4698
  const Path = __webpack_require__("path");
4612
4699
  const optionalRequire = __webpack_require__("./node_modules/.f/_/optional-require/1.1.10/optional-require/index.js")(eval("require"));
4613
4700
  const assert = __webpack_require__("assert");
4614
- const xsh = __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/index.js");
4701
+ const xsh = __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/index.js");
4615
4702
  const chalk = __webpack_require__("./node_modules/.f/_/chalk/4.1.2/chalk/source/index.js");
4616
4703
  const _ = __webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js");
4617
4704
  const logger = __webpack_require__("./lib/logger.ts");
@@ -5033,10 +5120,34 @@ const _ = __webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.
5033
5120
  const logger = __webpack_require__("./lib/logger.ts");
5034
5121
  class PkgBinLinkerBase {
5035
5122
  constructor(options) {
5036
- this._binDir = Path.join(options.outputDir, ".bin");
5123
+ this._binDir = options.binDir || Path.join(options.outputDir, ".bin");
5037
5124
  this._fyn = options.fyn;
5038
5125
  this._linked = {};
5039
5126
  }
5127
+ async hasBinLink(sym) {
5128
+ return Fs.exists(Path.join(this._binDir, sym));
5129
+ }
5130
+ async matchesBinPath(sym, target) {
5131
+ const symlink = Path.join(this._binDir, sym);
5132
+ const relTarget = Path.relative(this._binDir, target);
5133
+ return this._isBinLinkTarget(symlink, relTarget);
5134
+ }
5135
+ async linkBinPath(target, sym, options = {}) {
5136
+ const relTarget = Path.relative(this._binDir, target);
5137
+ const symlink = Path.join(this._binDir, sym);
5138
+ await this._mkBinDir();
5139
+ if (options.overwrite) {
5140
+ await this._rmBinLink(symlink);
5141
+ }
5142
+ if (!await this._ensureGoodLink(symlink, relTarget)) {
5143
+ await this._generateBinLink(relTarget, symlink);
5144
+ }
5145
+ await this._chmod(target);
5146
+ return relTarget;
5147
+ }
5148
+ async removeBinLink(sym) {
5149
+ await this._rmBinLink(Path.join(this._binDir, sym));
5150
+ }
5040
5151
  async clearExtras() {
5041
5152
  try {
5042
5153
  const bins = await this._readBinLinks();
@@ -5219,13 +5330,16 @@ class PkgBinLinker extends PkgBinLinkerBase {
5219
5330
  //
5220
5331
  // Platform specific
5221
5332
  //
5222
- async _ensureGoodLink(symlink, target) {
5333
+ async _isBinLinkTarget(symlink, target) {
5223
5334
  try {
5224
- const existTarget = await Fs.readlink(symlink);
5225
- if (existTarget === target) {
5226
- return true;
5227
- }
5335
+ return await Fs.readlink(symlink) === target;
5228
5336
  } catch (err) {
5337
+ return false;
5338
+ }
5339
+ }
5340
+ async _ensureGoodLink(symlink, target) {
5341
+ if (await this._isBinLinkTarget(symlink, target)) {
5342
+ return true;
5229
5343
  }
5230
5344
  await this._rmBinLink(symlink);
5231
5345
  return false;
@@ -5295,13 +5409,17 @@ class PkgBinLinkerWin32 extends PkgBinLinkerBase {
5295
5409
  //
5296
5410
  // Platform specific
5297
5411
  //
5298
- async _ensureGoodLink(symlink, target) {
5412
+ async _isBinLinkTarget(symlink, target) {
5299
5413
  try {
5300
5414
  const existTarget = (await Fs.readFile(symlink)).toString();
5301
- if (existTarget.indexOf(target) >= 0) {
5302
- return true;
5303
- }
5415
+ return existTarget.indexOf(target) >= 0;
5304
5416
  } catch (err) {
5417
+ return false;
5418
+ }
5419
+ }
5420
+ async _ensureGoodLink(symlink, target) {
5421
+ if (await this._isBinLinkTarget(symlink, target)) {
5422
+ return true;
5305
5423
  }
5306
5424
  await this._rmBinLink(symlink);
5307
5425
  return false;
@@ -5656,6 +5774,39 @@ class PkgDepLocker {
5656
5774
  hasLock(item) {
5657
5775
  return Boolean(this._enable && this._lockData[item.name]);
5658
5776
  }
5777
+ normalizeTarballUrl(item, tarballUrl) {
5778
+ if (!tarballUrl || !this._fyn || !this._fyn._pkgSrcMgr) {
5779
+ return tarballUrl;
5780
+ }
5781
+ const currentRegistry = this._fyn._pkgSrcMgr.getRegistryUrl(item.name);
5782
+ if (!currentRegistry || tarballUrl.startsWith(currentRegistry)) {
5783
+ return tarballUrl;
5784
+ }
5785
+ try {
5786
+ const currentUrl = new URL(currentRegistry);
5787
+ const lockedUrl = new URL(tarballUrl);
5788
+ const currentPath = decodeURIComponent(currentUrl.pathname);
5789
+ const lockedPath = decodeURIComponent(lockedUrl.pathname);
5790
+ if (lockedPath.startsWith(currentPath)) {
5791
+ lockedUrl.protocol = currentUrl.protocol;
5792
+ lockedUrl.username = currentUrl.username;
5793
+ lockedUrl.password = currentUrl.password;
5794
+ lockedUrl.host = currentUrl.host;
5795
+ return lockedUrl.toString();
5796
+ }
5797
+ const tarballMarker = `/${item.name}/-/`;
5798
+ const markerIndex = lockedPath.indexOf(tarballMarker);
5799
+ if (markerIndex >= 0) {
5800
+ const rebuiltUrl = new URL(lockedPath.slice(markerIndex + 1), currentRegistry);
5801
+ rebuiltUrl.search = lockedUrl.search;
5802
+ rebuiltUrl.hash = lockedUrl.hash;
5803
+ return rebuiltUrl.toString();
5804
+ }
5805
+ } catch (err) {
5806
+ return tarballUrl;
5807
+ }
5808
+ return tarballUrl;
5809
+ }
5659
5810
  //
5660
5811
  // convert from fyn lock format to npm meta format
5661
5812
  //
@@ -5678,18 +5829,7 @@ class PkgDepLocker {
5678
5829
  fullPath: vpkg._
5679
5830
  };
5680
5831
  } else {
5681
- let tarballUrl = vpkg._;
5682
- if (tarballUrl && this._fyn && this._fyn._pkgSrcMgr) {
5683
- const currentRegistry = this._fyn._pkgSrcMgr.getRegistryUrl(item.name);
5684
- const urlMatch = tarballUrl.match(/^(https?:\/\/[^\/]+)(\/.*)/);
5685
- if (urlMatch && currentRegistry) {
5686
- const lockRegistry = urlMatch[1] + "/";
5687
- const tarballPath = urlMatch[2];
5688
- if (lockRegistry !== currentRegistry) {
5689
- tarballUrl = currentRegistry.replace(/\/$/, "") + tarballPath;
5690
- }
5691
- }
5692
- }
5832
+ const tarballUrl = this.normalizeTarballUrl(item, vpkg._);
5693
5833
  vpkg.dist = {
5694
5834
  integrity: fyntil.shaToIntegrity(vpkg.$),
5695
5835
  tarball: tarballUrl
@@ -5943,7 +6083,7 @@ const _ = __webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.
5943
6083
  const Fs = __webpack_require__("./lib/util/file-ops.ts");
5944
6084
  const Path = __webpack_require__("path");
5945
6085
  const semverUtil = __webpack_require__("./lib/util/semver.ts");
5946
- const Semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
6086
+ const Semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
5947
6087
  const chalk = __webpack_require__("./node_modules/.f/_/chalk/4.1.2/chalk/source/index.js");
5948
6088
  const logger = __webpack_require__("./lib/logger.ts");
5949
6089
  const DepItem = __webpack_require__("./lib/dep-item.ts");
@@ -6775,6 +6915,107 @@ ${item.depPath.join(" > ")}`
6775
6915
  }
6776
6916
  return void 0;
6777
6917
  }
6918
+ /**
6919
+ * Apply npm-style overrides to a dependency item
6920
+ *
6921
+ * npm overrides differ from yarn resolutions:
6922
+ * - They apply to ALL instances of a package by default (not path-based)
6923
+ * - They can be scoped to specific parent packages
6924
+ * - They support version constraints on the source package
6925
+ *
6926
+ * @param {*} item - The dependency item to check for overrides
6927
+ * @returns {undefined}
6928
+ */
6929
+ _applyOverrides(item) {
6930
+ if (!this._fyn._overridesMatchers || item._semver.$$) {
6931
+ return void 0;
6932
+ }
6933
+ const matchers = this._fyn._overridesMatchers;
6934
+ for (const matcher of matchers) {
6935
+ const { pkgName, versionConstraint, parentPath, replacement } = matcher;
6936
+ if (pkgName !== item.name) {
6937
+ continue;
6938
+ }
6939
+ if (versionConstraint) {
6940
+ if (!this._matchesVersionConstraint(item.semver, versionConstraint)) {
6941
+ continue;
6942
+ }
6943
+ }
6944
+ if (parentPath) {
6945
+ if (!this._matchesParentPath(item, parentPath)) {
6946
+ continue;
6947
+ }
6948
+ }
6949
+ if (replacement !== item.semver) {
6950
+ const parentInfo = parentPath ? ` (under ${parentPath})` : "";
6951
+ const constraintInfo = versionConstraint ? `@${versionConstraint}` : "";
6952
+ logger.info(
6953
+ `Override: ${item.name}${constraintInfo}${parentInfo} changed from ${item.semver} to ${replacement}`
6954
+ );
6955
+ semverUtil.replace(item._semver, replacement);
6956
+ return void 0;
6957
+ }
6958
+ }
6959
+ return void 0;
6960
+ }
6961
+ /**
6962
+ * Check if the item's semver matches the version constraint specified in the override key
6963
+ *
6964
+ * @param {string} itemSemver - The semver from the dependency
6965
+ * @param {string} constraint - The version constraint from override key (e.g., "^4.0.0", ">=1.0.0")
6966
+ * @returns {boolean}
6967
+ */
6968
+ _matchesVersionConstraint(itemSemver, constraint) {
6969
+ if (Semver.valid(constraint)) {
6970
+ return Semver.satisfies(constraint, itemSemver);
6971
+ }
6972
+ try {
6973
+ return Semver.intersects(itemSemver, constraint);
6974
+ } catch {
6975
+ return itemSemver === constraint;
6976
+ }
6977
+ }
6978
+ /**
6979
+ * Check if the item's parent path matches the override's parent path constraint
6980
+ *
6981
+ * For example, if override is { "foo": { "bar": "1.0.0" } },
6982
+ * parentPath would be "foo" and we check if item's parent chain includes "foo"
6983
+ *
6984
+ * @param {*} item - The dependency item
6985
+ * @param {string} parentPath - The parent path from the override (e.g., "foo" or "foo/baz")
6986
+ * @returns {boolean}
6987
+ */
6988
+ _matchesParentPath(item, parentPath) {
6989
+ if (!item.parent || item.parent.depth === 0) {
6990
+ return false;
6991
+ }
6992
+ const parentChain = [];
6993
+ let current = item.parent;
6994
+ while (current && current.depth > 0) {
6995
+ parentChain.unshift(current.name);
6996
+ current = current.parent;
6997
+ }
6998
+ const pathParts = parentPath.split("/").filter((p) => p);
6999
+ const normalizedParts = [];
7000
+ for (let i = 0; i < pathParts.length; i++) {
7001
+ if (pathParts[i].startsWith("@") && i + 1 < pathParts.length) {
7002
+ normalizedParts.push(`${pathParts[i]}/${pathParts[i + 1]}`);
7003
+ i++;
7004
+ } else {
7005
+ normalizedParts.push(pathParts[i]);
7006
+ }
7007
+ }
7008
+ if (normalizedParts.length > parentChain.length) {
7009
+ return false;
7010
+ }
7011
+ const startIdx = parentChain.length - normalizedParts.length;
7012
+ for (let i = 0; i < normalizedParts.length; i++) {
7013
+ if (parentChain[startIdx + i] !== normalizedParts[i]) {
7014
+ return false;
7015
+ }
7016
+ }
7017
+ return true;
7018
+ }
6778
7019
  _resolveWithLockData(item) {
6779
7020
  const isOpt = item.dsrc && item.dsrc.includes("opt");
6780
7021
  if (isOpt && this._fyn.refreshOptionals) {
@@ -6843,6 +7084,7 @@ ${item.depPath.join(" > ")}`
6843
7084
  return r;
6844
7085
  });
6845
7086
  };
7087
+ this._applyOverrides(item);
6846
7088
  this._replaceWithResolutionsData(item);
6847
7089
  const promise = !item.semverPath || this._fyn.preferLock ? tryLock().then((r) => r || item.semverPath && tryLocal()) : tryLocal().then((r) => r || tryLock());
6848
7090
  return promise.then((r) => {
@@ -7780,7 +8022,7 @@ module.exports = PkgInstaller;
7780
8022
  "use strict";
7781
8023
 
7782
8024
  const assert = __webpack_require__("assert");
7783
- const xsh = __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/index.js");
8025
+ const xsh = __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/index.js");
7784
8026
  const _ = __webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js");
7785
8027
  const Promise = __webpack_require__("./lib/util/aveazul.ts");
7786
8028
  const PromiseQueue = __webpack_require__("./lib/util/promise-queue.ts");
@@ -8582,7 +8824,41 @@ class PkgSrcManager {
8582
8824
  return inflight;
8583
8825
  }
8584
8826
  const packumentUrl = this.makePackumentUrl(pkgName);
8585
- const cacheKey = `make-fetch-happen:request-cache:full:${packumentUrl}`;
8827
+ const cacheKey = `make-fetch-happen:request-cache:${packumentUrl}`;
8828
+ const legacyCacheKey = `make-fetch-happen:request-cache:full:${packumentUrl}`;
8829
+ const cacheKeys = [cacheKey, legacyCacheKey];
8830
+ const loadCachedPackument = async (key, memoize = true) => {
8831
+ try {
8832
+ const cached = await cacache.get(this._cacheDir, key, { memoize });
8833
+ const info = await getCacheInfoWithRefreshTime(this._cacheDir, key);
8834
+ return Object.assign(cached, {
8835
+ refreshTime: info && info.refreshTime,
8836
+ cacheKey: key
8837
+ });
8838
+ } catch (err) {
8839
+ if (err.code === "ENOENT") {
8840
+ return void 0;
8841
+ }
8842
+ throw err;
8843
+ }
8844
+ };
8845
+ const loadBestCachedPackument = async (memoize = true) => {
8846
+ const cachedEntries = (await Promise.all(cacheKeys.map((key) => loadCachedPackument(key, memoize)))).filter(Boolean);
8847
+ if (cachedEntries.length === 0) {
8848
+ return void 0;
8849
+ }
8850
+ return _.maxBy(cachedEntries, (cached) => cached.refreshTime || 0) || cachedEntries[0];
8851
+ };
8852
+ const readMemoizedPackument = async () => {
8853
+ const memoized = await loadBestCachedPackument(false);
8854
+ if (!(memoized && memoized.data)) {
8855
+ return void 0;
8856
+ }
8857
+ logger.debug(`using memoized packument cache for '${pkgName}'`);
8858
+ cacheMemoized = true;
8859
+ this._metaStat.wait--;
8860
+ return JSON.parse(memoized.data.toString());
8861
+ };
8586
8862
  const queueMetaFetchRequest = (cached) => {
8587
8863
  const offline = this._fyn.remoteMetaDisabled;
8588
8864
  if (cached && this._fyn.forceCache) {
@@ -8615,15 +8891,7 @@ class PkgSrcManager {
8615
8891
  // when the semver is a url then the meta is not from npm registry and
8616
8892
  // we can't use the cache for registry
8617
8893
  Promise.resolve()
8618
- ) : cacache.get(this._cacheDir, cacheKey, { memoize: true }).then(async (cached) => {
8619
- if (cached) {
8620
- const info = await getCacheInfoWithRefreshTime(this._cacheDir, cacheKey);
8621
- if (info) {
8622
- cached.refreshTime = info.refreshTime;
8623
- }
8624
- }
8625
- return cached;
8626
- })).then((cached) => {
8894
+ ) : loadBestCachedPackument(true)).then((cached) => {
8627
8895
  const packument = cached && cached.data && JSON.parse(cached.data);
8628
8896
  foundCache = cached;
8629
8897
  if (cached && cached.refreshTime) {
@@ -8639,14 +8907,26 @@ class PkgSrcManager {
8639
8907
  }
8640
8908
  }
8641
8909
  if (cached && metaMemoizeUrl) {
8642
- const encKey = encodeURIComponent(cacheKey);
8643
- return nodeFetch(`${metaMemoizeUrl}?key=${encKey}`).then(
8644
- (res) => {
8910
+ const checkMemoizedCache = async () => {
8911
+ for (const key of cacheKeys) {
8912
+ const encKey = encodeURIComponent(key);
8913
+ const res = await nodeFetch(`${metaMemoizeUrl}?key=${encKey}`);
8645
8914
  if (res.status === 200) {
8646
- logger.debug(`using memoized packument cache for '${pkgName}'`);
8647
- cacheMemoized = true;
8648
- this._metaStat.wait--;
8649
- return packument;
8915
+ return true;
8916
+ }
8917
+ }
8918
+ return false;
8919
+ };
8920
+ return checkMemoizedCache().then(
8921
+ async (hasMemoizedCache) => {
8922
+ if (hasMemoizedCache) {
8923
+ const memoizedPackument = await readMemoizedPackument();
8924
+ if (memoizedPackument) {
8925
+ return memoizedPackument;
8926
+ }
8927
+ logger.warn(
8928
+ `memoized packument cache for '${pkgName}' was signaled but cache entry was missing; refetching`
8929
+ );
8650
8930
  }
8651
8931
  return queueMetaFetchRequest(packument);
8652
8932
  },
@@ -9279,7 +9559,7 @@ const Path = __webpack_require__("path");
9279
9559
  const Fs = __webpack_require__("./lib/util/file-ops.ts");
9280
9560
  const fs = __webpack_require__("fs");
9281
9561
  const xaa = __webpack_require__("./lib/util/xaa.ts");
9282
- const npmPacklist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.3-fynlocal_h/npm-packlist/lib/index.js");
9562
+ const npmPacklist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.4/npm-packlist/lib/index.js");
9283
9563
  const Arborist = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/index.js");
9284
9564
  const fynTil = __webpack_require__("./lib/util/fyntil.ts");
9285
9565
  const logger = __webpack_require__("./lib/logger.ts");
@@ -9809,7 +10089,7 @@ module.exports = { addNpmLifecycle, runNpmScript };
9809
10089
 
9810
10090
  "use strict";
9811
10091
 
9812
- const Semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
10092
+ const Semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
9813
10093
  const Path = __webpack_require__("path");
9814
10094
  const os = __webpack_require__("os");
9815
10095
  function split(v, sep, index = 0) {
@@ -10000,7 +10280,7 @@ const Path = __webpack_require__("path");
10000
10280
  const requireAt = __webpack_require__("./node_modules/.f/_/require-at/1.0.6/require-at/require-at.js");
10001
10281
  const logger = __webpack_require__("./lib/logger.ts");
10002
10282
  const { getGlobalNodeModules } = __webpack_require__("./lib/util/fyntil.ts");
10003
- const xsh = __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/index.js");
10283
+ const xsh = __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/index.js");
10004
10284
  let nodeGypBinPath;
10005
10285
  function _searchNodeGypBin({ npmDir, searchPath }) {
10006
10286
  if (!nodeGypBinPath) {
@@ -10093,7 +10373,7 @@ module.exports = function _sortObjKeys(obj) {
10093
10373
 
10094
10374
  const Fs = __webpack_require__("./lib/util/file-ops.ts");
10095
10375
  const Path = __webpack_require__("path");
10096
- const mm = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
10376
+ const mm = __webpack_require__("./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js");
10097
10377
  const filterScanDir = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.6.0/filter-scan-dir/index.cjs");
10098
10378
  async function _scanFileStats(dir, ignores, baseDir = "") {
10099
10379
  const ignore = (fullPath) => ignores.find((pattern) => mm(fullPath, pattern, { dot: true }));
@@ -10160,7 +10440,7 @@ exports.processLifecycleInput = processLifecycleInput;
10160
10440
  exports.processOutput = processOutput;
10161
10441
  const tslib_1 = __webpack_require__("./node_modules/.f/_/tslib/2.8.1/tslib/tslib.es6.mjs");
10162
10442
  const filter_scan_dir_1 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.6.0/filter-scan-dir/index.cjs");
10163
- const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js"));
10443
+ const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js"));
10164
10444
  const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
10165
10445
  const fs_1 = tslib_1.__importDefault(__webpack_require__("fs"));
10166
10446
  const path_1 = tslib_1.__importDefault(__webpack_require__("path"));
@@ -10418,9 +10698,9 @@ const assert_1 = tslib_1.__importDefault(__webpack_require__("assert"));
10418
10698
  const path_1 = tslib_1.__importDefault(__webpack_require__("path"));
10419
10699
  const fs_1 = __webpack_require__("fs");
10420
10700
  const filter_scan_dir_1 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.6.0/filter-scan-dir/index.cjs");
10421
- const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js"));
10701
+ const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js"));
10422
10702
  const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
10423
- const semver_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js"));
10703
+ const semver_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js"));
10424
10704
  const minimatch_group_1 = __webpack_require__("./node_modules/.f/_/@fynpo/base/1.1.22-fynlocal_h/@fynpo/base/dist/minimatch-group.js");
10425
10705
  const util_1 = __webpack_require__("./node_modules/.f/_/@fynpo/base/1.1.22-fynlocal_h/@fynpo/base/dist/util.js");
10426
10706
  const is_path_inside_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/is-path-inside/3.0.3/is-path-inside/index.js"));
@@ -10985,7 +11265,7 @@ const tslib_1 = __webpack_require__("./node_modules/.f/_/tslib/2.8.1/tslib/tslib
10985
11265
  const path_1 = tslib_1.__importDefault(__webpack_require__("path"));
10986
11266
  const fs_1 = __webpack_require__("fs");
10987
11267
  const filter_scan_dir_1 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.6.0/filter-scan-dir/index.cjs");
10988
- const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js"));
11268
+ const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js"));
10989
11269
  const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
10990
11270
  const minimatch_group_1 = __webpack_require__("./node_modules/.f/_/@fynpo/base/1.1.22-fynlocal_h/@fynpo/base/dist/minimatch-group.js");
10991
11271
  tslib_1.__exportStar(__webpack_require__("./node_modules/.f/_/@fynpo/base/1.1.22-fynlocal_h/@fynpo/base/dist/fynpo-dep-graph.js"), exports);
@@ -11192,7 +11472,7 @@ exports.deconstructMM = deconstructMM;
11192
11472
  exports.checkMmMatch = checkMmMatch;
11193
11473
  exports.unrollMmMatch = unrollMmMatch;
11194
11474
  const tslib_1 = __webpack_require__("./node_modules/.f/_/tslib/2.8.1/tslib/tslib.es6.mjs");
11195
- const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js"));
11475
+ const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js"));
11196
11476
  const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
11197
11477
  function groupMM(mms, groups) {
11198
11478
  mms.forEach((mm) => {
@@ -12504,7 +12784,7 @@ const { lstat, readlink } = __webpack_require__("node:fs/promises");
12504
12784
  const { depth } = __webpack_require__("./node_modules/.f/_/treeverse/3.0.0/treeverse/lib/index.js");
12505
12785
  const { log, time } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
12506
12786
  const { redact } = __webpack_require__("./node_modules/.f/_/@npmcli/redact/3.2.2/@npmcli/redact/lib/index.js");
12507
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
12787
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
12508
12788
  const {
12509
12789
  OK,
12510
12790
  REPLACE,
@@ -15064,7 +15344,7 @@ const { dirname, resolve, relative, join } = __webpack_require__("node:path");
15064
15344
  const { log, time } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
15065
15345
  const { lstat, mkdir, rm, symlink } = __webpack_require__("node:fs/promises");
15066
15346
  const { moveFile } = __webpack_require__("./node_modules/.f/_/@npmcli/fs/4.0.0/@npmcli/fs/lib/index.js");
15067
- const { subset, intersects } = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
15347
+ const { subset, intersects } = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
15068
15348
  const { walkUp } = __webpack_require__("./node_modules/.f/_/walk-up-path/4.0.0/walk-up-path/dist/commonjs/index.js");
15069
15349
  const AuditReport = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/audit-report.js");
15070
15350
  const Diff = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/diff.js");
@@ -16455,7 +16735,7 @@ module.exports = calcDepFlags;
16455
16735
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16456
16736
 
16457
16737
  const localeCompare = __webpack_require__("./node_modules/.f/_/@isaacs/string-locale-compare/1.1.0/@isaacs/string-locale-compare/index.js")("en");
16458
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
16738
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
16459
16739
  const debug = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/debug.js");
16460
16740
  const peerEntrySets = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/peer-entry-sets.js");
16461
16741
  const deepestNestingTarget = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/deepest-nesting-target.js");
@@ -16862,7 +17142,7 @@ module.exports = deepestNestingTarget;
16862
17142
  /***/ "./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/dep-valid.js":
16863
17143
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16864
17144
 
16865
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
17145
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
16866
17146
  const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
16867
17147
  const { relative } = __webpack_require__("node:path");
16868
17148
  const fromPath = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/from-path.js");
@@ -17786,7 +18066,7 @@ module.exports = Link;
17786
18066
  const PackageJson = __webpack_require__("./node_modules/.f/_/@npmcli/package-json/7.0.1/@npmcli/package-json/lib/index.js");
17787
18067
  const nameFromFolder = __webpack_require__("./node_modules/.f/_/@npmcli/name-from-folder/3.0.0/@npmcli/name-from-folder/lib/index.js");
17788
18068
  const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
17789
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
18069
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
17790
18070
  const util = __webpack_require__("node:util");
17791
18071
  const { getPaths: getBinPaths } = __webpack_require__("./node_modules/.f/_/bin-links/5.0.0/bin-links/lib/index.js");
17792
18072
  const { log } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
@@ -18970,7 +19250,7 @@ module.exports = { overrideResolves };
18970
19250
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
18971
19251
 
18972
19252
  const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
18973
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
19253
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
18974
19254
  const { log } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
18975
19255
  class OverrideSet {
18976
19256
  constructor({ overrides, key, parent }) {
@@ -19765,7 +20045,7 @@ const { log } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log
19765
20045
  const { minimatch } = __webpack_require__("./node_modules/.f/_/minimatch/10.1.1/minimatch/dist/commonjs/index.js");
19766
20046
  const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
19767
20047
  const pacote = __webpack_require__("./node_modules/.f/_/pacote/21.0.3/pacote/lib/index.js");
19768
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
20048
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
19769
20049
  const npmFetch = __webpack_require__("./node_modules/.f/_/npm-registry-fetch/19.1.0/npm-registry-fetch/lib/index.js");
19770
20050
  class Results {
19771
20051
  #currentAstSelector;
@@ -21803,7 +22083,7 @@ debug(() => module.exports = checkTree);
21803
22083
  /***/ "./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/version-from-tgz.js":
21804
22084
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
21805
22085
 
21806
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
22086
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
21807
22087
  const { basename } = __webpack_require__("node:path");
21808
22088
  const { URL } = __webpack_require__("node:url");
21809
22089
  module.exports = (name, tgz) => {
@@ -21847,7 +22127,7 @@ const versionFromBaseScopeName = (base, scope, name) => {
21847
22127
  /***/ "./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/vuln.js":
21848
22128
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
21849
22129
 
21850
- const { satisfies, simplifyRange } = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
22130
+ const { satisfies, simplifyRange } = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
21851
22131
  const semverOpt = { loose: true, includePrerelease: true };
21852
22132
  const localeCompare = __webpack_require__("./node_modules/.f/_/@isaacs/string-locale-compare/1.1.0/@isaacs/string-locale-compare/index.js")("en");
21853
22133
  const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
@@ -22282,7 +22562,7 @@ module.exports = getOptions;
22282
22562
  /***/ "./node_modules/.f/_/@npmcli/fs/4.0.0/@npmcli/fs/lib/common/node.js":
22283
22563
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22284
22564
 
22285
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
22565
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
22286
22566
  const satisfies = (range) => {
22287
22567
  return semver.satisfies(process.version, range, { includePrerelease: true });
22288
22568
  };
@@ -23150,7 +23430,7 @@ module.exports = ({ cwd = process.cwd() } = {}) => stat(cwd + "/.git").then(() =
23150
23430
  /***/ "./node_modules/.f/_/@npmcli/git/7.0.0/@npmcli/git/lib/lines-to-revs.js":
23151
23431
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
23152
23432
 
23153
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
23433
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
23154
23434
  module.exports = (lines) => finish(lines.reduce(linesToRevsReducer, {
23155
23435
  versions: {},
23156
23436
  "dist-tags": {},
@@ -23763,7 +24043,7 @@ module.exports = mapWorkspaces;
23763
24043
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
23764
24044
 
23765
24045
  const hash = __webpack_require__("./node_modules/.f/_/@npmcli/metavuln-calculator/9.0.3/@npmcli/metavuln-calculator/lib/hash.js");
23766
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
24046
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
23767
24047
  const semverOpt = { includePrerelease: true, loose: true };
23768
24048
  const getDepSpec = __webpack_require__("./node_modules/.f/_/@npmcli/metavuln-calculator/9.0.3/@npmcli/metavuln-calculator/lib/get-dep-spec.js");
23769
24049
  const _source = Symbol("source");
@@ -24739,8 +25019,8 @@ module.exports = { normalizeData };
24739
25019
  /***/ "./node_modules/.f/_/@npmcli/package-json/7.0.1/@npmcli/package-json/lib/normalize.js":
24740
25020
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
24741
25021
 
24742
- const valid = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/valid.js");
24743
- const clean = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/clean.js");
25022
+ const valid = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/valid.js");
25023
+ const clean = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/clean.js");
24744
25024
  const fs = __webpack_require__("node:fs/promises");
24745
25025
  const path = __webpack_require__("node:path");
24746
25026
  const { log } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
@@ -48968,7 +49248,7 @@ function ownProp(obj, field) {
48968
49248
  return Object.prototype.hasOwnProperty.call(obj, field);
48969
49249
  }
48970
49250
  var path = __webpack_require__("path");
48971
- var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
49251
+ var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js");
48972
49252
  var isAbsolute = __webpack_require__("./node_modules/.f/_/path-is-absolute/1.0.1/path-is-absolute/index.js");
48973
49253
  var Minimatch = minimatch.Minimatch;
48974
49254
  function alphasorti(a, b) {
@@ -49155,7 +49435,7 @@ function childrenIgnored(self, path2) {
49155
49435
  module.exports = glob;
49156
49436
  var fs = __webpack_require__("fs");
49157
49437
  var rp = __webpack_require__("./node_modules/.f/_/fs.realpath/1.0.0/fs.realpath/index.js");
49158
- var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
49438
+ var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js");
49159
49439
  var Minimatch = minimatch.Minimatch;
49160
49440
  var inherits = __webpack_require__("./node_modules/.f/_/inherits/2.0.4/inherits/inherits.js");
49161
49441
  var EE = (__webpack_require__("events").EventEmitter);
@@ -49714,7 +49994,7 @@ module.exports = globSync;
49714
49994
  globSync.GlobSync = GlobSync;
49715
49995
  var fs = __webpack_require__("fs");
49716
49996
  var rp = __webpack_require__("./node_modules/.f/_/fs.realpath/1.0.0/fs.realpath/index.js");
49717
- var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
49997
+ var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js");
49718
49998
  var Minimatch = minimatch.Minimatch;
49719
49999
  var Glob = (__webpack_require__("./node_modules/.f/_/glob/7.1.6/glob/glob.js").Glob);
49720
50000
  var util = __webpack_require__("util");
@@ -52896,7 +53176,7 @@ const normalizeSignal = function({
52896
53176
 
52897
53177
  /***/ }),
52898
53178
 
52899
- /***/ "./node_modules/.f/_/ignore-walk/8.0.0-fynlocal_h/ignore-walk/lib/index.js":
53179
+ /***/ "./node_modules/.f/_/ignore-walk/8.0.0/ignore-walk/lib/index.js":
52900
53180
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
52901
53181
 
52902
53182
  "use strict";
@@ -52944,13 +53224,7 @@ class Walker extends EE {
52944
53224
  return ret;
52945
53225
  }
52946
53226
  start() {
52947
- fs.readdir(this.path, (er, entries) => {
52948
- try {
52949
- er ? this.emit("error", er) : this.onReaddir(entries);
52950
- } catch (err) {
52951
- this.emit("error", err);
52952
- }
52953
- });
53227
+ fs.readdir(this.path, (er, entries) => er ? this.emit("error", er) : this.onReaddir(entries));
52954
53228
  return this;
52955
53229
  }
52956
53230
  isIgnoreFile(e) {
@@ -53719,7 +53993,7 @@ const enquirer_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.
53719
53993
  const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
53720
53994
  const fs_1 = tslib_1.__importDefault(__webpack_require__("fs"));
53721
53995
  const path_1 = tslib_1.__importDefault(__webpack_require__("path"));
53722
- const semver_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js"));
53996
+ const semver_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js"));
53723
53997
  function sortObj(obj) {
53724
53998
  const out = {};
53725
53999
  const sortedKeys = Object.keys(obj).sort().forEach((x) => {
@@ -62412,7 +62686,7 @@ module.exports["default"] = mimicFn;
62412
62686
 
62413
62687
  /***/ }),
62414
62688
 
62415
- /***/ "./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js":
62689
+ /***/ "./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js":
62416
62690
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
62417
62691
 
62418
62692
  module.exports = minimatch;
@@ -62518,6 +62792,7 @@ function Minimatch(pattern, options) {
62518
62792
  pattern = pattern.split(path.sep).join("/");
62519
62793
  }
62520
62794
  this.options = options;
62795
+ this.maxGlobstarRecursion = options.maxGlobstarRecursion !== void 0 ? options.maxGlobstarRecursion : 200;
62521
62796
  this.set = [];
62522
62797
  this.pattern = pattern;
62523
62798
  this.regexp = null;
@@ -62675,6 +62950,7 @@ function parse(pattern, isSub) {
62675
62950
  re += c;
62676
62951
  continue;
62677
62952
  }
62953
+ if (c === "*" && stateChar === "*") continue;
62678
62954
  self.debug("call clearStateChar %j", stateChar);
62679
62955
  clearStateChar();
62680
62956
  stateChar = c;
@@ -62913,50 +63189,147 @@ Minimatch.prototype.match = function match(f, partial) {
62913
63189
  return this.negate;
62914
63190
  };
62915
63191
  Minimatch.prototype.matchOne = function(file, pattern, partial) {
62916
- var options = this.options;
62917
- this.debug(
62918
- "matchOne",
62919
- { "this": this, file, pattern }
62920
- );
62921
- this.debug("matchOne", file.length, pattern.length);
62922
- for (var fi = 0, pi = 0, fl = file.length, pl = pattern.length; fi < fl && pi < pl; fi++, pi++) {
62923
- this.debug("matchOne loop");
62924
- var p = pattern[pi];
62925
- var f = file[fi];
62926
- this.debug(pattern, p, f);
62927
- if (p === false) return false;
62928
- if (p === GLOBSTAR) {
62929
- this.debug("GLOBSTAR", [pattern, p, f]);
62930
- var fr = fi;
62931
- var pr = pi + 1;
62932
- if (pr === pl) {
62933
- this.debug("** at the end");
62934
- for (; fi < fl; fi++) {
62935
- if (file[fi] === "." || file[fi] === ".." || !options.dot && file[fi].charAt(0) === ".") return false;
62936
- }
62937
- return true;
63192
+ if (pattern.indexOf(GLOBSTAR) !== -1) {
63193
+ return this._matchGlobstar(file, pattern, partial, 0, 0);
63194
+ }
63195
+ return this._matchOne(file, pattern, partial, 0, 0);
63196
+ };
63197
+ Minimatch.prototype._matchGlobstar = function(file, pattern, partial, fileIndex, patternIndex) {
63198
+ var i;
63199
+ var firstgs = -1;
63200
+ for (i = patternIndex; i < pattern.length; i++) {
63201
+ if (pattern[i] === GLOBSTAR) {
63202
+ firstgs = i;
63203
+ break;
63204
+ }
63205
+ }
63206
+ var lastgs = -1;
63207
+ for (i = pattern.length - 1; i >= 0; i--) {
63208
+ if (pattern[i] === GLOBSTAR) {
63209
+ lastgs = i;
63210
+ break;
63211
+ }
63212
+ }
63213
+ var head = pattern.slice(patternIndex, firstgs);
63214
+ var body = partial ? pattern.slice(firstgs + 1) : pattern.slice(firstgs + 1, lastgs);
63215
+ var tail = partial ? [] : pattern.slice(lastgs + 1);
63216
+ if (head.length) {
63217
+ var fileHead = file.slice(fileIndex, fileIndex + head.length);
63218
+ if (!this._matchOne(fileHead, head, partial, 0, 0)) {
63219
+ return false;
63220
+ }
63221
+ fileIndex += head.length;
63222
+ }
63223
+ var fileTailMatch = 0;
63224
+ if (tail.length) {
63225
+ if (tail.length + fileIndex > file.length) return false;
63226
+ var tailStart = file.length - tail.length;
63227
+ if (this._matchOne(file, tail, partial, tailStart, 0)) {
63228
+ fileTailMatch = tail.length;
63229
+ } else {
63230
+ if (file[file.length - 1] !== "" || fileIndex + tail.length === file.length) {
63231
+ return false;
62938
63232
  }
62939
- while (fr < fl) {
62940
- var swallowee = file[fr];
62941
- this.debug("\nglobstar while", file, fr, pattern, pr, swallowee);
62942
- if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {
62943
- this.debug("globstar found match!", fr, fl, swallowee);
62944
- return true;
62945
- } else {
62946
- if (swallowee === "." || swallowee === ".." || !options.dot && swallowee.charAt(0) === ".") {
62947
- this.debug("dot detected!", file, fr, pattern, pr);
62948
- break;
62949
- }
62950
- this.debug("globstar swallow a segment, and continue");
62951
- fr++;
62952
- }
63233
+ tailStart--;
63234
+ if (!this._matchOne(file, tail, partial, tailStart, 0)) {
63235
+ return false;
62953
63236
  }
62954
- if (partial) {
62955
- this.debug("\n>>> no match, partial?", file, fr, pattern, pr);
62956
- if (fr === fl) return true;
63237
+ fileTailMatch = tail.length + 1;
63238
+ }
63239
+ }
63240
+ if (!body.length) {
63241
+ var sawSome = !!fileTailMatch;
63242
+ for (i = fileIndex; i < file.length - fileTailMatch; i++) {
63243
+ var f = String(file[i]);
63244
+ sawSome = true;
63245
+ if (f === "." || f === ".." || !this.options.dot && f.charAt(0) === ".") {
63246
+ return false;
63247
+ }
63248
+ }
63249
+ return partial || sawSome;
63250
+ }
63251
+ var bodySegments = [[[], 0]];
63252
+ var currentBody = bodySegments[0];
63253
+ var nonGsParts = 0;
63254
+ var nonGsPartsSums = [0];
63255
+ for (var bi = 0; bi < body.length; bi++) {
63256
+ var b = body[bi];
63257
+ if (b === GLOBSTAR) {
63258
+ nonGsPartsSums.push(nonGsParts);
63259
+ currentBody = [[], 0];
63260
+ bodySegments.push(currentBody);
63261
+ } else {
63262
+ currentBody[0].push(b);
63263
+ nonGsParts++;
63264
+ }
63265
+ }
63266
+ var idx = bodySegments.length - 1;
63267
+ var fileLength = file.length - fileTailMatch;
63268
+ for (var si = 0; si < bodySegments.length; si++) {
63269
+ bodySegments[si][1] = fileLength - (nonGsPartsSums[idx--] + bodySegments[si][0].length);
63270
+ }
63271
+ return !!this._matchGlobStarBodySections(
63272
+ file,
63273
+ bodySegments,
63274
+ fileIndex,
63275
+ 0,
63276
+ partial,
63277
+ 0,
63278
+ !!fileTailMatch
63279
+ );
63280
+ };
63281
+ Minimatch.prototype._matchGlobStarBodySections = function(file, bodySegments, fileIndex, bodyIndex, partial, globStarDepth, sawTail) {
63282
+ var bs = bodySegments[bodyIndex];
63283
+ if (!bs) {
63284
+ for (var i = fileIndex; i < file.length; i++) {
63285
+ sawTail = true;
63286
+ var f = file[i];
63287
+ if (f === "." || f === ".." || !this.options.dot && f.charAt(0) === ".") {
63288
+ return false;
63289
+ }
63290
+ }
63291
+ return sawTail;
63292
+ }
63293
+ var body = bs[0];
63294
+ var after = bs[1];
63295
+ while (fileIndex <= after) {
63296
+ var m = this._matchOne(
63297
+ file.slice(0, fileIndex + body.length),
63298
+ body,
63299
+ partial,
63300
+ fileIndex,
63301
+ 0
63302
+ );
63303
+ if (m && globStarDepth < this.maxGlobstarRecursion) {
63304
+ var sub = this._matchGlobStarBodySections(
63305
+ file,
63306
+ bodySegments,
63307
+ fileIndex + body.length,
63308
+ bodyIndex + 1,
63309
+ partial,
63310
+ globStarDepth + 1,
63311
+ sawTail
63312
+ );
63313
+ if (sub !== false) {
63314
+ return sub;
62957
63315
  }
63316
+ }
63317
+ var f = file[fileIndex];
63318
+ if (f === "." || f === ".." || !this.options.dot && f.charAt(0) === ".") {
62958
63319
  return false;
62959
63320
  }
63321
+ fileIndex++;
63322
+ }
63323
+ return partial || null;
63324
+ };
63325
+ Minimatch.prototype._matchOne = function(file, pattern, partial, fileIndex, patternIndex) {
63326
+ var fi, pi, fl, pl;
63327
+ for (fi = fileIndex, pi = patternIndex, fl = file.length, pl = pattern.length; fi < fl && pi < pl; fi++, pi++) {
63328
+ this.debug("matchOne loop");
63329
+ var p = pattern[pi];
63330
+ var f = file[fi];
63331
+ this.debug(pattern, p, f);
63332
+ if (p === false || p === GLOBSTAR) return false;
62960
63333
  var hit;
62961
63334
  if (typeof p === "string") {
62962
63335
  hit = f === p;
@@ -68371,7 +68744,7 @@ module.exports = findNodeDirectory;
68371
68744
  "use strict";
68372
68745
 
68373
68746
  const log = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/log.js");
68374
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
68747
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
68375
68748
  const { execFile } = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/util.js");
68376
68749
  const win = process.platform === "win32";
68377
68750
  function getOsUserInfo() {
@@ -69202,7 +69575,7 @@ const path = __webpack_require__("path");
69202
69575
  const { Transform, promises: { pipeline } } = __webpack_require__("stream");
69203
69576
  const crypto = __webpack_require__("crypto");
69204
69577
  const log = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/log.js");
69205
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
69578
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
69206
69579
  const { download } = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/download.js");
69207
69580
  const processRelease = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/process-release.js");
69208
69581
  const win = process.platform === "win32";
@@ -69883,7 +70256,7 @@ module.exports.Gyp = Gyp;
69883
70256
 
69884
70257
  "use strict";
69885
70258
 
69886
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
70259
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
69887
70260
  const url = __webpack_require__("url");
69888
70261
  const path = __webpack_require__("path");
69889
70262
  const log = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/log.js");
@@ -70010,7 +70383,7 @@ module.exports.usage = 'Runs "clean", "configure" and "build" all at once';
70010
70383
  const fs = (__webpack_require__("./node_modules/.f/_/graceful-fs/4.2.11/graceful-fs/graceful-fs.js").promises);
70011
70384
  const path = __webpack_require__("path");
70012
70385
  const log = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/log.js");
70013
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
70386
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
70014
70387
  async function remove(gyp, argv) {
70015
70388
  const devDir = gyp.devDir;
70016
70389
  log.verbose("remove", "using node-gyp dir:", devDir);
@@ -70953,8 +71326,8 @@ module.exports = {
70953
71326
  /***/ "./node_modules/.f/_/npm-install-checks/7.1.2/npm-install-checks/lib/dev-engines.js":
70954
71327
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
70955
71328
 
70956
- const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/satisfies.js");
70957
- const validRange = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/valid.js");
71329
+ const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/satisfies.js");
71330
+ const validRange = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/valid.js");
70958
71331
  const recognizedOnFail = [
70959
71332
  "ignore",
70960
71333
  "warn",
@@ -71079,7 +71452,7 @@ module.exports = {
71079
71452
  /***/ "./node_modules/.f/_/npm-install-checks/7.1.2/npm-install-checks/lib/index.js":
71080
71453
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
71081
71454
 
71082
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
71455
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
71083
71456
  const currentEnv = __webpack_require__("./node_modules/.f/_/npm-install-checks/7.1.2/npm-install-checks/lib/current-env.js");
71084
71457
  const { checkDevEngines } = __webpack_require__("./node_modules/.f/_/npm-install-checks/7.1.2/npm-install-checks/lib/dev-engines.js");
71085
71458
  const checkEngine = (target, npmVer, nodeVer, force = false) => {
@@ -71256,8 +71629,8 @@ module.exports = {
71256
71629
  /***/ "./node_modules/.f/_/npm-install-checks/8.0.0/npm-install-checks/lib/dev-engines.js":
71257
71630
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
71258
71631
 
71259
- const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/satisfies.js");
71260
- const validRange = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/valid.js");
71632
+ const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/satisfies.js");
71633
+ const validRange = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/valid.js");
71261
71634
  const recognizedOnFail = [
71262
71635
  "ignore",
71263
71636
  "warn",
@@ -71382,7 +71755,7 @@ module.exports = {
71382
71755
  /***/ "./node_modules/.f/_/npm-install-checks/8.0.0/npm-install-checks/lib/index.js":
71383
71756
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
71384
71757
 
71385
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
71758
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
71386
71759
  const currentEnv = __webpack_require__("./node_modules/.f/_/npm-install-checks/8.0.0/npm-install-checks/lib/current-env.js");
71387
71760
  const { checkDevEngines } = __webpack_require__("./node_modules/.f/_/npm-install-checks/8.0.0/npm-install-checks/lib/dev-engines.js");
71388
71761
  const checkEngine = (target, npmVer, nodeVer, force = false) => {
@@ -71578,7 +71951,7 @@ const { URL } = __webpack_require__("node:url");
71578
71951
  const path = isWindows ? __webpack_require__("node:path/win32") : __webpack_require__("node:path");
71579
71952
  const { homedir } = __webpack_require__("node:os");
71580
71953
  const HostedGit = __webpack_require__("./node_modules/.f/_/hosted-git-info/9.0.2/hosted-git-info/lib/index.js");
71581
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
71954
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
71582
71955
  const validatePackageName = __webpack_require__("./node_modules/.f/_/validate-npm-package-name/6.0.2/validate-npm-package-name/lib/index.js");
71583
71956
  const { log } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
71584
71957
  const hasSlashes = isWindows ? /\\|[/]/ : /[/]/;
@@ -71965,12 +72338,12 @@ module.exports.Result = Result;
71965
72338
 
71966
72339
  /***/ }),
71967
72340
 
71968
- /***/ "./node_modules/.f/_/npm-packlist/10.0.3-fynlocal_h/npm-packlist/lib/index.js":
72341
+ /***/ "./node_modules/.f/_/npm-packlist/10.0.4/npm-packlist/lib/index.js":
71969
72342
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
71970
72343
 
71971
72344
  "use strict";
71972
72345
 
71973
- const { Walker: IgnoreWalker } = __webpack_require__("./node_modules/.f/_/ignore-walk/8.0.0-fynlocal_h/ignore-walk/lib/index.js");
72346
+ const { Walker: IgnoreWalker } = __webpack_require__("./node_modules/.f/_/ignore-walk/8.0.0/ignore-walk/lib/index.js");
71974
72347
  const { lstatSync: lstat, readFileSync: readFile } = __webpack_require__("fs");
71975
72348
  const { basename, dirname, extname, join, relative, resolve, sep } = __webpack_require__("path");
71976
72349
  const { log } = __webpack_require__("./node_modules/.f/_/proc-log/6.0.0/proc-log/lib/index.js");
@@ -72047,7 +72420,6 @@ class PackWalker extends IgnoreWalker {
72047
72420
  this.seen = options.seen || /* @__PURE__ */ new Set();
72048
72421
  this.tree = tree;
72049
72422
  this.requiredFiles = options.requiredFiles || [];
72050
- this.includeSymlinks = options.includeSymlinks;
72051
72423
  const additionalDefaults = [];
72052
72424
  if (options.prefix && options.workspaces) {
72053
72425
  const path = normalizePath(options.path);
@@ -72095,7 +72467,7 @@ class PackWalker extends IgnoreWalker {
72095
72467
  this.ignoreRules[".gitignore"] = null;
72096
72468
  } else if (this.ignoreRules[".npmignore"]) {
72097
72469
  this.ignoreRules[".gitignore"] = null;
72098
- } else if (this.ignoreRules[".gitignore"] && !this.ignoreRules[".npmignore"]) {
72470
+ } else if (this.ignoreRules[".gitignore"] && !this.ignoreRules[".npmignore"] && !this.parent) {
72099
72471
  log.warn(
72100
72472
  "gitignore-fallback",
72101
72473
  "No .npmignore file found, using .gitignore for file exclusion. Consider creating a .npmignore file to explicitly control published files."
@@ -72104,13 +72476,8 @@ class PackWalker extends IgnoreWalker {
72104
72476
  return super.filterEntries();
72105
72477
  }
72106
72478
  // overridden method: we never want to include anything that isn't a file or directory
72107
- // also skip symlinks unless includeSymlinks is true
72108
72479
  onstat(opts, callback) {
72109
- if (opts.st.isSymbolicLink()) {
72110
- if (!this.includeSymlinks) {
72111
- return callback();
72112
- }
72113
- } else if (!opts.st.isFile() && !opts.st.isDirectory()) {
72480
+ if (!opts.st.isFile() && !opts.st.isDirectory()) {
72114
72481
  return callback();
72115
72482
  }
72116
72483
  return super.onstat(opts, callback);
@@ -72152,7 +72519,6 @@ class PackWalker extends IgnoreWalker {
72152
72519
  return {
72153
72520
  ...super.walkerOpt(entry, opts),
72154
72521
  ignoreFiles,
72155
- includeSymlinks: this.includeSymlinks,
72156
72522
  // we map over our own requiredFiles and pass ones that are within this entry
72157
72523
  requiredFiles: this.requiredFiles.map((file) => {
72158
72524
  if (relative(file, entry) === "..") {
@@ -72320,7 +72686,7 @@ walk.Walker = PackWalker;
72320
72686
  "use strict";
72321
72687
 
72322
72688
  const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
72323
- const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/index.js");
72689
+ const semver = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/index.js");
72324
72690
  const { checkEngine } = __webpack_require__("./node_modules/.f/_/npm-install-checks/8.0.0/npm-install-checks/lib/index.js");
72325
72691
  const normalizeBin = __webpack_require__("./node_modules/.f/_/npm-normalize-package-bin/5.0.0/npm-normalize-package-bin/lib/index.js");
72326
72692
  const engineOk = (manifest, npmVersion, nodeVersion) => {
@@ -73828,7 +74194,7 @@ module.exports = pLocate;
73828
74194
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
73829
74195
 
73830
74196
  const { resolve } = __webpack_require__("node:path");
73831
- const packlist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.3-fynlocal_h/npm-packlist/lib/index.js");
74197
+ const packlist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.4/npm-packlist/lib/index.js");
73832
74198
  const runScript = __webpack_require__("./node_modules/.f/_/@npmcli/run-script/10.0.2/@npmcli/run-script/lib/run-script.js");
73833
74199
  const tar = __webpack_require__("./node_modules/.f/_/tar/7.5.2/tar/dist/commonjs/index.js");
73834
74200
  const { Minipass } = __webpack_require__("./node_modules/.f/_/minipass/7.1.2/minipass/dist/commonjs/index.js");
@@ -76882,7 +77248,7 @@ const PassThrough = (__webpack_require__("stream").PassThrough);
76882
77248
  const mississippi = __webpack_require__("./node_modules/.f/_/mississippi/3.0.0/mississippi/index.js");
76883
77249
  const pipe = Promise.promisify(mississippi.pipe, { context: mississippi });
76884
77250
  const tar = __webpack_require__("./node_modules/.f/_/tar/4.4.19/tar/index.js");
76885
- const packlist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.3-fynlocal_h/npm-packlist/lib/index.js");
77251
+ const packlist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.4/npm-packlist/lib/index.js");
76886
77252
  const Fs = __webpack_require__("./node_modules/.f/_/opfs/1.1.1/opfs/lib/index.js");
76887
77253
  const readPkgJson = (dir) => {
76888
77254
  return Fs.readFile(Path.join(dir, "package.json").toString().trim()).then(JSON.parse);
@@ -86380,7 +86746,7 @@ SafeBuffer.allocUnsafeSlow = function(size) {
86380
86746
 
86381
86747
  /***/ }),
86382
86748
 
86383
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/classes/comparator.js":
86749
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/classes/comparator.js":
86384
86750
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
86385
86751
 
86386
86752
  "use strict";
@@ -86485,17 +86851,17 @@ class Comparator {
86485
86851
  }
86486
86852
  }
86487
86853
  module.exports = Comparator;
86488
- const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/parse-options.js");
86489
- const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/re.js");
86490
- const cmp = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/cmp.js");
86491
- const debug = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/debug.js");
86492
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
86493
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
86854
+ const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/parse-options.js");
86855
+ const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/re.js");
86856
+ const cmp = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/cmp.js");
86857
+ const debug = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/debug.js");
86858
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
86859
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
86494
86860
 
86495
86861
 
86496
86862
  /***/ }),
86497
86863
 
86498
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/classes/range.js":
86864
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/classes/range.js":
86499
86865
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
86500
86866
 
86501
86867
  "use strict";
@@ -86640,20 +87006,20 @@ class Range {
86640
87006
  }
86641
87007
  }
86642
87008
  module.exports = Range;
86643
- const LRU = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/lrucache.js");
87009
+ const LRU = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/lrucache.js");
86644
87010
  const cache = new LRU();
86645
- const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/parse-options.js");
86646
- const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/comparator.js");
86647
- const debug = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/debug.js");
86648
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87011
+ const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/parse-options.js");
87012
+ const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/comparator.js");
87013
+ const debug = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/debug.js");
87014
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
86649
87015
  const {
86650
87016
  safeRe: re,
86651
87017
  t,
86652
87018
  comparatorTrimReplace,
86653
87019
  tildeTrimReplace,
86654
87020
  caretTrimReplace
86655
- } = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/re.js");
86656
- const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/constants.js");
87021
+ } = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/re.js");
87022
+ const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/constants.js");
86657
87023
  const isNullSet = (c) => c.value === "<0.0.0-0";
86658
87024
  const isAny = (c) => c.value === "";
86659
87025
  const isSatisfiable = (comparators, options) => {
@@ -86874,16 +87240,16 @@ const testSet = (set, version, options) => {
86874
87240
 
86875
87241
  /***/ }),
86876
87242
 
86877
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js":
87243
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js":
86878
87244
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
86879
87245
 
86880
87246
  "use strict";
86881
87247
 
86882
- const debug = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/debug.js");
86883
- const { MAX_LENGTH, MAX_SAFE_INTEGER } = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/constants.js");
86884
- const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/re.js");
86885
- const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/parse-options.js");
86886
- const { compareIdentifiers } = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/identifiers.js");
87248
+ const debug = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/debug.js");
87249
+ const { MAX_LENGTH, MAX_SAFE_INTEGER } = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/constants.js");
87250
+ const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/re.js");
87251
+ const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/parse-options.js");
87252
+ const { compareIdentifiers } = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/identifiers.js");
86887
87253
  class SemVer {
86888
87254
  constructor(version, options) {
86889
87255
  options = parseOptions(options);
@@ -87155,12 +87521,12 @@ module.exports = SemVer;
87155
87521
 
87156
87522
  /***/ }),
87157
87523
 
87158
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/clean.js":
87524
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/clean.js":
87159
87525
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87160
87526
 
87161
87527
  "use strict";
87162
87528
 
87163
- const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/parse.js");
87529
+ const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/parse.js");
87164
87530
  const clean = (version, options) => {
87165
87531
  const s = parse(version.trim().replace(/^[=v]+/, ""), options);
87166
87532
  return s ? s.version : null;
@@ -87170,17 +87536,17 @@ module.exports = clean;
87170
87536
 
87171
87537
  /***/ }),
87172
87538
 
87173
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/cmp.js":
87539
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/cmp.js":
87174
87540
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87175
87541
 
87176
87542
  "use strict";
87177
87543
 
87178
- const eq = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/eq.js");
87179
- const neq = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/neq.js");
87180
- const gt = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/gt.js");
87181
- const gte = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/gte.js");
87182
- const lt = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/lt.js");
87183
- const lte = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/lte.js");
87544
+ const eq = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/eq.js");
87545
+ const neq = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/neq.js");
87546
+ const gt = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/gt.js");
87547
+ const gte = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/gte.js");
87548
+ const lt = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/lt.js");
87549
+ const lte = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/lte.js");
87184
87550
  const cmp = (a, op, b, loose) => {
87185
87551
  switch (op) {
87186
87552
  case "===":
@@ -87222,14 +87588,14 @@ module.exports = cmp;
87222
87588
 
87223
87589
  /***/ }),
87224
87590
 
87225
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/coerce.js":
87591
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/coerce.js":
87226
87592
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87227
87593
 
87228
87594
  "use strict";
87229
87595
 
87230
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87231
- const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/parse.js");
87232
- const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/re.js");
87596
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
87597
+ const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/parse.js");
87598
+ const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/re.js");
87233
87599
  const coerce = (version, options) => {
87234
87600
  if (version instanceof SemVer) {
87235
87601
  return version;
@@ -87270,12 +87636,12 @@ module.exports = coerce;
87270
87636
 
87271
87637
  /***/ }),
87272
87638
 
87273
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/compare-build.js":
87639
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/compare-build.js":
87274
87640
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87275
87641
 
87276
87642
  "use strict";
87277
87643
 
87278
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87644
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
87279
87645
  const compareBuild = (a, b, loose) => {
87280
87646
  const versionA = new SemVer(a, loose);
87281
87647
  const versionB = new SemVer(b, loose);
@@ -87286,36 +87652,36 @@ module.exports = compareBuild;
87286
87652
 
87287
87653
  /***/ }),
87288
87654
 
87289
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/compare-loose.js":
87655
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/compare-loose.js":
87290
87656
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87291
87657
 
87292
87658
  "use strict";
87293
87659
 
87294
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
87660
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
87295
87661
  const compareLoose = (a, b) => compare(a, b, true);
87296
87662
  module.exports = compareLoose;
87297
87663
 
87298
87664
 
87299
87665
  /***/ }),
87300
87666
 
87301
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js":
87667
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js":
87302
87668
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87303
87669
 
87304
87670
  "use strict";
87305
87671
 
87306
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87672
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
87307
87673
  const compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
87308
87674
  module.exports = compare;
87309
87675
 
87310
87676
 
87311
87677
  /***/ }),
87312
87678
 
87313
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/diff.js":
87679
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/diff.js":
87314
87680
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87315
87681
 
87316
87682
  "use strict";
87317
87683
 
87318
- const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/parse.js");
87684
+ const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/parse.js");
87319
87685
  const diff = (version1, version2) => {
87320
87686
  const v1 = parse(version1, null, true);
87321
87687
  const v2 = parse(version2, null, true);
@@ -87356,48 +87722,48 @@ module.exports = diff;
87356
87722
 
87357
87723
  /***/ }),
87358
87724
 
87359
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/eq.js":
87725
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/eq.js":
87360
87726
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87361
87727
 
87362
87728
  "use strict";
87363
87729
 
87364
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
87730
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
87365
87731
  const eq = (a, b, loose) => compare(a, b, loose) === 0;
87366
87732
  module.exports = eq;
87367
87733
 
87368
87734
 
87369
87735
  /***/ }),
87370
87736
 
87371
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/gt.js":
87737
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/gt.js":
87372
87738
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87373
87739
 
87374
87740
  "use strict";
87375
87741
 
87376
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
87742
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
87377
87743
  const gt = (a, b, loose) => compare(a, b, loose) > 0;
87378
87744
  module.exports = gt;
87379
87745
 
87380
87746
 
87381
87747
  /***/ }),
87382
87748
 
87383
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/gte.js":
87749
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/gte.js":
87384
87750
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87385
87751
 
87386
87752
  "use strict";
87387
87753
 
87388
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
87754
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
87389
87755
  const gte = (a, b, loose) => compare(a, b, loose) >= 0;
87390
87756
  module.exports = gte;
87391
87757
 
87392
87758
 
87393
87759
  /***/ }),
87394
87760
 
87395
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/inc.js":
87761
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/inc.js":
87396
87762
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87397
87763
 
87398
87764
  "use strict";
87399
87765
 
87400
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87766
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
87401
87767
  const inc = (version, release, options, identifier, identifierBase) => {
87402
87768
  if (typeof options === "string") {
87403
87769
  identifierBase = identifier;
@@ -87418,72 +87784,72 @@ module.exports = inc;
87418
87784
 
87419
87785
  /***/ }),
87420
87786
 
87421
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/lt.js":
87787
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/lt.js":
87422
87788
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87423
87789
 
87424
87790
  "use strict";
87425
87791
 
87426
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
87792
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
87427
87793
  const lt = (a, b, loose) => compare(a, b, loose) < 0;
87428
87794
  module.exports = lt;
87429
87795
 
87430
87796
 
87431
87797
  /***/ }),
87432
87798
 
87433
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/lte.js":
87799
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/lte.js":
87434
87800
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87435
87801
 
87436
87802
  "use strict";
87437
87803
 
87438
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
87804
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
87439
87805
  const lte = (a, b, loose) => compare(a, b, loose) <= 0;
87440
87806
  module.exports = lte;
87441
87807
 
87442
87808
 
87443
87809
  /***/ }),
87444
87810
 
87445
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/major.js":
87811
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/major.js":
87446
87812
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87447
87813
 
87448
87814
  "use strict";
87449
87815
 
87450
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87816
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
87451
87817
  const major = (a, loose) => new SemVer(a, loose).major;
87452
87818
  module.exports = major;
87453
87819
 
87454
87820
 
87455
87821
  /***/ }),
87456
87822
 
87457
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/minor.js":
87823
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/minor.js":
87458
87824
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87459
87825
 
87460
87826
  "use strict";
87461
87827
 
87462
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87828
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
87463
87829
  const minor = (a, loose) => new SemVer(a, loose).minor;
87464
87830
  module.exports = minor;
87465
87831
 
87466
87832
 
87467
87833
  /***/ }),
87468
87834
 
87469
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/neq.js":
87835
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/neq.js":
87470
87836
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87471
87837
 
87472
87838
  "use strict";
87473
87839
 
87474
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
87840
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
87475
87841
  const neq = (a, b, loose) => compare(a, b, loose) !== 0;
87476
87842
  module.exports = neq;
87477
87843
 
87478
87844
 
87479
87845
  /***/ }),
87480
87846
 
87481
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/parse.js":
87847
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/parse.js":
87482
87848
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87483
87849
 
87484
87850
  "use strict";
87485
87851
 
87486
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87852
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
87487
87853
  const parse = (version, options, throwErrors = false) => {
87488
87854
  if (version instanceof SemVer) {
87489
87855
  return version;
@@ -87502,24 +87868,24 @@ module.exports = parse;
87502
87868
 
87503
87869
  /***/ }),
87504
87870
 
87505
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/patch.js":
87871
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/patch.js":
87506
87872
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87507
87873
 
87508
87874
  "use strict";
87509
87875
 
87510
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87876
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
87511
87877
  const patch = (a, loose) => new SemVer(a, loose).patch;
87512
87878
  module.exports = patch;
87513
87879
 
87514
87880
 
87515
87881
  /***/ }),
87516
87882
 
87517
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/prerelease.js":
87883
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/prerelease.js":
87518
87884
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87519
87885
 
87520
87886
  "use strict";
87521
87887
 
87522
- const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/parse.js");
87888
+ const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/parse.js");
87523
87889
  const prerelease = (version, options) => {
87524
87890
  const parsed = parse(version, options);
87525
87891
  return parsed && parsed.prerelease.length ? parsed.prerelease : null;
@@ -87529,36 +87895,36 @@ module.exports = prerelease;
87529
87895
 
87530
87896
  /***/ }),
87531
87897
 
87532
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/rcompare.js":
87898
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/rcompare.js":
87533
87899
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87534
87900
 
87535
87901
  "use strict";
87536
87902
 
87537
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
87903
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
87538
87904
  const rcompare = (a, b, loose) => compare(b, a, loose);
87539
87905
  module.exports = rcompare;
87540
87906
 
87541
87907
 
87542
87908
  /***/ }),
87543
87909
 
87544
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/rsort.js":
87910
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/rsort.js":
87545
87911
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87546
87912
 
87547
87913
  "use strict";
87548
87914
 
87549
- const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare-build.js");
87915
+ const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare-build.js");
87550
87916
  const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));
87551
87917
  module.exports = rsort;
87552
87918
 
87553
87919
 
87554
87920
  /***/ }),
87555
87921
 
87556
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/satisfies.js":
87922
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/satisfies.js":
87557
87923
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87558
87924
 
87559
87925
  "use strict";
87560
87926
 
87561
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
87927
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
87562
87928
  const satisfies = (version, range, options) => {
87563
87929
  try {
87564
87930
  range = new Range(range, options);
@@ -87572,24 +87938,24 @@ module.exports = satisfies;
87572
87938
 
87573
87939
  /***/ }),
87574
87940
 
87575
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/sort.js":
87941
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/sort.js":
87576
87942
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87577
87943
 
87578
87944
  "use strict";
87579
87945
 
87580
- const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare-build.js");
87946
+ const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare-build.js");
87581
87947
  const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));
87582
87948
  module.exports = sort;
87583
87949
 
87584
87950
 
87585
87951
  /***/ }),
87586
87952
 
87587
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/functions/valid.js":
87953
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/functions/valid.js":
87588
87954
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87589
87955
 
87590
87956
  "use strict";
87591
87957
 
87592
- const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/parse.js");
87958
+ const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/parse.js");
87593
87959
  const valid = (version, options) => {
87594
87960
  const v = parse(version, options);
87595
87961
  return v ? v.version : null;
@@ -87599,52 +87965,52 @@ module.exports = valid;
87599
87965
 
87600
87966
  /***/ }),
87601
87967
 
87602
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/index.js":
87603
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87604
-
87605
- "use strict";
87606
-
87607
- const internalRe = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/re.js");
87608
- const constants = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/constants.js");
87609
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87610
- const identifiers = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/identifiers.js");
87611
- const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/parse.js");
87612
- const valid = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/valid.js");
87613
- const clean = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/clean.js");
87614
- const inc = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/inc.js");
87615
- const diff = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/diff.js");
87616
- const major = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/major.js");
87617
- const minor = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/minor.js");
87618
- const patch = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/patch.js");
87619
- const prerelease = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/prerelease.js");
87620
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
87621
- const rcompare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/rcompare.js");
87622
- const compareLoose = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare-loose.js");
87623
- const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare-build.js");
87624
- const sort = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/sort.js");
87625
- const rsort = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/rsort.js");
87626
- const gt = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/gt.js");
87627
- const lt = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/lt.js");
87628
- const eq = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/eq.js");
87629
- const neq = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/neq.js");
87630
- const gte = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/gte.js");
87631
- const lte = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/lte.js");
87632
- const cmp = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/cmp.js");
87633
- const coerce = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/coerce.js");
87634
- const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/comparator.js");
87635
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
87636
- const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/satisfies.js");
87637
- const toComparators = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/to-comparators.js");
87638
- const maxSatisfying = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/max-satisfying.js");
87639
- const minSatisfying = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/min-satisfying.js");
87640
- const minVersion = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/min-version.js");
87641
- const validRange = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/valid.js");
87642
- const outside = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/outside.js");
87643
- const gtr = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/gtr.js");
87644
- const ltr = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/ltr.js");
87645
- const intersects = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/intersects.js");
87646
- const simplifyRange = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/simplify.js");
87647
- const subset = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/subset.js");
87968
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/index.js":
87969
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87970
+
87971
+ "use strict";
87972
+
87973
+ const internalRe = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/re.js");
87974
+ const constants = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/constants.js");
87975
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
87976
+ const identifiers = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/identifiers.js");
87977
+ const parse = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/parse.js");
87978
+ const valid = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/valid.js");
87979
+ const clean = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/clean.js");
87980
+ const inc = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/inc.js");
87981
+ const diff = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/diff.js");
87982
+ const major = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/major.js");
87983
+ const minor = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/minor.js");
87984
+ const patch = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/patch.js");
87985
+ const prerelease = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/prerelease.js");
87986
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
87987
+ const rcompare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/rcompare.js");
87988
+ const compareLoose = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare-loose.js");
87989
+ const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare-build.js");
87990
+ const sort = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/sort.js");
87991
+ const rsort = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/rsort.js");
87992
+ const gt = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/gt.js");
87993
+ const lt = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/lt.js");
87994
+ const eq = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/eq.js");
87995
+ const neq = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/neq.js");
87996
+ const gte = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/gte.js");
87997
+ const lte = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/lte.js");
87998
+ const cmp = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/cmp.js");
87999
+ const coerce = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/coerce.js");
88000
+ const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/comparator.js");
88001
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
88002
+ const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/satisfies.js");
88003
+ const toComparators = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/to-comparators.js");
88004
+ const maxSatisfying = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/max-satisfying.js");
88005
+ const minSatisfying = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/min-satisfying.js");
88006
+ const minVersion = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/min-version.js");
88007
+ const validRange = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/valid.js");
88008
+ const outside = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/outside.js");
88009
+ const gtr = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/gtr.js");
88010
+ const ltr = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/ltr.js");
88011
+ const intersects = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/intersects.js");
88012
+ const simplifyRange = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/simplify.js");
88013
+ const subset = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/subset.js");
87648
88014
  module.exports = {
87649
88015
  parse,
87650
88016
  valid,
@@ -87696,7 +88062,7 @@ module.exports = {
87696
88062
 
87697
88063
  /***/ }),
87698
88064
 
87699
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/internal/constants.js":
88065
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/internal/constants.js":
87700
88066
  /***/ ((module) => {
87701
88067
 
87702
88068
  "use strict";
@@ -87730,7 +88096,7 @@ module.exports = {
87730
88096
 
87731
88097
  /***/ }),
87732
88098
 
87733
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/internal/debug.js":
88099
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/internal/debug.js":
87734
88100
  /***/ ((module) => {
87735
88101
 
87736
88102
  "use strict";
@@ -87742,7 +88108,7 @@ module.exports = debug;
87742
88108
 
87743
88109
  /***/ }),
87744
88110
 
87745
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/internal/identifiers.js":
88111
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/internal/identifiers.js":
87746
88112
  /***/ ((module) => {
87747
88113
 
87748
88114
  "use strict";
@@ -87769,7 +88135,7 @@ module.exports = {
87769
88135
 
87770
88136
  /***/ }),
87771
88137
 
87772
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/internal/lrucache.js":
88138
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/internal/lrucache.js":
87773
88139
  /***/ ((module) => {
87774
88140
 
87775
88141
  "use strict";
@@ -87809,7 +88175,7 @@ module.exports = LRUCache;
87809
88175
 
87810
88176
  /***/ }),
87811
88177
 
87812
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/internal/parse-options.js":
88178
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/internal/parse-options.js":
87813
88179
  /***/ ((module) => {
87814
88180
 
87815
88181
  "use strict";
@@ -87830,7 +88196,7 @@ module.exports = parseOptions;
87830
88196
 
87831
88197
  /***/ }),
87832
88198
 
87833
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/internal/re.js":
88199
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/internal/re.js":
87834
88200
  /***/ ((module, exports, __webpack_require__) => {
87835
88201
 
87836
88202
  "use strict";
@@ -87839,8 +88205,8 @@ const {
87839
88205
  MAX_SAFE_COMPONENT_LENGTH,
87840
88206
  MAX_SAFE_BUILD_LENGTH,
87841
88207
  MAX_LENGTH
87842
- } = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/constants.js");
87843
- const debug = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/internal/debug.js");
88208
+ } = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/constants.js");
88209
+ const debug = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/internal/debug.js");
87844
88210
  exports = module.exports = {};
87845
88211
  const re = exports.re = [];
87846
88212
  const safeRe = exports.safeRe = [];
@@ -87920,24 +88286,24 @@ createToken("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$");
87920
88286
 
87921
88287
  /***/ }),
87922
88288
 
87923
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/gtr.js":
88289
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/gtr.js":
87924
88290
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87925
88291
 
87926
88292
  "use strict";
87927
88293
 
87928
- const outside = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/outside.js");
88294
+ const outside = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/outside.js");
87929
88295
  const gtr = (version, range, options) => outside(version, range, ">", options);
87930
88296
  module.exports = gtr;
87931
88297
 
87932
88298
 
87933
88299
  /***/ }),
87934
88300
 
87935
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/intersects.js":
88301
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/intersects.js":
87936
88302
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87937
88303
 
87938
88304
  "use strict";
87939
88305
 
87940
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
88306
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
87941
88307
  const intersects = (r1, r2, options) => {
87942
88308
  r1 = new Range(r1, options);
87943
88309
  r2 = new Range(r2, options);
@@ -87948,25 +88314,25 @@ module.exports = intersects;
87948
88314
 
87949
88315
  /***/ }),
87950
88316
 
87951
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/ltr.js":
88317
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/ltr.js":
87952
88318
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87953
88319
 
87954
88320
  "use strict";
87955
88321
 
87956
- const outside = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/ranges/outside.js");
88322
+ const outside = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/ranges/outside.js");
87957
88323
  const ltr = (version, range, options) => outside(version, range, "<", options);
87958
88324
  module.exports = ltr;
87959
88325
 
87960
88326
 
87961
88327
  /***/ }),
87962
88328
 
87963
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/max-satisfying.js":
88329
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/max-satisfying.js":
87964
88330
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87965
88331
 
87966
88332
  "use strict";
87967
88333
 
87968
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
87969
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
88334
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
88335
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
87970
88336
  const maxSatisfying = (versions, range, options) => {
87971
88337
  let max = null;
87972
88338
  let maxSV = null;
@@ -87991,13 +88357,13 @@ module.exports = maxSatisfying;
87991
88357
 
87992
88358
  /***/ }),
87993
88359
 
87994
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/min-satisfying.js":
88360
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/min-satisfying.js":
87995
88361
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
87996
88362
 
87997
88363
  "use strict";
87998
88364
 
87999
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
88000
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
88365
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
88366
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
88001
88367
  const minSatisfying = (versions, range, options) => {
88002
88368
  let min = null;
88003
88369
  let minSV = null;
@@ -88022,14 +88388,14 @@ module.exports = minSatisfying;
88022
88388
 
88023
88389
  /***/ }),
88024
88390
 
88025
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/min-version.js":
88391
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/min-version.js":
88026
88392
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
88027
88393
 
88028
88394
  "use strict";
88029
88395
 
88030
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
88031
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
88032
- const gt = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/gt.js");
88396
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
88397
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
88398
+ const gt = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/gt.js");
88033
88399
  const minVersion = (range, loose) => {
88034
88400
  range = new Range(range, loose);
88035
88401
  let minver = new SemVer("0.0.0");
@@ -88083,20 +88449,20 @@ module.exports = minVersion;
88083
88449
 
88084
88450
  /***/ }),
88085
88451
 
88086
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/outside.js":
88452
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/outside.js":
88087
88453
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
88088
88454
 
88089
88455
  "use strict";
88090
88456
 
88091
- const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/semver.js");
88092
- const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/comparator.js");
88457
+ const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/semver.js");
88458
+ const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/comparator.js");
88093
88459
  const { ANY } = Comparator;
88094
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
88095
- const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/satisfies.js");
88096
- const gt = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/gt.js");
88097
- const lt = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/lt.js");
88098
- const lte = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/lte.js");
88099
- const gte = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/gte.js");
88460
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
88461
+ const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/satisfies.js");
88462
+ const gt = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/gt.js");
88463
+ const lt = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/lt.js");
88464
+ const lte = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/lte.js");
88465
+ const gte = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/gte.js");
88100
88466
  const outside = (version, range, hilo, options) => {
88101
88467
  version = new SemVer(version, options);
88102
88468
  range = new Range(range, options);
@@ -88154,13 +88520,13 @@ module.exports = outside;
88154
88520
 
88155
88521
  /***/ }),
88156
88522
 
88157
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/simplify.js":
88523
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/simplify.js":
88158
88524
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
88159
88525
 
88160
88526
  "use strict";
88161
88527
 
88162
- const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/satisfies.js");
88163
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
88528
+ const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/satisfies.js");
88529
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
88164
88530
  module.exports = (versions, range, options) => {
88165
88531
  const set = [];
88166
88532
  let first = null;
@@ -88206,16 +88572,16 @@ module.exports = (versions, range, options) => {
88206
88572
 
88207
88573
  /***/ }),
88208
88574
 
88209
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/subset.js":
88575
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/subset.js":
88210
88576
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
88211
88577
 
88212
88578
  "use strict";
88213
88579
 
88214
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
88215
- const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/comparator.js");
88580
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
88581
+ const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/comparator.js");
88216
88582
  const { ANY } = Comparator;
88217
- const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/satisfies.js");
88218
- const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/functions/compare.js");
88583
+ const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/satisfies.js");
88584
+ const compare = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/functions/compare.js");
88219
88585
  const subset = (sub, dom, options = {}) => {
88220
88586
  if (sub === dom) {
88221
88587
  return true;
@@ -88370,24 +88736,24 @@ module.exports = subset;
88370
88736
 
88371
88737
  /***/ }),
88372
88738
 
88373
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/to-comparators.js":
88739
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/to-comparators.js":
88374
88740
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
88375
88741
 
88376
88742
  "use strict";
88377
88743
 
88378
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
88744
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
88379
88745
  const toComparators = (range, options) => new Range(range, options).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" "));
88380
88746
  module.exports = toComparators;
88381
88747
 
88382
88748
 
88383
88749
  /***/ }),
88384
88750
 
88385
- /***/ "./node_modules/.f/_/semver/7.7.3/semver/ranges/valid.js":
88751
+ /***/ "./node_modules/.f/_/semver/7.7.4/semver/ranges/valid.js":
88386
88752
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
88387
88753
 
88388
88754
  "use strict";
88389
88755
 
88390
- const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.3/semver/classes/range.js");
88756
+ const Range = __webpack_require__("./node_modules/.f/_/semver/7.7.4/semver/classes/range.js");
88391
88757
  const validRange = (range, options) => {
88392
88758
  try {
88393
88759
  return new Range(range, options).range || "*";
@@ -102737,7 +103103,7 @@ module.exports = getLogger;
102737
103103
 
102738
103104
  "use strict";
102739
103105
 
102740
- const xsh = __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/index.js");
103106
+ const xsh = __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/index.js");
102741
103107
  const chalk = __webpack_require__("./node_modules/.f/_/chalk/4.1.2/chalk/source/index.js");
102742
103108
  const getDefaultLogger = __webpack_require__("./node_modules/.f/_/visual-exec/0.1.14/visual-exec/lib/get-default-logger.js");
102743
103109
  const VisualLogger = __webpack_require__("./node_modules/.f/_/visual-logger/1.1.3/visual-logger/lib/visual-logger.js");
@@ -104001,7 +104367,7 @@ module.exports = xenvConfig;
104001
104367
 
104002
104368
  /***/ }),
104003
104369
 
104004
- /***/ "./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/env-path.js":
104370
+ /***/ "./node_modules/.f/_/xsh/0.4.6/xsh/lib/env-path.js":
104005
104371
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
104006
104372
 
104007
104373
  "use strict";
@@ -104078,7 +104444,7 @@ module.exports = {
104078
104444
 
104079
104445
  /***/ }),
104080
104446
 
104081
- /***/ "./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/env.js":
104447
+ /***/ "./node_modules/.f/_/xsh/0.4.6/xsh/lib/env.js":
104082
104448
  /***/ ((module) => {
104083
104449
 
104084
104450
  "use strict";
@@ -104119,7 +104485,7 @@ module.exports = {
104119
104485
 
104120
104486
  /***/ }),
104121
104487
 
104122
- /***/ "./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/esc-bs.js":
104488
+ /***/ "./node_modules/.f/_/xsh/0.4.6/xsh/lib/esc-bs.js":
104123
104489
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
104124
104490
 
104125
104491
  "use strict";
@@ -104130,13 +104496,13 @@ module.exports = Path.sep === "\\" ? (x) => x.replace(/\\/g, "\\\\") : (x) => x;
104130
104496
 
104131
104497
  /***/ }),
104132
104498
 
104133
- /***/ "./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/exec.js":
104499
+ /***/ "./node_modules/.f/_/xsh/0.4.6/xsh/lib/exec.js":
104134
104500
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
104135
104501
 
104136
104502
  "use strict";
104137
104503
 
104138
104504
  const shell = __webpack_require__("./node_modules/.f/_/shcmd/0.8.4/shcmd/shell.js");
104139
- const util = __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/util.js");
104505
+ const util = __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/util.js");
104140
104506
  const assert = __webpack_require__("assert");
104141
104507
  function exec() {
104142
104508
  const error = (cmd2, code, output) => {
@@ -104211,19 +104577,19 @@ module.exports = exec;
104211
104577
 
104212
104578
  /***/ }),
104213
104579
 
104214
- /***/ "./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/index.js":
104580
+ /***/ "./node_modules/.f/_/xsh/0.4.6/xsh/lib/index.js":
104215
104581
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
104216
104582
 
104217
104583
  "use strict";
104218
104584
 
104219
- const util = __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/util.js");
104585
+ const util = __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/util.js");
104220
104586
  const xsh = {
104221
- exec: __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/exec.js"),
104222
- env: __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/env.js"),
104223
- envPath: __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/env-path.js"),
104224
- mkCmd: __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/mkcmd.js"),
104225
- pathCwd: __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/path-cwd.js"),
104226
- pathCwdNm: __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/path-cwd-nm.js"),
104587
+ exec: __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/exec.js"),
104588
+ env: __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/env.js"),
104589
+ envPath: __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/env-path.js"),
104590
+ mkCmd: __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/mkcmd.js"),
104591
+ pathCwd: __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/path-cwd.js"),
104592
+ pathCwdNm: __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/path-cwd-nm.js"),
104227
104593
  $: __webpack_require__("./node_modules/.f/_/shcmd/0.8.4/shcmd/shell.js")
104228
104594
  };
104229
104595
  Object.defineProperty(xsh, "Promise", {
@@ -104237,7 +104603,7 @@ module.exports = xsh;
104237
104603
 
104238
104604
  /***/ }),
104239
104605
 
104240
- /***/ "./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/mkcmd.js":
104606
+ /***/ "./node_modules/.f/_/xsh/0.4.6/xsh/lib/mkcmd.js":
104241
104607
  /***/ ((module) => {
104242
104608
 
104243
104609
  "use strict";
@@ -104250,14 +104616,14 @@ module.exports = mkCmd;
104250
104616
 
104251
104617
  /***/ }),
104252
104618
 
104253
- /***/ "./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/path-cwd-nm.js":
104619
+ /***/ "./node_modules/.f/_/xsh/0.4.6/xsh/lib/path-cwd-nm.js":
104254
104620
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
104255
104621
 
104256
104622
  "use strict";
104257
104623
 
104258
- const pathCwd = __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/path-cwd.js");
104624
+ const pathCwd = __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/path-cwd.js");
104259
104625
  const Path = __webpack_require__("path");
104260
- const escBs = __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/esc-bs.js");
104626
+ const escBs = __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/esc-bs.js");
104261
104627
  const normNm = escBs(Path.normalize("/node_modules/"));
104262
104628
  const normNmReplacer = Path.normalize("/~/");
104263
104629
  const makeNmRegex = () => escBs(Path.resolve("node_modules"));
@@ -104280,13 +104646,13 @@ module.exports = {
104280
104646
 
104281
104647
  /***/ }),
104282
104648
 
104283
- /***/ "./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/path-cwd.js":
104649
+ /***/ "./node_modules/.f/_/xsh/0.4.6/xsh/lib/path-cwd.js":
104284
104650
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
104285
104651
 
104286
104652
  "use strict";
104287
104653
 
104288
104654
  const Path = __webpack_require__("path");
104289
- const escBs = __webpack_require__("./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/esc-bs.js");
104655
+ const escBs = __webpack_require__("./node_modules/.f/_/xsh/0.4.6/xsh/lib/esc-bs.js");
104290
104656
  module.exports = {
104291
104657
  remove: (p, flags, stripSlash) => {
104292
104658
  const cwd = process.cwd();
@@ -104312,7 +104678,7 @@ module.exports = {
104312
104678
 
104313
104679
  /***/ }),
104314
104680
 
104315
- /***/ "./node_modules/.f/_/xsh/0.4.6-fynlocal_h/xsh/lib/util.js":
104681
+ /***/ "./node_modules/.f/_/xsh/0.4.6/xsh/lib/util.js":
104316
104682
  /***/ ((module) => {
104317
104683
 
104318
104684
  "use strict";