fyn 2.1.1 → 2.1.3
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 +446 -229
- package/package.json +1 -1
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.
|
|
128
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/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");
|
|
@@ -2733,7 +2733,7 @@ const logger = __webpack_require__("./lib/logger.ts");
|
|
|
2733
2733
|
const fynTil = __webpack_require__("./lib/util/fyntil.ts");
|
|
2734
2734
|
const lockfile = __webpack_require__("./node_modules/.f/_/lockfile/1.0.4/lockfile/lockfile.js");
|
|
2735
2735
|
const util = __webpack_require__("util");
|
|
2736
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
2736
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
2737
2737
|
const readline = __webpack_require__("readline");
|
|
2738
2738
|
const createLock = util.promisify(lockfile.lock);
|
|
2739
2739
|
const unlock = util.promisify(lockfile.unlock);
|
|
@@ -3767,7 +3767,7 @@ module.exports = FynGlobal;
|
|
|
3767
3767
|
const Path = __webpack_require__("path");
|
|
3768
3768
|
const util = __webpack_require__("util");
|
|
3769
3769
|
const assert = __webpack_require__("assert");
|
|
3770
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
3770
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
3771
3771
|
const _ = __webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js");
|
|
3772
3772
|
const logger = __webpack_require__("./lib/logger.ts");
|
|
3773
3773
|
const PkgDepResolver = __webpack_require__("./lib/pkg-dep-resolver.ts");
|
|
@@ -3807,7 +3807,7 @@ class Fyn {
|
|
|
3807
3807
|
logger.info("dep lock time set to", this._lockTime.toString());
|
|
3808
3808
|
}
|
|
3809
3809
|
this._installConfig = { time: 0 };
|
|
3810
|
-
this.
|
|
3810
|
+
this._shortPkgDir = Boolean(process.env.FYN_SHORT_PKG_DIR);
|
|
3811
3811
|
if (!_fynpo) {
|
|
3812
3812
|
this._fynpo = {};
|
|
3813
3813
|
}
|
|
@@ -3907,7 +3907,13 @@ class Fyn {
|
|
|
3907
3907
|
} else {
|
|
3908
3908
|
centralDir = this._fynpo.config.centralDir;
|
|
3909
3909
|
if (!centralDir) {
|
|
3910
|
-
|
|
3910
|
+
const storeBaseDir = await fynTil.resolveGitMainWorktreeDir(this._fynpo.dir);
|
|
3911
|
+
if (storeBaseDir !== this._fynpo.dir) {
|
|
3912
|
+
logger.info(
|
|
3913
|
+
`fynpo monorepo is a git worktree; sharing central store from main worktree ${storeBaseDir}`
|
|
3914
|
+
);
|
|
3915
|
+
}
|
|
3916
|
+
centralDir = Path.join(storeBaseDir, ".fynpo", "_store");
|
|
3911
3917
|
}
|
|
3912
3918
|
logger.info(`Enabling central store by fynpo monorepo using dir ${centralDir}`);
|
|
3913
3919
|
}
|
|
@@ -3987,6 +3993,15 @@ class Fyn {
|
|
|
3987
3993
|
}
|
|
3988
3994
|
this._layout = layout;
|
|
3989
3995
|
}
|
|
3996
|
+
const recordedShort = fynInstallConfig.shortPkgDir === void 0 ? true : fynInstallConfig.shortPkgDir;
|
|
3997
|
+
if (recordedShort !== this._shortPkgDir) {
|
|
3998
|
+
if (process.env.FYN_SHORT_PKG_DIR !== void 0) {
|
|
3999
|
+
logger.warn(
|
|
4000
|
+
`Forcing pkg-dir to ${recordedShort ? "short" : "long"} form because your existing node_modules uses that. To change it, please remove node_modules first.`
|
|
4001
|
+
);
|
|
4002
|
+
}
|
|
4003
|
+
this._shortPkgDir = recordedShort;
|
|
4004
|
+
}
|
|
3990
4005
|
this._installConfig = { ...this._installConfig, ...fynInstallConfig, layout };
|
|
3991
4006
|
} catch (err) {
|
|
3992
4007
|
const msgKey = `fynInstallConfig:${filename}`;
|
|
@@ -4201,7 +4216,8 @@ class Fyn {
|
|
|
4201
4216
|
time: Date.now() + 5,
|
|
4202
4217
|
centralDir,
|
|
4203
4218
|
production: this.production,
|
|
4204
|
-
layout: this._layout
|
|
4219
|
+
layout: this._layout,
|
|
4220
|
+
shortPkgDir: this._shortPkgDir
|
|
4205
4221
|
// not a good idea to save --run-npm options to install config because
|
|
4206
4222
|
// future fyn install will automatically run them and would be unexpected.
|
|
4207
4223
|
// if fynpo bootstrap should run certain npm scripts, user should set those
|
|
@@ -4491,11 +4507,10 @@ class Fyn {
|
|
|
4491
4507
|
return Path.join(this.getOutputDir(), name);
|
|
4492
4508
|
}
|
|
4493
4509
|
if (version) {
|
|
4494
|
-
if (this.
|
|
4495
|
-
return Path.join(this.getOutputDir(), FV_DIR, "_", name, version);
|
|
4496
|
-
} else {
|
|
4510
|
+
if (this._shortPkgDir) {
|
|
4497
4511
|
return Path.join(this.getOutputDir(), FV_DIR, "_", name, version, name);
|
|
4498
4512
|
}
|
|
4513
|
+
return Path.join(this.getOutputDir(), FV_DIR, "_", name, version, "node_modules", name);
|
|
4499
4514
|
}
|
|
4500
4515
|
return Path.join(this.getOutputDir(), FV_DIR, "_", name);
|
|
4501
4516
|
}
|
|
@@ -5627,6 +5642,7 @@ const Fs = __webpack_require__("./lib/util/file-ops.ts");
|
|
|
5627
5642
|
const _ = __webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js");
|
|
5628
5643
|
const chalk = __webpack_require__("./node_modules/.f/_/chalk/4.1.2/chalk/source/index.js");
|
|
5629
5644
|
const simpleSemverCompare = (__webpack_require__("./lib/util/semver.ts").simpleCompare);
|
|
5645
|
+
const Semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
5630
5646
|
const Yaml = __webpack_require__("./node_modules/.f/_/yamljs/0.3.0/yamljs/lib/Yaml.js");
|
|
5631
5647
|
const sortObjKeys = __webpack_require__("./lib/util/sort-obj-keys.ts");
|
|
5632
5648
|
const {
|
|
@@ -5821,7 +5837,10 @@ class PkgDepLocker {
|
|
|
5821
5837
|
const versions = {};
|
|
5822
5838
|
_.each(sorted, (version) => {
|
|
5823
5839
|
const vpkg = locked[version];
|
|
5824
|
-
|
|
5840
|
+
const isLocalVpkg = vpkg && vpkg.$ === "local";
|
|
5841
|
+
const badVersionKey = !isLocalVpkg && !Semver.valid(version);
|
|
5842
|
+
const badDeps = vpkg && vpkg.dependencies && !this._depsResolvable(vpkg.dependencies);
|
|
5843
|
+
if (!_.isEmpty(vpkg) && vpkg._valid !== false && !badVersionKey && !badDeps) {
|
|
5825
5844
|
if (vpkg.$ === "local") {
|
|
5826
5845
|
vpkg.local = true;
|
|
5827
5846
|
vpkg.dist = {
|
|
@@ -5844,6 +5863,15 @@ class PkgDepLocker {
|
|
|
5844
5863
|
}
|
|
5845
5864
|
versions[version] = vpkg;
|
|
5846
5865
|
} else {
|
|
5866
|
+
if (badVersionKey) {
|
|
5867
|
+
logger.error(
|
|
5868
|
+
`lockfile entry for ${item.name} has invalid version key "${version}" - ignoring and re-resolving from registry`
|
|
5869
|
+
);
|
|
5870
|
+
} else if (badDeps) {
|
|
5871
|
+
logger.error(
|
|
5872
|
+
`lockfile entry ${item.name}@${version} has dependencies not satisfiable within the lock (corrupt lock) - ignoring and re-resolving from registry`
|
|
5873
|
+
);
|
|
5874
|
+
}
|
|
5847
5875
|
valid = false;
|
|
5848
5876
|
}
|
|
5849
5877
|
});
|
|
@@ -5865,6 +5893,37 @@ class PkgDepLocker {
|
|
|
5865
5893
|
}
|
|
5866
5894
|
return valid && locked;
|
|
5867
5895
|
}
|
|
5896
|
+
//
|
|
5897
|
+
// Check that every recorded dependency pin can be resolved within the lock data.
|
|
5898
|
+
// A healthy fyn lock is self-contained: every locked package's dependency specs are
|
|
5899
|
+
// satisfied by some version that also has a lock entry. A pin that points at a version
|
|
5900
|
+
// absent from the lock signals corruption (e.g. a version block's deps got swapped
|
|
5901
|
+
// during a rebase/merge), so the entry must be dropped and re-resolved.
|
|
5902
|
+
//
|
|
5903
|
+
_depsResolvable(deps) {
|
|
5904
|
+
for (const depName in deps) {
|
|
5905
|
+
if (!this._isDepResolvable(depName, deps[depName])) {
|
|
5906
|
+
return false;
|
|
5907
|
+
}
|
|
5908
|
+
}
|
|
5909
|
+
return true;
|
|
5910
|
+
}
|
|
5911
|
+
_isDepResolvable(depName, spec) {
|
|
5912
|
+
const depLock = this._lockData[depName];
|
|
5913
|
+
if (!depLock) return true;
|
|
5914
|
+
let versions;
|
|
5915
|
+
let rangeMap;
|
|
5916
|
+
if (depLock.versions) {
|
|
5917
|
+
versions = Object.keys(depLock.versions);
|
|
5918
|
+
rangeMap = depLock[LOCK_RSEMVERS] || {};
|
|
5919
|
+
} else {
|
|
5920
|
+
versions = Object.keys(depLock).filter((k) => !k.startsWith("_"));
|
|
5921
|
+
rangeMap = depLock._ || {};
|
|
5922
|
+
}
|
|
5923
|
+
if (Object.prototype.hasOwnProperty.call(rangeMap, spec)) return true;
|
|
5924
|
+
if (!Semver.validRange(spec)) return true;
|
|
5925
|
+
return versions.some((v) => Semver.valid(v) && Semver.satisfies(v, spec));
|
|
5926
|
+
}
|
|
5868
5927
|
/**
|
|
5869
5928
|
* Set the package.json's dependencies items and check if they changed from
|
|
5870
5929
|
* lock data.
|
|
@@ -6035,6 +6094,14 @@ class PkgDepLocker {
|
|
|
6035
6094
|
if (!Path.isAbsolute(filename)) filename = Path.resolve(filename);
|
|
6036
6095
|
const data = (await Fs.readFile(filename)).toString();
|
|
6037
6096
|
this._shaSum = this.shasum(data);
|
|
6097
|
+
if (/^(<<<<<<<|=======|>>>>>>>)/m.test(data)) {
|
|
6098
|
+
logger.error(
|
|
6099
|
+
`lockfile ${filename} has git conflict markers - ignoring it and re-resolving from registry`
|
|
6100
|
+
);
|
|
6101
|
+
this._shaSum = Date.now();
|
|
6102
|
+
this._lockData = {};
|
|
6103
|
+
return false;
|
|
6104
|
+
}
|
|
6038
6105
|
this._lockData = Yaml.parse(data);
|
|
6039
6106
|
const basedir = Path.dirname(filename);
|
|
6040
6107
|
this._fullLocalPath(basedir);
|
|
@@ -6083,7 +6150,7 @@ const _ = __webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.
|
|
|
6083
6150
|
const Fs = __webpack_require__("./lib/util/file-ops.ts");
|
|
6084
6151
|
const Path = __webpack_require__("path");
|
|
6085
6152
|
const semverUtil = __webpack_require__("./lib/util/semver.ts");
|
|
6086
|
-
const Semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
6153
|
+
const Semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
6087
6154
|
const chalk = __webpack_require__("./node_modules/.f/_/chalk/4.1.2/chalk/source/index.js");
|
|
6088
6155
|
const logger = __webpack_require__("./lib/logger.ts");
|
|
6089
6156
|
const DepItem = __webpack_require__("./lib/dep-item.ts");
|
|
@@ -7099,7 +7166,25 @@ ${item.depPath.join(" > ")}`
|
|
|
7099
7166
|
throw new Error(failMetaMsg(item.name));
|
|
7100
7167
|
}
|
|
7101
7168
|
const updated = this._fyn.depLocker.update(item, meta);
|
|
7102
|
-
|
|
7169
|
+
const r2 = this._resolveWithMeta({ item, meta: updated, force: false, noLocal: true });
|
|
7170
|
+
if (r2) {
|
|
7171
|
+
return r2;
|
|
7172
|
+
}
|
|
7173
|
+
logger.debug(
|
|
7174
|
+
`cached meta for ${item.name} has no version satisfying ${item.semver}; refetching from registry`
|
|
7175
|
+
);
|
|
7176
|
+
return this._pkgSrcMgr.fetchMeta(item, true).then((freshMeta) => {
|
|
7177
|
+
if (!freshMeta) {
|
|
7178
|
+
throw new Error(failMetaMsg(item.name));
|
|
7179
|
+
}
|
|
7180
|
+
const freshUpdated = this._fyn.depLocker.update(item, freshMeta);
|
|
7181
|
+
return this._resolveWithMeta({
|
|
7182
|
+
item,
|
|
7183
|
+
meta: freshUpdated,
|
|
7184
|
+
force: true,
|
|
7185
|
+
noLocal: true
|
|
7186
|
+
});
|
|
7187
|
+
});
|
|
7103
7188
|
}).catch((err) => {
|
|
7104
7189
|
if (item.dsrc !== "opt") {
|
|
7105
7190
|
if (err.message.includes("Unable to retrieve meta")) {
|
|
@@ -7963,6 +8048,10 @@ class PkgInstaller {
|
|
|
7963
8048
|
for (const pkgDir of removed) {
|
|
7964
8049
|
let dir = pkgDir;
|
|
7965
8050
|
try {
|
|
8051
|
+
if (!this._fyn._shortPkgDir) {
|
|
8052
|
+
dir = Path.dirname(dir);
|
|
8053
|
+
await Fs.rmdir(dir);
|
|
8054
|
+
}
|
|
7966
8055
|
if (pkgName.startsWith("@")) {
|
|
7967
8056
|
dir = Path.dirname(dir);
|
|
7968
8057
|
await Fs.rmdir(dir);
|
|
@@ -8304,7 +8393,7 @@ const semverUtil = __webpack_require__("./lib/util/semver.ts");
|
|
|
8304
8393
|
const longPending = __webpack_require__("./lib/long-pending.ts");
|
|
8305
8394
|
const { LOCAL_VERSION_MAPS, PACKAGE_RAW_INFO, DEP_ITEM } = __webpack_require__("./lib/symbols.ts");
|
|
8306
8395
|
const { LONG_WAIT_META, FETCH_META, FETCH_PACKAGE } = __webpack_require__("./lib/log-items.ts");
|
|
8307
|
-
const PkgPreper = __webpack_require__("./node_modules/.f/_/pkg-preper/0.1.
|
|
8396
|
+
const PkgPreper = __webpack_require__("./node_modules/.f/_/pkg-preper/0.1.8-fynlocal_h/pkg-preper/lib/pkg-preper.js");
|
|
8308
8397
|
const VisualExec = __webpack_require__("./node_modules/.f/_/visual-exec/0.1.14/visual-exec/lib/visual-exec.js");
|
|
8309
8398
|
const { readPkgJson, missPipe } = __webpack_require__("./lib/util/fyntil.ts");
|
|
8310
8399
|
const { MARK_URL_SPEC } = __webpack_require__("./lib/constants.ts");
|
|
@@ -8813,15 +8902,17 @@ class PkgSrcManager {
|
|
|
8813
8902
|
}
|
|
8814
8903
|
};
|
|
8815
8904
|
}
|
|
8816
|
-
fetchMeta(item) {
|
|
8905
|
+
fetchMeta(item, forceRefresh = false) {
|
|
8817
8906
|
const pkgName = item.name;
|
|
8818
8907
|
const pkgKey = `${pkgName}@${item.urlType ? item.urlType : "semver"}`;
|
|
8819
|
-
if (
|
|
8820
|
-
|
|
8821
|
-
|
|
8822
|
-
|
|
8823
|
-
|
|
8824
|
-
|
|
8908
|
+
if (!forceRefresh) {
|
|
8909
|
+
if (this._meta[pkgKey]) {
|
|
8910
|
+
return Promise.resolve(this._meta[pkgKey]);
|
|
8911
|
+
}
|
|
8912
|
+
const inflight = this._inflights.meta.get(pkgKey);
|
|
8913
|
+
if (inflight) {
|
|
8914
|
+
return inflight;
|
|
8915
|
+
}
|
|
8825
8916
|
}
|
|
8826
8917
|
const packumentUrl = this.makePackumentUrl(pkgName);
|
|
8827
8918
|
const cacheKey = `make-fetch-happen:request-cache:${packumentUrl}`;
|
|
@@ -8887,9 +8978,11 @@ class PkgSrcManager {
|
|
|
8887
8978
|
let foundCache;
|
|
8888
8979
|
let cacheMemoized = false;
|
|
8889
8980
|
const metaMemoizeUrl = this._fyn._options.metaMemoize;
|
|
8890
|
-
const promise = (item.urlType ? (
|
|
8981
|
+
const promise = (item.urlType || forceRefresh ? (
|
|
8891
8982
|
// when the semver is a url then the meta is not from npm registry and
|
|
8892
|
-
// we can't use the cache for registry
|
|
8983
|
+
// we can't use the cache for registry.
|
|
8984
|
+
// when forceRefresh, skip the local cacache + meta-mem path so we go
|
|
8985
|
+
// straight to a fresh registry fetch via queueMetaFetchRequest.
|
|
8893
8986
|
Promise.resolve()
|
|
8894
8987
|
) : loadBestCachedPackument(true)).then((cached) => {
|
|
8895
8988
|
const packument = cached && cached.data && JSON.parse(cached.data);
|
|
@@ -8954,8 +9047,13 @@ class PkgSrcManager {
|
|
|
8954
9047
|
}
|
|
8955
9048
|
return meta;
|
|
8956
9049
|
}).finally(() => {
|
|
8957
|
-
|
|
9050
|
+
if (!forceRefresh) {
|
|
9051
|
+
this._inflights.meta.remove(pkgKey);
|
|
9052
|
+
}
|
|
8958
9053
|
});
|
|
9054
|
+
if (forceRefresh) {
|
|
9055
|
+
return promise;
|
|
9056
|
+
}
|
|
8959
9057
|
return this._inflights.meta.add(pkgKey, promise);
|
|
8960
9058
|
}
|
|
8961
9059
|
pacotePrefetch(pkgId, pkgInfo, integrity) {
|
|
@@ -9362,6 +9460,67 @@ const fyntil = {
|
|
|
9362
9460
|
return fyntil.fynpoConfig = {};
|
|
9363
9461
|
}
|
|
9364
9462
|
},
|
|
9463
|
+
/**
|
|
9464
|
+
* Detect if `dir` lives inside a git linked worktree and, if so, resolve the
|
|
9465
|
+
* equivalent directory in the repo's main worktree.
|
|
9466
|
+
*
|
|
9467
|
+
* fynpo uses `<monorepo>/.fynpo/_store` as the central package store. When the
|
|
9468
|
+
* monorepo is checked out as a git linked worktree, each worktree would
|
|
9469
|
+
* otherwise get its own `.fynpo` store - wasteful and slow. Pointing them at
|
|
9470
|
+
* the main worktree's store lets all worktrees share one central store.
|
|
9471
|
+
*
|
|
9472
|
+
* @param dir directory to resolve (typically the fynpo monorepo top dir)
|
|
9473
|
+
* @returns the equivalent directory in the main worktree, or `dir` unchanged
|
|
9474
|
+
* when it's not in a git repo or already in the main worktree.
|
|
9475
|
+
*/
|
|
9476
|
+
async resolveGitMainWorktreeDir(dir) {
|
|
9477
|
+
const startDir = Path.resolve(dir);
|
|
9478
|
+
let treeTop = startDir;
|
|
9479
|
+
let gitPath;
|
|
9480
|
+
let gitStat;
|
|
9481
|
+
for (; ; ) {
|
|
9482
|
+
try {
|
|
9483
|
+
const p = Path.join(treeTop, ".git");
|
|
9484
|
+
gitStat = await Fs.stat(p);
|
|
9485
|
+
gitPath = p;
|
|
9486
|
+
break;
|
|
9487
|
+
} catch (err) {
|
|
9488
|
+
if (err.code !== "ENOENT") {
|
|
9489
|
+
throw err;
|
|
9490
|
+
}
|
|
9491
|
+
}
|
|
9492
|
+
const parent = Path.dirname(treeTop);
|
|
9493
|
+
if (parent === treeTop) {
|
|
9494
|
+
break;
|
|
9495
|
+
}
|
|
9496
|
+
treeTop = parent;
|
|
9497
|
+
}
|
|
9498
|
+
if (!gitPath || gitStat.isDirectory()) {
|
|
9499
|
+
return dir;
|
|
9500
|
+
}
|
|
9501
|
+
try {
|
|
9502
|
+
const gitFile = await Fs.readFile(gitPath, "utf8");
|
|
9503
|
+
const m = gitFile.match(/^gitdir:\s*(.+)$/m);
|
|
9504
|
+
if (!m) {
|
|
9505
|
+
return dir;
|
|
9506
|
+
}
|
|
9507
|
+
let worktreeGitDir = m[1].trim();
|
|
9508
|
+
if (!Path.isAbsolute(worktreeGitDir)) {
|
|
9509
|
+
worktreeGitDir = Path.resolve(treeTop, worktreeGitDir);
|
|
9510
|
+
}
|
|
9511
|
+
const commondir = (await Fs.readFile(Path.join(worktreeGitDir, "commondir"), "utf8")).trim();
|
|
9512
|
+
const commonGitDir = Path.isAbsolute(commondir) ? commondir : Path.resolve(worktreeGitDir, commondir);
|
|
9513
|
+
if (Path.basename(commonGitDir) !== ".git") {
|
|
9514
|
+
return dir;
|
|
9515
|
+
}
|
|
9516
|
+
const mainTreeTop = Path.dirname(commonGitDir);
|
|
9517
|
+
const rel = Path.relative(treeTop, startDir);
|
|
9518
|
+
return Path.join(mainTreeTop, rel);
|
|
9519
|
+
} catch (err) {
|
|
9520
|
+
logger.debug(`resolveGitMainWorktreeDir failed for ${dir}: ${err.message}`);
|
|
9521
|
+
return dir;
|
|
9522
|
+
}
|
|
9523
|
+
},
|
|
9365
9524
|
removeAuthInfo(rcObj) {
|
|
9366
9525
|
const rmObj = {};
|
|
9367
9526
|
for (const key in rcObj) {
|
|
@@ -9559,7 +9718,7 @@ const Path = __webpack_require__("path");
|
|
|
9559
9718
|
const Fs = __webpack_require__("./lib/util/file-ops.ts");
|
|
9560
9719
|
const fs = __webpack_require__("fs");
|
|
9561
9720
|
const xaa = __webpack_require__("./lib/util/xaa.ts");
|
|
9562
|
-
const npmPacklist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.
|
|
9721
|
+
const npmPacklist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.3-fynlocal_h/npm-packlist/lib/index.js");
|
|
9563
9722
|
const Arborist = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/index.js");
|
|
9564
9723
|
const fynTil = __webpack_require__("./lib/util/fyntil.ts");
|
|
9565
9724
|
const logger = __webpack_require__("./lib/logger.ts");
|
|
@@ -10089,7 +10248,7 @@ module.exports = { addNpmLifecycle, runNpmScript };
|
|
|
10089
10248
|
|
|
10090
10249
|
"use strict";
|
|
10091
10250
|
|
|
10092
|
-
const Semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
10251
|
+
const Semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
10093
10252
|
const Path = __webpack_require__("path");
|
|
10094
10253
|
const os = __webpack_require__("os");
|
|
10095
10254
|
function split(v, sep, index = 0) {
|
|
@@ -10700,7 +10859,7 @@ const fs_1 = __webpack_require__("fs");
|
|
|
10700
10859
|
const filter_scan_dir_1 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.6.0/filter-scan-dir/index.cjs");
|
|
10701
10860
|
const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.5/minimatch/minimatch.js"));
|
|
10702
10861
|
const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
|
|
10703
|
-
const semver_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/semver/7.
|
|
10862
|
+
const semver_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js"));
|
|
10704
10863
|
const minimatch_group_1 = __webpack_require__("./node_modules/.f/_/@fynpo/base/1.1.22-fynlocal_h/@fynpo/base/dist/minimatch-group.js");
|
|
10705
10864
|
const util_1 = __webpack_require__("./node_modules/.f/_/@fynpo/base/1.1.22-fynlocal_h/@fynpo/base/dist/util.js");
|
|
10706
10865
|
const is_path_inside_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/is-path-inside/3.0.3/is-path-inside/index.js"));
|
|
@@ -12784,7 +12943,7 @@ const { lstat, readlink } = __webpack_require__("node:fs/promises");
|
|
|
12784
12943
|
const { depth } = __webpack_require__("./node_modules/.f/_/treeverse/3.0.0/treeverse/lib/index.js");
|
|
12785
12944
|
const { log, time } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
|
|
12786
12945
|
const { redact } = __webpack_require__("./node_modules/.f/_/@npmcli/redact/3.2.2/@npmcli/redact/lib/index.js");
|
|
12787
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
12946
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
12788
12947
|
const {
|
|
12789
12948
|
OK,
|
|
12790
12949
|
REPLACE,
|
|
@@ -15344,7 +15503,7 @@ const { dirname, resolve, relative, join } = __webpack_require__("node:path");
|
|
|
15344
15503
|
const { log, time } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
|
|
15345
15504
|
const { lstat, mkdir, rm, symlink } = __webpack_require__("node:fs/promises");
|
|
15346
15505
|
const { moveFile } = __webpack_require__("./node_modules/.f/_/@npmcli/fs/4.0.0/@npmcli/fs/lib/index.js");
|
|
15347
|
-
const { subset, intersects } = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
15506
|
+
const { subset, intersects } = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
15348
15507
|
const { walkUp } = __webpack_require__("./node_modules/.f/_/walk-up-path/4.0.0/walk-up-path/dist/commonjs/index.js");
|
|
15349
15508
|
const AuditReport = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/audit-report.js");
|
|
15350
15509
|
const Diff = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/diff.js");
|
|
@@ -16735,7 +16894,7 @@ module.exports = calcDepFlags;
|
|
|
16735
16894
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
16736
16895
|
|
|
16737
16896
|
const localeCompare = __webpack_require__("./node_modules/.f/_/@isaacs/string-locale-compare/1.1.0/@isaacs/string-locale-compare/index.js")("en");
|
|
16738
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
16897
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
16739
16898
|
const debug = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/debug.js");
|
|
16740
16899
|
const peerEntrySets = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/peer-entry-sets.js");
|
|
16741
16900
|
const deepestNestingTarget = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/deepest-nesting-target.js");
|
|
@@ -17142,7 +17301,7 @@ module.exports = deepestNestingTarget;
|
|
|
17142
17301
|
/***/ "./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/dep-valid.js":
|
|
17143
17302
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17144
17303
|
|
|
17145
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
17304
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
17146
17305
|
const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
|
|
17147
17306
|
const { relative } = __webpack_require__("node:path");
|
|
17148
17307
|
const fromPath = __webpack_require__("./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/from-path.js");
|
|
@@ -18066,7 +18225,7 @@ module.exports = Link;
|
|
|
18066
18225
|
const PackageJson = __webpack_require__("./node_modules/.f/_/@npmcli/package-json/7.0.1/@npmcli/package-json/lib/index.js");
|
|
18067
18226
|
const nameFromFolder = __webpack_require__("./node_modules/.f/_/@npmcli/name-from-folder/3.0.0/@npmcli/name-from-folder/lib/index.js");
|
|
18068
18227
|
const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
|
|
18069
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
18228
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
18070
18229
|
const util = __webpack_require__("node:util");
|
|
18071
18230
|
const { getPaths: getBinPaths } = __webpack_require__("./node_modules/.f/_/bin-links/5.0.0/bin-links/lib/index.js");
|
|
18072
18231
|
const { log } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
|
|
@@ -19250,7 +19409,7 @@ module.exports = { overrideResolves };
|
|
|
19250
19409
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19251
19410
|
|
|
19252
19411
|
const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
|
|
19253
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
19412
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
19254
19413
|
const { log } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
|
|
19255
19414
|
class OverrideSet {
|
|
19256
19415
|
constructor({ overrides, key, parent }) {
|
|
@@ -20045,7 +20204,7 @@ const { log } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log
|
|
|
20045
20204
|
const { minimatch } = __webpack_require__("./node_modules/.f/_/minimatch/10.1.1/minimatch/dist/commonjs/index.js");
|
|
20046
20205
|
const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
|
|
20047
20206
|
const pacote = __webpack_require__("./node_modules/.f/_/pacote/21.0.3/pacote/lib/index.js");
|
|
20048
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
20207
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
20049
20208
|
const npmFetch = __webpack_require__("./node_modules/.f/_/npm-registry-fetch/19.1.0/npm-registry-fetch/lib/index.js");
|
|
20050
20209
|
class Results {
|
|
20051
20210
|
#currentAstSelector;
|
|
@@ -22083,7 +22242,7 @@ debug(() => module.exports = checkTree);
|
|
|
22083
22242
|
/***/ "./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/version-from-tgz.js":
|
|
22084
22243
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22085
22244
|
|
|
22086
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
22245
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
22087
22246
|
const { basename } = __webpack_require__("node:path");
|
|
22088
22247
|
const { URL } = __webpack_require__("node:url");
|
|
22089
22248
|
module.exports = (name, tgz) => {
|
|
@@ -22127,7 +22286,7 @@ const versionFromBaseScopeName = (base, scope, name) => {
|
|
|
22127
22286
|
/***/ "./node_modules/.f/_/@npmcli/arborist/9.1.6/@npmcli/arborist/lib/vuln.js":
|
|
22128
22287
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22129
22288
|
|
|
22130
|
-
const { satisfies, simplifyRange } = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
22289
|
+
const { satisfies, simplifyRange } = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
22131
22290
|
const semverOpt = { loose: true, includePrerelease: true };
|
|
22132
22291
|
const localeCompare = __webpack_require__("./node_modules/.f/_/@isaacs/string-locale-compare/1.1.0/@isaacs/string-locale-compare/index.js")("en");
|
|
22133
22292
|
const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
|
|
@@ -22562,7 +22721,7 @@ module.exports = getOptions;
|
|
|
22562
22721
|
/***/ "./node_modules/.f/_/@npmcli/fs/4.0.0/@npmcli/fs/lib/common/node.js":
|
|
22563
22722
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22564
22723
|
|
|
22565
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
22724
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
22566
22725
|
const satisfies = (range) => {
|
|
22567
22726
|
return semver.satisfies(process.version, range, { includePrerelease: true });
|
|
22568
22727
|
};
|
|
@@ -23430,7 +23589,7 @@ module.exports = ({ cwd = process.cwd() } = {}) => stat(cwd + "/.git").then(() =
|
|
|
23430
23589
|
/***/ "./node_modules/.f/_/@npmcli/git/7.0.0/@npmcli/git/lib/lines-to-revs.js":
|
|
23431
23590
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
23432
23591
|
|
|
23433
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
23592
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
23434
23593
|
module.exports = (lines) => finish(lines.reduce(linesToRevsReducer, {
|
|
23435
23594
|
versions: {},
|
|
23436
23595
|
"dist-tags": {},
|
|
@@ -24043,7 +24202,7 @@ module.exports = mapWorkspaces;
|
|
|
24043
24202
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
24044
24203
|
|
|
24045
24204
|
const hash = __webpack_require__("./node_modules/.f/_/@npmcli/metavuln-calculator/9.0.3/@npmcli/metavuln-calculator/lib/hash.js");
|
|
24046
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
24205
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
24047
24206
|
const semverOpt = { includePrerelease: true, loose: true };
|
|
24048
24207
|
const getDepSpec = __webpack_require__("./node_modules/.f/_/@npmcli/metavuln-calculator/9.0.3/@npmcli/metavuln-calculator/lib/get-dep-spec.js");
|
|
24049
24208
|
const _source = Symbol("source");
|
|
@@ -25019,8 +25178,8 @@ module.exports = { normalizeData };
|
|
|
25019
25178
|
/***/ "./node_modules/.f/_/@npmcli/package-json/7.0.1/@npmcli/package-json/lib/normalize.js":
|
|
25020
25179
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
25021
25180
|
|
|
25022
|
-
const valid = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
25023
|
-
const clean = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
25181
|
+
const valid = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/valid.js");
|
|
25182
|
+
const clean = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/clean.js");
|
|
25024
25183
|
const fs = __webpack_require__("node:fs/promises");
|
|
25025
25184
|
const path = __webpack_require__("node:path");
|
|
25026
25185
|
const { log } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
|
|
@@ -53176,7 +53335,7 @@ const normalizeSignal = function({
|
|
|
53176
53335
|
|
|
53177
53336
|
/***/ }),
|
|
53178
53337
|
|
|
53179
|
-
/***/ "./node_modules/.f/_/ignore-walk/8.0.0/ignore-walk/lib/index.js":
|
|
53338
|
+
/***/ "./node_modules/.f/_/ignore-walk/8.0.0-fynlocal_h/ignore-walk/lib/index.js":
|
|
53180
53339
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
53181
53340
|
|
|
53182
53341
|
"use strict";
|
|
@@ -53224,7 +53383,13 @@ class Walker extends EE {
|
|
|
53224
53383
|
return ret;
|
|
53225
53384
|
}
|
|
53226
53385
|
start() {
|
|
53227
|
-
fs.readdir(this.path, (er, entries) =>
|
|
53386
|
+
fs.readdir(this.path, (er, entries) => {
|
|
53387
|
+
try {
|
|
53388
|
+
er ? this.emit("error", er) : this.onReaddir(entries);
|
|
53389
|
+
} catch (err) {
|
|
53390
|
+
this.emit("error", err);
|
|
53391
|
+
}
|
|
53392
|
+
});
|
|
53228
53393
|
return this;
|
|
53229
53394
|
}
|
|
53230
53395
|
isIgnoreFile(e) {
|
|
@@ -53993,7 +54158,7 @@ const enquirer_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.
|
|
|
53993
54158
|
const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
|
|
53994
54159
|
const fs_1 = tslib_1.__importDefault(__webpack_require__("fs"));
|
|
53995
54160
|
const path_1 = tslib_1.__importDefault(__webpack_require__("path"));
|
|
53996
|
-
const semver_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/semver/7.
|
|
54161
|
+
const semver_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js"));
|
|
53997
54162
|
function sortObj(obj) {
|
|
53998
54163
|
const out = {};
|
|
53999
54164
|
const sortedKeys = Object.keys(obj).sort().forEach((x) => {
|
|
@@ -68744,7 +68909,7 @@ module.exports = findNodeDirectory;
|
|
|
68744
68909
|
"use strict";
|
|
68745
68910
|
|
|
68746
68911
|
const log = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/log.js");
|
|
68747
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
68912
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
68748
68913
|
const { execFile } = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/util.js");
|
|
68749
68914
|
const win = process.platform === "win32";
|
|
68750
68915
|
function getOsUserInfo() {
|
|
@@ -69575,7 +69740,7 @@ const path = __webpack_require__("path");
|
|
|
69575
69740
|
const { Transform, promises: { pipeline } } = __webpack_require__("stream");
|
|
69576
69741
|
const crypto = __webpack_require__("crypto");
|
|
69577
69742
|
const log = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/log.js");
|
|
69578
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
69743
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
69579
69744
|
const { download } = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/download.js");
|
|
69580
69745
|
const processRelease = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/process-release.js");
|
|
69581
69746
|
const win = process.platform === "win32";
|
|
@@ -70256,7 +70421,7 @@ module.exports.Gyp = Gyp;
|
|
|
70256
70421
|
|
|
70257
70422
|
"use strict";
|
|
70258
70423
|
|
|
70259
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
70424
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
70260
70425
|
const url = __webpack_require__("url");
|
|
70261
70426
|
const path = __webpack_require__("path");
|
|
70262
70427
|
const log = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/log.js");
|
|
@@ -70383,7 +70548,7 @@ module.exports.usage = 'Runs "clean", "configure" and "build" all at once';
|
|
|
70383
70548
|
const fs = (__webpack_require__("./node_modules/.f/_/graceful-fs/4.2.11/graceful-fs/graceful-fs.js").promises);
|
|
70384
70549
|
const path = __webpack_require__("path");
|
|
70385
70550
|
const log = __webpack_require__("./node_modules/.f/_/node-gyp/11.5.0/node-gyp/lib/log.js");
|
|
70386
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
70551
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
70387
70552
|
async function remove(gyp, argv) {
|
|
70388
70553
|
const devDir = gyp.devDir;
|
|
70389
70554
|
log.verbose("remove", "using node-gyp dir:", devDir);
|
|
@@ -71326,8 +71491,8 @@ module.exports = {
|
|
|
71326
71491
|
/***/ "./node_modules/.f/_/npm-install-checks/7.1.2/npm-install-checks/lib/dev-engines.js":
|
|
71327
71492
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
71328
71493
|
|
|
71329
|
-
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
71330
|
-
const validRange = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
71494
|
+
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/satisfies.js");
|
|
71495
|
+
const validRange = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/valid.js");
|
|
71331
71496
|
const recognizedOnFail = [
|
|
71332
71497
|
"ignore",
|
|
71333
71498
|
"warn",
|
|
@@ -71452,7 +71617,7 @@ module.exports = {
|
|
|
71452
71617
|
/***/ "./node_modules/.f/_/npm-install-checks/7.1.2/npm-install-checks/lib/index.js":
|
|
71453
71618
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
71454
71619
|
|
|
71455
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
71620
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
71456
71621
|
const currentEnv = __webpack_require__("./node_modules/.f/_/npm-install-checks/7.1.2/npm-install-checks/lib/current-env.js");
|
|
71457
71622
|
const { checkDevEngines } = __webpack_require__("./node_modules/.f/_/npm-install-checks/7.1.2/npm-install-checks/lib/dev-engines.js");
|
|
71458
71623
|
const checkEngine = (target, npmVer, nodeVer, force = false) => {
|
|
@@ -71629,8 +71794,8 @@ module.exports = {
|
|
|
71629
71794
|
/***/ "./node_modules/.f/_/npm-install-checks/8.0.0/npm-install-checks/lib/dev-engines.js":
|
|
71630
71795
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
71631
71796
|
|
|
71632
|
-
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
71633
|
-
const validRange = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
71797
|
+
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/satisfies.js");
|
|
71798
|
+
const validRange = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/valid.js");
|
|
71634
71799
|
const recognizedOnFail = [
|
|
71635
71800
|
"ignore",
|
|
71636
71801
|
"warn",
|
|
@@ -71755,7 +71920,7 @@ module.exports = {
|
|
|
71755
71920
|
/***/ "./node_modules/.f/_/npm-install-checks/8.0.0/npm-install-checks/lib/index.js":
|
|
71756
71921
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
71757
71922
|
|
|
71758
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
71923
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
71759
71924
|
const currentEnv = __webpack_require__("./node_modules/.f/_/npm-install-checks/8.0.0/npm-install-checks/lib/current-env.js");
|
|
71760
71925
|
const { checkDevEngines } = __webpack_require__("./node_modules/.f/_/npm-install-checks/8.0.0/npm-install-checks/lib/dev-engines.js");
|
|
71761
71926
|
const checkEngine = (target, npmVer, nodeVer, force = false) => {
|
|
@@ -71951,7 +72116,7 @@ const { URL } = __webpack_require__("node:url");
|
|
|
71951
72116
|
const path = isWindows ? __webpack_require__("node:path/win32") : __webpack_require__("node:path");
|
|
71952
72117
|
const { homedir } = __webpack_require__("node:os");
|
|
71953
72118
|
const HostedGit = __webpack_require__("./node_modules/.f/_/hosted-git-info/9.0.2/hosted-git-info/lib/index.js");
|
|
71954
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
72119
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
71955
72120
|
const validatePackageName = __webpack_require__("./node_modules/.f/_/validate-npm-package-name/6.0.2/validate-npm-package-name/lib/index.js");
|
|
71956
72121
|
const { log } = __webpack_require__("./node_modules/.f/_/proc-log/5.0.0/proc-log/lib/index.js");
|
|
71957
72122
|
const hasSlashes = isWindows ? /\\|[/]/ : /[/]/;
|
|
@@ -72338,12 +72503,12 @@ module.exports.Result = Result;
|
|
|
72338
72503
|
|
|
72339
72504
|
/***/ }),
|
|
72340
72505
|
|
|
72341
|
-
/***/ "./node_modules/.f/_/npm-packlist/10.0.
|
|
72506
|
+
/***/ "./node_modules/.f/_/npm-packlist/10.0.3-fynlocal_h/npm-packlist/lib/index.js":
|
|
72342
72507
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
72343
72508
|
|
|
72344
72509
|
"use strict";
|
|
72345
72510
|
|
|
72346
|
-
const { Walker: IgnoreWalker } = __webpack_require__("./node_modules/.f/_/ignore-walk/8.0.0/ignore-walk/lib/index.js");
|
|
72511
|
+
const { Walker: IgnoreWalker } = __webpack_require__("./node_modules/.f/_/ignore-walk/8.0.0-fynlocal_h/ignore-walk/lib/index.js");
|
|
72347
72512
|
const { lstatSync: lstat, readFileSync: readFile } = __webpack_require__("fs");
|
|
72348
72513
|
const { basename, dirname, extname, join, relative, resolve, sep } = __webpack_require__("path");
|
|
72349
72514
|
const { log } = __webpack_require__("./node_modules/.f/_/proc-log/6.0.0/proc-log/lib/index.js");
|
|
@@ -72420,6 +72585,7 @@ class PackWalker extends IgnoreWalker {
|
|
|
72420
72585
|
this.seen = options.seen || /* @__PURE__ */ new Set();
|
|
72421
72586
|
this.tree = tree;
|
|
72422
72587
|
this.requiredFiles = options.requiredFiles || [];
|
|
72588
|
+
this.includeSymlinks = options.includeSymlinks;
|
|
72423
72589
|
const additionalDefaults = [];
|
|
72424
72590
|
if (options.prefix && options.workspaces) {
|
|
72425
72591
|
const path = normalizePath(options.path);
|
|
@@ -72467,7 +72633,7 @@ class PackWalker extends IgnoreWalker {
|
|
|
72467
72633
|
this.ignoreRules[".gitignore"] = null;
|
|
72468
72634
|
} else if (this.ignoreRules[".npmignore"]) {
|
|
72469
72635
|
this.ignoreRules[".gitignore"] = null;
|
|
72470
|
-
} else if (this.ignoreRules[".gitignore"] && !this.ignoreRules[".npmignore"]
|
|
72636
|
+
} else if (this.ignoreRules[".gitignore"] && !this.ignoreRules[".npmignore"]) {
|
|
72471
72637
|
log.warn(
|
|
72472
72638
|
"gitignore-fallback",
|
|
72473
72639
|
"No .npmignore file found, using .gitignore for file exclusion. Consider creating a .npmignore file to explicitly control published files."
|
|
@@ -72476,8 +72642,13 @@ class PackWalker extends IgnoreWalker {
|
|
|
72476
72642
|
return super.filterEntries();
|
|
72477
72643
|
}
|
|
72478
72644
|
// overridden method: we never want to include anything that isn't a file or directory
|
|
72645
|
+
// also skip symlinks unless includeSymlinks is true
|
|
72479
72646
|
onstat(opts, callback) {
|
|
72480
|
-
if (
|
|
72647
|
+
if (opts.st.isSymbolicLink()) {
|
|
72648
|
+
if (!this.includeSymlinks) {
|
|
72649
|
+
return callback();
|
|
72650
|
+
}
|
|
72651
|
+
} else if (!opts.st.isFile() && !opts.st.isDirectory()) {
|
|
72481
72652
|
return callback();
|
|
72482
72653
|
}
|
|
72483
72654
|
return super.onstat(opts, callback);
|
|
@@ -72519,6 +72690,7 @@ class PackWalker extends IgnoreWalker {
|
|
|
72519
72690
|
return {
|
|
72520
72691
|
...super.walkerOpt(entry, opts),
|
|
72521
72692
|
ignoreFiles,
|
|
72693
|
+
includeSymlinks: this.includeSymlinks,
|
|
72522
72694
|
// we map over our own requiredFiles and pass ones that are within this entry
|
|
72523
72695
|
requiredFiles: this.requiredFiles.map((file) => {
|
|
72524
72696
|
if (relative(file, entry) === "..") {
|
|
@@ -72686,7 +72858,7 @@ walk.Walker = PackWalker;
|
|
|
72686
72858
|
"use strict";
|
|
72687
72859
|
|
|
72688
72860
|
const npa = __webpack_require__("./node_modules/.f/_/npm-package-arg/13.0.1/npm-package-arg/lib/npa.js");
|
|
72689
|
-
const semver = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
72861
|
+
const semver = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/index.js");
|
|
72690
72862
|
const { checkEngine } = __webpack_require__("./node_modules/.f/_/npm-install-checks/8.0.0/npm-install-checks/lib/index.js");
|
|
72691
72863
|
const normalizeBin = __webpack_require__("./node_modules/.f/_/npm-normalize-package-bin/5.0.0/npm-normalize-package-bin/lib/index.js");
|
|
72692
72864
|
const engineOk = (manifest, npmVersion, nodeVersion) => {
|
|
@@ -74194,7 +74366,7 @@ module.exports = pLocate;
|
|
|
74194
74366
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
74195
74367
|
|
|
74196
74368
|
const { resolve } = __webpack_require__("node:path");
|
|
74197
|
-
const packlist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.
|
|
74369
|
+
const packlist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.3-fynlocal_h/npm-packlist/lib/index.js");
|
|
74198
74370
|
const runScript = __webpack_require__("./node_modules/.f/_/@npmcli/run-script/10.0.2/@npmcli/run-script/lib/run-script.js");
|
|
74199
74371
|
const tar = __webpack_require__("./node_modules/.f/_/tar/7.5.2/tar/dist/commonjs/index.js");
|
|
74200
74372
|
const { Minipass } = __webpack_require__("./node_modules/.f/_/minipass/7.1.2/minipass/dist/commonjs/index.js");
|
|
@@ -77236,7 +77408,7 @@ exports.basename = (path, { windows } = {}) => {
|
|
|
77236
77408
|
|
|
77237
77409
|
/***/ }),
|
|
77238
77410
|
|
|
77239
|
-
/***/ "./node_modules/.f/_/pkg-preper/0.1.
|
|
77411
|
+
/***/ "./node_modules/.f/_/pkg-preper/0.1.8-fynlocal_h/pkg-preper/lib/pkg-preper.js":
|
|
77240
77412
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
77241
77413
|
|
|
77242
77414
|
"use strict";
|
|
@@ -77248,7 +77420,7 @@ const PassThrough = (__webpack_require__("stream").PassThrough);
|
|
|
77248
77420
|
const mississippi = __webpack_require__("./node_modules/.f/_/mississippi/3.0.0/mississippi/index.js");
|
|
77249
77421
|
const pipe = Promise.promisify(mississippi.pipe, { context: mississippi });
|
|
77250
77422
|
const tar = __webpack_require__("./node_modules/.f/_/tar/4.4.19/tar/index.js");
|
|
77251
|
-
const packlist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.
|
|
77423
|
+
const packlist = __webpack_require__("./node_modules/.f/_/npm-packlist/10.0.3-fynlocal_h/npm-packlist/lib/index.js");
|
|
77252
77424
|
const Fs = __webpack_require__("./node_modules/.f/_/opfs/1.1.1/opfs/lib/index.js");
|
|
77253
77425
|
const readPkgJson = (dir) => {
|
|
77254
77426
|
return Fs.readFile(Path.join(dir, "package.json").toString().trim()).then(JSON.parse);
|
|
@@ -86746,7 +86918,7 @@ SafeBuffer.allocUnsafeSlow = function(size) {
|
|
|
86746
86918
|
|
|
86747
86919
|
/***/ }),
|
|
86748
86920
|
|
|
86749
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
86921
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/classes/comparator.js":
|
|
86750
86922
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
86751
86923
|
|
|
86752
86924
|
"use strict";
|
|
@@ -86851,17 +87023,17 @@ class Comparator {
|
|
|
86851
87023
|
}
|
|
86852
87024
|
}
|
|
86853
87025
|
module.exports = Comparator;
|
|
86854
|
-
const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
86855
|
-
const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
86856
|
-
const cmp = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
86857
|
-
const debug = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
86858
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
86859
|
-
const Range = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87026
|
+
const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/parse-options.js");
|
|
87027
|
+
const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/re.js");
|
|
87028
|
+
const cmp = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/cmp.js");
|
|
87029
|
+
const debug = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/debug.js");
|
|
87030
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
87031
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
86860
87032
|
|
|
86861
87033
|
|
|
86862
87034
|
/***/ }),
|
|
86863
87035
|
|
|
86864
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87036
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/classes/range.js":
|
|
86865
87037
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
86866
87038
|
|
|
86867
87039
|
"use strict";
|
|
@@ -87006,20 +87178,20 @@ class Range {
|
|
|
87006
87178
|
}
|
|
87007
87179
|
}
|
|
87008
87180
|
module.exports = Range;
|
|
87009
|
-
const LRU = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87181
|
+
const LRU = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/lrucache.js");
|
|
87010
87182
|
const cache = new LRU();
|
|
87011
|
-
const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87012
|
-
const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87013
|
-
const debug = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87014
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87183
|
+
const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/parse-options.js");
|
|
87184
|
+
const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/comparator.js");
|
|
87185
|
+
const debug = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/debug.js");
|
|
87186
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
87015
87187
|
const {
|
|
87016
87188
|
safeRe: re,
|
|
87017
87189
|
t,
|
|
87018
87190
|
comparatorTrimReplace,
|
|
87019
87191
|
tildeTrimReplace,
|
|
87020
87192
|
caretTrimReplace
|
|
87021
|
-
} = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87022
|
-
const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87193
|
+
} = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/re.js");
|
|
87194
|
+
const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/constants.js");
|
|
87023
87195
|
const isNullSet = (c) => c.value === "<0.0.0-0";
|
|
87024
87196
|
const isAny = (c) => c.value === "";
|
|
87025
87197
|
const isSatisfiable = (comparators, options) => {
|
|
@@ -87240,16 +87412,16 @@ const testSet = (set, version, options) => {
|
|
|
87240
87412
|
|
|
87241
87413
|
/***/ }),
|
|
87242
87414
|
|
|
87243
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87415
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js":
|
|
87244
87416
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87245
87417
|
|
|
87246
87418
|
"use strict";
|
|
87247
87419
|
|
|
87248
|
-
const debug = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87249
|
-
const { MAX_LENGTH, MAX_SAFE_INTEGER } = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87250
|
-
const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87251
|
-
const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87252
|
-
const { compareIdentifiers } = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87420
|
+
const debug = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/debug.js");
|
|
87421
|
+
const { MAX_LENGTH, MAX_SAFE_INTEGER } = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/constants.js");
|
|
87422
|
+
const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/re.js");
|
|
87423
|
+
const parseOptions = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/parse-options.js");
|
|
87424
|
+
const { compareIdentifiers } = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/identifiers.js");
|
|
87253
87425
|
class SemVer {
|
|
87254
87426
|
constructor(version, options) {
|
|
87255
87427
|
options = parseOptions(options);
|
|
@@ -87521,12 +87693,12 @@ module.exports = SemVer;
|
|
|
87521
87693
|
|
|
87522
87694
|
/***/ }),
|
|
87523
87695
|
|
|
87524
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87696
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/clean.js":
|
|
87525
87697
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87526
87698
|
|
|
87527
87699
|
"use strict";
|
|
87528
87700
|
|
|
87529
|
-
const parse = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87701
|
+
const parse = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/parse.js");
|
|
87530
87702
|
const clean = (version, options) => {
|
|
87531
87703
|
const s = parse(version.trim().replace(/^[=v]+/, ""), options);
|
|
87532
87704
|
return s ? s.version : null;
|
|
@@ -87536,17 +87708,17 @@ module.exports = clean;
|
|
|
87536
87708
|
|
|
87537
87709
|
/***/ }),
|
|
87538
87710
|
|
|
87539
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87711
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/cmp.js":
|
|
87540
87712
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87541
87713
|
|
|
87542
87714
|
"use strict";
|
|
87543
87715
|
|
|
87544
|
-
const eq = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87545
|
-
const neq = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87546
|
-
const gt = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87547
|
-
const gte = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87548
|
-
const lt = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87549
|
-
const lte = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87716
|
+
const eq = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/eq.js");
|
|
87717
|
+
const neq = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/neq.js");
|
|
87718
|
+
const gt = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/gt.js");
|
|
87719
|
+
const gte = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/gte.js");
|
|
87720
|
+
const lt = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/lt.js");
|
|
87721
|
+
const lte = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/lte.js");
|
|
87550
87722
|
const cmp = (a, op, b, loose) => {
|
|
87551
87723
|
switch (op) {
|
|
87552
87724
|
case "===":
|
|
@@ -87588,14 +87760,14 @@ module.exports = cmp;
|
|
|
87588
87760
|
|
|
87589
87761
|
/***/ }),
|
|
87590
87762
|
|
|
87591
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87763
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/coerce.js":
|
|
87592
87764
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87593
87765
|
|
|
87594
87766
|
"use strict";
|
|
87595
87767
|
|
|
87596
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87597
|
-
const parse = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87598
|
-
const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87768
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
87769
|
+
const parse = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/parse.js");
|
|
87770
|
+
const { safeRe: re, t } = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/re.js");
|
|
87599
87771
|
const coerce = (version, options) => {
|
|
87600
87772
|
if (version instanceof SemVer) {
|
|
87601
87773
|
return version;
|
|
@@ -87636,12 +87808,12 @@ module.exports = coerce;
|
|
|
87636
87808
|
|
|
87637
87809
|
/***/ }),
|
|
87638
87810
|
|
|
87639
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87811
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/compare-build.js":
|
|
87640
87812
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87641
87813
|
|
|
87642
87814
|
"use strict";
|
|
87643
87815
|
|
|
87644
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87816
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
87645
87817
|
const compareBuild = (a, b, loose) => {
|
|
87646
87818
|
const versionA = new SemVer(a, loose);
|
|
87647
87819
|
const versionB = new SemVer(b, loose);
|
|
@@ -87652,36 +87824,36 @@ module.exports = compareBuild;
|
|
|
87652
87824
|
|
|
87653
87825
|
/***/ }),
|
|
87654
87826
|
|
|
87655
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87827
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/compare-loose.js":
|
|
87656
87828
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87657
87829
|
|
|
87658
87830
|
"use strict";
|
|
87659
87831
|
|
|
87660
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87832
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
87661
87833
|
const compareLoose = (a, b) => compare(a, b, true);
|
|
87662
87834
|
module.exports = compareLoose;
|
|
87663
87835
|
|
|
87664
87836
|
|
|
87665
87837
|
/***/ }),
|
|
87666
87838
|
|
|
87667
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87839
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js":
|
|
87668
87840
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87669
87841
|
|
|
87670
87842
|
"use strict";
|
|
87671
87843
|
|
|
87672
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87844
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
87673
87845
|
const compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
|
|
87674
87846
|
module.exports = compare;
|
|
87675
87847
|
|
|
87676
87848
|
|
|
87677
87849
|
/***/ }),
|
|
87678
87850
|
|
|
87679
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87851
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/diff.js":
|
|
87680
87852
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87681
87853
|
|
|
87682
87854
|
"use strict";
|
|
87683
87855
|
|
|
87684
|
-
const parse = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87856
|
+
const parse = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/parse.js");
|
|
87685
87857
|
const diff = (version1, version2) => {
|
|
87686
87858
|
const v1 = parse(version1, null, true);
|
|
87687
87859
|
const v2 = parse(version2, null, true);
|
|
@@ -87722,48 +87894,48 @@ module.exports = diff;
|
|
|
87722
87894
|
|
|
87723
87895
|
/***/ }),
|
|
87724
87896
|
|
|
87725
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87897
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/eq.js":
|
|
87726
87898
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87727
87899
|
|
|
87728
87900
|
"use strict";
|
|
87729
87901
|
|
|
87730
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87902
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
87731
87903
|
const eq = (a, b, loose) => compare(a, b, loose) === 0;
|
|
87732
87904
|
module.exports = eq;
|
|
87733
87905
|
|
|
87734
87906
|
|
|
87735
87907
|
/***/ }),
|
|
87736
87908
|
|
|
87737
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87909
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/gt.js":
|
|
87738
87910
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87739
87911
|
|
|
87740
87912
|
"use strict";
|
|
87741
87913
|
|
|
87742
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87914
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
87743
87915
|
const gt = (a, b, loose) => compare(a, b, loose) > 0;
|
|
87744
87916
|
module.exports = gt;
|
|
87745
87917
|
|
|
87746
87918
|
|
|
87747
87919
|
/***/ }),
|
|
87748
87920
|
|
|
87749
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87921
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/gte.js":
|
|
87750
87922
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87751
87923
|
|
|
87752
87924
|
"use strict";
|
|
87753
87925
|
|
|
87754
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87926
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
87755
87927
|
const gte = (a, b, loose) => compare(a, b, loose) >= 0;
|
|
87756
87928
|
module.exports = gte;
|
|
87757
87929
|
|
|
87758
87930
|
|
|
87759
87931
|
/***/ }),
|
|
87760
87932
|
|
|
87761
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87933
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/inc.js":
|
|
87762
87934
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87763
87935
|
|
|
87764
87936
|
"use strict";
|
|
87765
87937
|
|
|
87766
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87938
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
87767
87939
|
const inc = (version, release, options, identifier, identifierBase) => {
|
|
87768
87940
|
if (typeof options === "string") {
|
|
87769
87941
|
identifierBase = identifier;
|
|
@@ -87784,72 +87956,72 @@ module.exports = inc;
|
|
|
87784
87956
|
|
|
87785
87957
|
/***/ }),
|
|
87786
87958
|
|
|
87787
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87959
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/lt.js":
|
|
87788
87960
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87789
87961
|
|
|
87790
87962
|
"use strict";
|
|
87791
87963
|
|
|
87792
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87964
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
87793
87965
|
const lt = (a, b, loose) => compare(a, b, loose) < 0;
|
|
87794
87966
|
module.exports = lt;
|
|
87795
87967
|
|
|
87796
87968
|
|
|
87797
87969
|
/***/ }),
|
|
87798
87970
|
|
|
87799
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87971
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/lte.js":
|
|
87800
87972
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87801
87973
|
|
|
87802
87974
|
"use strict";
|
|
87803
87975
|
|
|
87804
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87976
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
87805
87977
|
const lte = (a, b, loose) => compare(a, b, loose) <= 0;
|
|
87806
87978
|
module.exports = lte;
|
|
87807
87979
|
|
|
87808
87980
|
|
|
87809
87981
|
/***/ }),
|
|
87810
87982
|
|
|
87811
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87983
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/major.js":
|
|
87812
87984
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87813
87985
|
|
|
87814
87986
|
"use strict";
|
|
87815
87987
|
|
|
87816
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87988
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
87817
87989
|
const major = (a, loose) => new SemVer(a, loose).major;
|
|
87818
87990
|
module.exports = major;
|
|
87819
87991
|
|
|
87820
87992
|
|
|
87821
87993
|
/***/ }),
|
|
87822
87994
|
|
|
87823
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87995
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/minor.js":
|
|
87824
87996
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87825
87997
|
|
|
87826
87998
|
"use strict";
|
|
87827
87999
|
|
|
87828
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88000
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
87829
88001
|
const minor = (a, loose) => new SemVer(a, loose).minor;
|
|
87830
88002
|
module.exports = minor;
|
|
87831
88003
|
|
|
87832
88004
|
|
|
87833
88005
|
/***/ }),
|
|
87834
88006
|
|
|
87835
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88007
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/neq.js":
|
|
87836
88008
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87837
88009
|
|
|
87838
88010
|
"use strict";
|
|
87839
88011
|
|
|
87840
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88012
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
87841
88013
|
const neq = (a, b, loose) => compare(a, b, loose) !== 0;
|
|
87842
88014
|
module.exports = neq;
|
|
87843
88015
|
|
|
87844
88016
|
|
|
87845
88017
|
/***/ }),
|
|
87846
88018
|
|
|
87847
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88019
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/parse.js":
|
|
87848
88020
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87849
88021
|
|
|
87850
88022
|
"use strict";
|
|
87851
88023
|
|
|
87852
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88024
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
87853
88025
|
const parse = (version, options, throwErrors = false) => {
|
|
87854
88026
|
if (version instanceof SemVer) {
|
|
87855
88027
|
return version;
|
|
@@ -87868,24 +88040,24 @@ module.exports = parse;
|
|
|
87868
88040
|
|
|
87869
88041
|
/***/ }),
|
|
87870
88042
|
|
|
87871
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88043
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/patch.js":
|
|
87872
88044
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87873
88045
|
|
|
87874
88046
|
"use strict";
|
|
87875
88047
|
|
|
87876
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88048
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
87877
88049
|
const patch = (a, loose) => new SemVer(a, loose).patch;
|
|
87878
88050
|
module.exports = patch;
|
|
87879
88051
|
|
|
87880
88052
|
|
|
87881
88053
|
/***/ }),
|
|
87882
88054
|
|
|
87883
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88055
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/prerelease.js":
|
|
87884
88056
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87885
88057
|
|
|
87886
88058
|
"use strict";
|
|
87887
88059
|
|
|
87888
|
-
const parse = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88060
|
+
const parse = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/parse.js");
|
|
87889
88061
|
const prerelease = (version, options) => {
|
|
87890
88062
|
const parsed = parse(version, options);
|
|
87891
88063
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
@@ -87895,36 +88067,36 @@ module.exports = prerelease;
|
|
|
87895
88067
|
|
|
87896
88068
|
/***/ }),
|
|
87897
88069
|
|
|
87898
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88070
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/rcompare.js":
|
|
87899
88071
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87900
88072
|
|
|
87901
88073
|
"use strict";
|
|
87902
88074
|
|
|
87903
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88075
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
87904
88076
|
const rcompare = (a, b, loose) => compare(b, a, loose);
|
|
87905
88077
|
module.exports = rcompare;
|
|
87906
88078
|
|
|
87907
88079
|
|
|
87908
88080
|
/***/ }),
|
|
87909
88081
|
|
|
87910
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88082
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/rsort.js":
|
|
87911
88083
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87912
88084
|
|
|
87913
88085
|
"use strict";
|
|
87914
88086
|
|
|
87915
|
-
const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88087
|
+
const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare-build.js");
|
|
87916
88088
|
const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));
|
|
87917
88089
|
module.exports = rsort;
|
|
87918
88090
|
|
|
87919
88091
|
|
|
87920
88092
|
/***/ }),
|
|
87921
88093
|
|
|
87922
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88094
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/satisfies.js":
|
|
87923
88095
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87924
88096
|
|
|
87925
88097
|
"use strict";
|
|
87926
88098
|
|
|
87927
|
-
const Range = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88099
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
87928
88100
|
const satisfies = (version, range, options) => {
|
|
87929
88101
|
try {
|
|
87930
88102
|
range = new Range(range, options);
|
|
@@ -87938,24 +88110,67 @@ module.exports = satisfies;
|
|
|
87938
88110
|
|
|
87939
88111
|
/***/ }),
|
|
87940
88112
|
|
|
87941
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88113
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/sort.js":
|
|
87942
88114
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87943
88115
|
|
|
87944
88116
|
"use strict";
|
|
87945
88117
|
|
|
87946
|
-
const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88118
|
+
const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare-build.js");
|
|
87947
88119
|
const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));
|
|
87948
88120
|
module.exports = sort;
|
|
87949
88121
|
|
|
87950
88122
|
|
|
87951
88123
|
/***/ }),
|
|
87952
88124
|
|
|
87953
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88125
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/truncate.js":
|
|
88126
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88127
|
+
|
|
88128
|
+
"use strict";
|
|
88129
|
+
|
|
88130
|
+
const parse = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/parse.js");
|
|
88131
|
+
const constants = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/constants.js");
|
|
88132
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
88133
|
+
const truncate = (version, truncation, options) => {
|
|
88134
|
+
if (!constants.RELEASE_TYPES.includes(truncation)) {
|
|
88135
|
+
return null;
|
|
88136
|
+
}
|
|
88137
|
+
const clonedVersion = cloneInputVersion(version, options);
|
|
88138
|
+
return clonedVersion && doTruncation(clonedVersion, truncation);
|
|
88139
|
+
};
|
|
88140
|
+
const cloneInputVersion = (version, options) => {
|
|
88141
|
+
const versionStringToParse = version instanceof SemVer ? version.version : version;
|
|
88142
|
+
return parse(versionStringToParse, options);
|
|
88143
|
+
};
|
|
88144
|
+
const doTruncation = (version, truncation) => {
|
|
88145
|
+
if (isPrerelease(truncation)) {
|
|
88146
|
+
return version.version;
|
|
88147
|
+
}
|
|
88148
|
+
version.prerelease = [];
|
|
88149
|
+
switch (truncation) {
|
|
88150
|
+
case "major":
|
|
88151
|
+
version.minor = 0;
|
|
88152
|
+
version.patch = 0;
|
|
88153
|
+
break;
|
|
88154
|
+
case "minor":
|
|
88155
|
+
version.patch = 0;
|
|
88156
|
+
break;
|
|
88157
|
+
}
|
|
88158
|
+
return version.format();
|
|
88159
|
+
};
|
|
88160
|
+
const isPrerelease = (type) => {
|
|
88161
|
+
return type.startsWith("pre");
|
|
88162
|
+
};
|
|
88163
|
+
module.exports = truncate;
|
|
88164
|
+
|
|
88165
|
+
|
|
88166
|
+
/***/ }),
|
|
88167
|
+
|
|
88168
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/functions/valid.js":
|
|
87954
88169
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87955
88170
|
|
|
87956
88171
|
"use strict";
|
|
87957
88172
|
|
|
87958
|
-
const parse = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88173
|
+
const parse = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/parse.js");
|
|
87959
88174
|
const valid = (version, options) => {
|
|
87960
88175
|
const v = parse(version, options);
|
|
87961
88176
|
return v ? v.version : null;
|
|
@@ -87965,52 +88180,53 @@ module.exports = valid;
|
|
|
87965
88180
|
|
|
87966
88181
|
/***/ }),
|
|
87967
88182
|
|
|
87968
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
87969
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
87970
|
-
|
|
87971
|
-
"use strict";
|
|
87972
|
-
|
|
87973
|
-
const internalRe = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87974
|
-
const constants = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87975
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87976
|
-
const identifiers = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87977
|
-
const parse = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87978
|
-
const valid = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87979
|
-
const clean = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87980
|
-
const inc = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87981
|
-
const diff = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87982
|
-
const major = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87983
|
-
const minor = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87984
|
-
const patch = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87985
|
-
const prerelease = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87986
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87987
|
-
const rcompare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87988
|
-
const compareLoose = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87989
|
-
const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87990
|
-
const sort = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87991
|
-
const rsort = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87992
|
-
const gt = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87993
|
-
const lt = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87994
|
-
const eq = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87995
|
-
const neq = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87996
|
-
const gte = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87997
|
-
const lte = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87998
|
-
const cmp = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
87999
|
-
const coerce = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88000
|
-
const
|
|
88001
|
-
const
|
|
88002
|
-
const
|
|
88003
|
-
const
|
|
88004
|
-
const
|
|
88005
|
-
const
|
|
88006
|
-
const
|
|
88007
|
-
const
|
|
88008
|
-
const
|
|
88009
|
-
const
|
|
88010
|
-
const
|
|
88011
|
-
const
|
|
88012
|
-
const
|
|
88013
|
-
const
|
|
88183
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/index.js":
|
|
88184
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88185
|
+
|
|
88186
|
+
"use strict";
|
|
88187
|
+
|
|
88188
|
+
const internalRe = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/re.js");
|
|
88189
|
+
const constants = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/constants.js");
|
|
88190
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
88191
|
+
const identifiers = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/identifiers.js");
|
|
88192
|
+
const parse = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/parse.js");
|
|
88193
|
+
const valid = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/valid.js");
|
|
88194
|
+
const clean = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/clean.js");
|
|
88195
|
+
const inc = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/inc.js");
|
|
88196
|
+
const diff = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/diff.js");
|
|
88197
|
+
const major = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/major.js");
|
|
88198
|
+
const minor = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/minor.js");
|
|
88199
|
+
const patch = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/patch.js");
|
|
88200
|
+
const prerelease = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/prerelease.js");
|
|
88201
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
88202
|
+
const rcompare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/rcompare.js");
|
|
88203
|
+
const compareLoose = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare-loose.js");
|
|
88204
|
+
const compareBuild = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare-build.js");
|
|
88205
|
+
const sort = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/sort.js");
|
|
88206
|
+
const rsort = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/rsort.js");
|
|
88207
|
+
const gt = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/gt.js");
|
|
88208
|
+
const lt = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/lt.js");
|
|
88209
|
+
const eq = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/eq.js");
|
|
88210
|
+
const neq = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/neq.js");
|
|
88211
|
+
const gte = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/gte.js");
|
|
88212
|
+
const lte = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/lte.js");
|
|
88213
|
+
const cmp = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/cmp.js");
|
|
88214
|
+
const coerce = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/coerce.js");
|
|
88215
|
+
const truncate = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/truncate.js");
|
|
88216
|
+
const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/comparator.js");
|
|
88217
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
88218
|
+
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/satisfies.js");
|
|
88219
|
+
const toComparators = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/to-comparators.js");
|
|
88220
|
+
const maxSatisfying = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/max-satisfying.js");
|
|
88221
|
+
const minSatisfying = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/min-satisfying.js");
|
|
88222
|
+
const minVersion = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/min-version.js");
|
|
88223
|
+
const validRange = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/valid.js");
|
|
88224
|
+
const outside = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/outside.js");
|
|
88225
|
+
const gtr = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/gtr.js");
|
|
88226
|
+
const ltr = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/ltr.js");
|
|
88227
|
+
const intersects = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/intersects.js");
|
|
88228
|
+
const simplifyRange = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/simplify.js");
|
|
88229
|
+
const subset = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/subset.js");
|
|
88014
88230
|
module.exports = {
|
|
88015
88231
|
parse,
|
|
88016
88232
|
valid,
|
|
@@ -88035,6 +88251,7 @@ module.exports = {
|
|
|
88035
88251
|
lte,
|
|
88036
88252
|
cmp,
|
|
88037
88253
|
coerce,
|
|
88254
|
+
truncate,
|
|
88038
88255
|
Comparator,
|
|
88039
88256
|
Range,
|
|
88040
88257
|
satisfies,
|
|
@@ -88062,7 +88279,7 @@ module.exports = {
|
|
|
88062
88279
|
|
|
88063
88280
|
/***/ }),
|
|
88064
88281
|
|
|
88065
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88282
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/internal/constants.js":
|
|
88066
88283
|
/***/ ((module) => {
|
|
88067
88284
|
|
|
88068
88285
|
"use strict";
|
|
@@ -88096,7 +88313,7 @@ module.exports = {
|
|
|
88096
88313
|
|
|
88097
88314
|
/***/ }),
|
|
88098
88315
|
|
|
88099
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88316
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/internal/debug.js":
|
|
88100
88317
|
/***/ ((module) => {
|
|
88101
88318
|
|
|
88102
88319
|
"use strict";
|
|
@@ -88108,7 +88325,7 @@ module.exports = debug;
|
|
|
88108
88325
|
|
|
88109
88326
|
/***/ }),
|
|
88110
88327
|
|
|
88111
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88328
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/internal/identifiers.js":
|
|
88112
88329
|
/***/ ((module) => {
|
|
88113
88330
|
|
|
88114
88331
|
"use strict";
|
|
@@ -88135,7 +88352,7 @@ module.exports = {
|
|
|
88135
88352
|
|
|
88136
88353
|
/***/ }),
|
|
88137
88354
|
|
|
88138
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88355
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/internal/lrucache.js":
|
|
88139
88356
|
/***/ ((module) => {
|
|
88140
88357
|
|
|
88141
88358
|
"use strict";
|
|
@@ -88175,7 +88392,7 @@ module.exports = LRUCache;
|
|
|
88175
88392
|
|
|
88176
88393
|
/***/ }),
|
|
88177
88394
|
|
|
88178
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88395
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/internal/parse-options.js":
|
|
88179
88396
|
/***/ ((module) => {
|
|
88180
88397
|
|
|
88181
88398
|
"use strict";
|
|
@@ -88196,7 +88413,7 @@ module.exports = parseOptions;
|
|
|
88196
88413
|
|
|
88197
88414
|
/***/ }),
|
|
88198
88415
|
|
|
88199
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88416
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/internal/re.js":
|
|
88200
88417
|
/***/ ((module, exports, __webpack_require__) => {
|
|
88201
88418
|
|
|
88202
88419
|
"use strict";
|
|
@@ -88205,8 +88422,8 @@ const {
|
|
|
88205
88422
|
MAX_SAFE_COMPONENT_LENGTH,
|
|
88206
88423
|
MAX_SAFE_BUILD_LENGTH,
|
|
88207
88424
|
MAX_LENGTH
|
|
88208
|
-
} = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88209
|
-
const debug = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88425
|
+
} = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/constants.js");
|
|
88426
|
+
const debug = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/internal/debug.js");
|
|
88210
88427
|
exports = module.exports = {};
|
|
88211
88428
|
const re = exports.re = [];
|
|
88212
88429
|
const safeRe = exports.safeRe = [];
|
|
@@ -88286,24 +88503,24 @@ createToken("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$");
|
|
|
88286
88503
|
|
|
88287
88504
|
/***/ }),
|
|
88288
88505
|
|
|
88289
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88506
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/gtr.js":
|
|
88290
88507
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88291
88508
|
|
|
88292
88509
|
"use strict";
|
|
88293
88510
|
|
|
88294
|
-
const outside = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88511
|
+
const outside = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/outside.js");
|
|
88295
88512
|
const gtr = (version, range, options) => outside(version, range, ">", options);
|
|
88296
88513
|
module.exports = gtr;
|
|
88297
88514
|
|
|
88298
88515
|
|
|
88299
88516
|
/***/ }),
|
|
88300
88517
|
|
|
88301
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88518
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/intersects.js":
|
|
88302
88519
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88303
88520
|
|
|
88304
88521
|
"use strict";
|
|
88305
88522
|
|
|
88306
|
-
const Range = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88523
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
88307
88524
|
const intersects = (r1, r2, options) => {
|
|
88308
88525
|
r1 = new Range(r1, options);
|
|
88309
88526
|
r2 = new Range(r2, options);
|
|
@@ -88314,25 +88531,25 @@ module.exports = intersects;
|
|
|
88314
88531
|
|
|
88315
88532
|
/***/ }),
|
|
88316
88533
|
|
|
88317
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88534
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/ltr.js":
|
|
88318
88535
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88319
88536
|
|
|
88320
88537
|
"use strict";
|
|
88321
88538
|
|
|
88322
|
-
const outside = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88539
|
+
const outside = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/ranges/outside.js");
|
|
88323
88540
|
const ltr = (version, range, options) => outside(version, range, "<", options);
|
|
88324
88541
|
module.exports = ltr;
|
|
88325
88542
|
|
|
88326
88543
|
|
|
88327
88544
|
/***/ }),
|
|
88328
88545
|
|
|
88329
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88546
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/max-satisfying.js":
|
|
88330
88547
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88331
88548
|
|
|
88332
88549
|
"use strict";
|
|
88333
88550
|
|
|
88334
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88335
|
-
const Range = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88551
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
88552
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
88336
88553
|
const maxSatisfying = (versions, range, options) => {
|
|
88337
88554
|
let max = null;
|
|
88338
88555
|
let maxSV = null;
|
|
@@ -88357,13 +88574,13 @@ module.exports = maxSatisfying;
|
|
|
88357
88574
|
|
|
88358
88575
|
/***/ }),
|
|
88359
88576
|
|
|
88360
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88577
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/min-satisfying.js":
|
|
88361
88578
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88362
88579
|
|
|
88363
88580
|
"use strict";
|
|
88364
88581
|
|
|
88365
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88366
|
-
const Range = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88582
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
88583
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
88367
88584
|
const minSatisfying = (versions, range, options) => {
|
|
88368
88585
|
let min = null;
|
|
88369
88586
|
let minSV = null;
|
|
@@ -88388,14 +88605,14 @@ module.exports = minSatisfying;
|
|
|
88388
88605
|
|
|
88389
88606
|
/***/ }),
|
|
88390
88607
|
|
|
88391
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88608
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/min-version.js":
|
|
88392
88609
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88393
88610
|
|
|
88394
88611
|
"use strict";
|
|
88395
88612
|
|
|
88396
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88397
|
-
const Range = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88398
|
-
const gt = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88613
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
88614
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
88615
|
+
const gt = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/gt.js");
|
|
88399
88616
|
const minVersion = (range, loose) => {
|
|
88400
88617
|
range = new Range(range, loose);
|
|
88401
88618
|
let minver = new SemVer("0.0.0");
|
|
@@ -88449,20 +88666,20 @@ module.exports = minVersion;
|
|
|
88449
88666
|
|
|
88450
88667
|
/***/ }),
|
|
88451
88668
|
|
|
88452
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88669
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/outside.js":
|
|
88453
88670
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88454
88671
|
|
|
88455
88672
|
"use strict";
|
|
88456
88673
|
|
|
88457
|
-
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88458
|
-
const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88674
|
+
const SemVer = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/semver.js");
|
|
88675
|
+
const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/comparator.js");
|
|
88459
88676
|
const { ANY } = Comparator;
|
|
88460
|
-
const Range = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88461
|
-
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88462
|
-
const gt = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88463
|
-
const lt = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88464
|
-
const lte = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88465
|
-
const gte = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88677
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
88678
|
+
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/satisfies.js");
|
|
88679
|
+
const gt = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/gt.js");
|
|
88680
|
+
const lt = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/lt.js");
|
|
88681
|
+
const lte = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/lte.js");
|
|
88682
|
+
const gte = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/gte.js");
|
|
88466
88683
|
const outside = (version, range, hilo, options) => {
|
|
88467
88684
|
version = new SemVer(version, options);
|
|
88468
88685
|
range = new Range(range, options);
|
|
@@ -88520,13 +88737,13 @@ module.exports = outside;
|
|
|
88520
88737
|
|
|
88521
88738
|
/***/ }),
|
|
88522
88739
|
|
|
88523
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88740
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/simplify.js":
|
|
88524
88741
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88525
88742
|
|
|
88526
88743
|
"use strict";
|
|
88527
88744
|
|
|
88528
|
-
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88529
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88745
|
+
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/satisfies.js");
|
|
88746
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
88530
88747
|
module.exports = (versions, range, options) => {
|
|
88531
88748
|
const set = [];
|
|
88532
88749
|
let first = null;
|
|
@@ -88572,16 +88789,16 @@ module.exports = (versions, range, options) => {
|
|
|
88572
88789
|
|
|
88573
88790
|
/***/ }),
|
|
88574
88791
|
|
|
88575
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88792
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/subset.js":
|
|
88576
88793
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88577
88794
|
|
|
88578
88795
|
"use strict";
|
|
88579
88796
|
|
|
88580
|
-
const Range = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88581
|
-
const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88797
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
88798
|
+
const Comparator = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/comparator.js");
|
|
88582
88799
|
const { ANY } = Comparator;
|
|
88583
|
-
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88584
|
-
const compare = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88800
|
+
const satisfies = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/satisfies.js");
|
|
88801
|
+
const compare = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/functions/compare.js");
|
|
88585
88802
|
const subset = (sub, dom, options = {}) => {
|
|
88586
88803
|
if (sub === dom) {
|
|
88587
88804
|
return true;
|
|
@@ -88736,24 +88953,24 @@ module.exports = subset;
|
|
|
88736
88953
|
|
|
88737
88954
|
/***/ }),
|
|
88738
88955
|
|
|
88739
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88956
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/to-comparators.js":
|
|
88740
88957
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88741
88958
|
|
|
88742
88959
|
"use strict";
|
|
88743
88960
|
|
|
88744
|
-
const Range = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88961
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
88745
88962
|
const toComparators = (range, options) => new Range(range, options).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" "));
|
|
88746
88963
|
module.exports = toComparators;
|
|
88747
88964
|
|
|
88748
88965
|
|
|
88749
88966
|
/***/ }),
|
|
88750
88967
|
|
|
88751
|
-
/***/ "./node_modules/.f/_/semver/7.
|
|
88968
|
+
/***/ "./node_modules/.f/_/semver/7.8.0/semver/ranges/valid.js":
|
|
88752
88969
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
88753
88970
|
|
|
88754
88971
|
"use strict";
|
|
88755
88972
|
|
|
88756
|
-
const Range = __webpack_require__("./node_modules/.f/_/semver/7.
|
|
88973
|
+
const Range = __webpack_require__("./node_modules/.f/_/semver/7.8.0/semver/classes/range.js");
|
|
88757
88974
|
const validRange = (range, options) => {
|
|
88758
88975
|
try {
|
|
88759
88976
|
return new Range(range, options).range || "*";
|