fyn 1.1.44 → 1.1.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/fyn.js +244 -205
  2. package/package.json +1 -1
package/dist/fyn.js CHANGED
@@ -2553,7 +2553,7 @@ const {
2553
2553
  AggregateError
2554
2554
  } = __webpack_require__("./node_modules/.f/_/@jchip/error/1.0.3/@jchip/error/dist/index.js");
2555
2555
 
2556
- const filterScanDir = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.5/filter-scan-dir/lib/index.js");
2556
+ const filterScanDir = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.6/filter-scan-dir/lib/index.js");
2557
2557
 
2558
2558
  const Crypto = __webpack_require__("crypto");
2559
2559
 
@@ -3149,7 +3149,7 @@ const {
3149
3149
  parseYarnLock
3150
3150
  } = __webpack_require__("./yarn/index.js");
3151
3151
 
3152
- const mm = __webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js");
3152
+ const mm = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
3153
3153
  /* eslint-disable no-magic-numbers, max-statements, no-empty, complexity, no-eval */
3154
3154
 
3155
3155
 
@@ -3527,15 +3527,14 @@ class Fyn {
3527
3527
  }
3528
3528
 
3529
3529
  async checkLocalPkgFromInstallConfigNeedInstall() {
3530
- const localsByDepth = _.get(this._installConfig, "localsByDepth", []);
3530
+ const localPkgs = _.get(this._installConfig, "localPkgLinks", {});
3531
3531
 
3532
- for (const locals of localsByDepth.reverse()) {
3533
- for (const relPath of locals) {
3534
- const fullPath = Path.join(this._cwd, relPath);
3532
+ for (const nmDir in localPkgs) {
3533
+ const localPkg = localPkgs[nmDir];
3534
+ const fullPath = Path.join(this._cwd, localPkg.srcDir);
3535
3535
 
3536
- if ((await this.getLocalPkgInstall(fullPath)).changed) {
3537
- return true;
3538
- }
3536
+ if ((await this.getLocalPkgInstall(fullPath)).changed) {
3537
+ return true;
3539
3538
  }
3540
3539
  }
3541
3540
 
@@ -4199,7 +4198,7 @@ module.exports = Fyn;
4199
4198
 
4200
4199
  const Path = __webpack_require__("path");
4201
4200
 
4202
- const optionalRequire = __webpack_require__("./node_modules/.f/_/optional-require/1.1.8/optional-require/index.js")(eval("require"));
4201
+ const optionalRequire = __webpack_require__("./node_modules/.f/_/optional-require/1.1.10/optional-require/index.js")(eval("require"));
4203
4202
 
4204
4203
  const assert = __webpack_require__("assert");
4205
4204
 
@@ -8971,7 +8970,7 @@ module.exports = PkgOptResolver;
8971
8970
  // - npm registry
8972
8971
  //
8973
8972
 
8974
- /* eslint-disable no-magic-numbers, prefer-template, max-statements, no-param-reassign */
8973
+ /* eslint-disable no-magic-numbers, prefer-template, max-statements, no-param-reassign, no-sequences */
8975
8974
 
8976
8975
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
8977
8976
 
@@ -9021,7 +9020,7 @@ const {
9021
9020
  FETCH_PACKAGE
9022
9021
  } = __webpack_require__("./lib/log-items.js");
9023
9022
 
9024
- const PkgPreper = __webpack_require__("./node_modules/.f/_/pkg-preper/0.1.2-fynlocal_h/pkg-preper/lib/pkg-preper.js");
9023
+ const PkgPreper = __webpack_require__("./node_modules/.f/_/pkg-preper/0.1.3-fynlocal_h/pkg-preper/lib/pkg-preper.js");
9025
9024
 
9026
9025
  const VisualExec = __webpack_require__("./node_modules/.f/_/visual-exec/0.1.14/visual-exec/lib/visual-exec.js");
9027
9026
 
@@ -9831,6 +9830,9 @@ module.exports = {
9831
9830
  /***/ "./lib/util/aveazul.js":
9832
9831
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
9833
9832
 
9833
+ "use strict";
9834
+
9835
+
9834
9836
  module.exports = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
9835
9837
 
9836
9838
  /***/ }),
@@ -11533,9 +11535,9 @@ const Fs = __webpack_require__("./lib/util/file-ops.js");
11533
11535
 
11534
11536
  const Path = __webpack_require__("path");
11535
11537
 
11536
- const mm = __webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js");
11538
+ const mm = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
11537
11539
 
11538
- const filterScanDir = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.5/filter-scan-dir/lib/index.js");
11540
+ const filterScanDir = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.6/filter-scan-dir/lib/index.js");
11539
11541
 
11540
11542
  async function _scanFileStats(dir, ignores, baseDir = "") {
11541
11543
  const ignore = fullPath => ignores.find(pattern => mm(fullPath, pattern, {
@@ -11611,13 +11613,16 @@ module.exports = __webpack_require__("./node_modules/.f/_/xaa/1.8.0/xaa/dist/ind
11611
11613
  Object.defineProperty(exports, "__esModule", ({
11612
11614
  value: true
11613
11615
  }));
11614
- exports.processOutput = exports.processLifecycleInput = exports.processInput = exports.readHashDigest = void 0;
11616
+ exports.readHashDigest = void 0;
11617
+ exports.processInput = processInput;
11618
+ exports.processLifecycleInput = processLifecycleInput;
11619
+ exports.processOutput = processOutput;
11615
11620
 
11616
11621
  const tslib_1 = __webpack_require__("./node_modules/.f/_/tslib/2.8.1/tslib/tslib.es6.mjs");
11617
11622
 
11618
- const filter_scan_dir_1 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.5/filter-scan-dir/lib/index.js");
11623
+ const filter_scan_dir_1 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.6/filter-scan-dir/lib/index.js");
11619
11624
 
11620
- const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js"));
11625
+ const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js"));
11621
11626
 
11622
11627
  const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
11623
11628
 
@@ -11806,8 +11811,6 @@ async function processInput({
11806
11811
  hash
11807
11812
  };
11808
11813
  }
11809
-
11810
- exports.processInput = processInput;
11811
11814
  /**
11812
11815
  * process lifecycle caching input rules
11813
11816
  *
@@ -11815,6 +11818,7 @@ exports.processInput = processInput;
11815
11818
  * @returns
11816
11819
  */
11817
11820
 
11821
+
11818
11822
  async function processLifecycleInput({
11819
11823
  cwd,
11820
11824
  input,
@@ -11835,8 +11839,6 @@ async function processLifecycleInput({
11835
11839
  packageJson
11836
11840
  });
11837
11841
  }
11838
-
11839
- exports.processLifecycleInput = processLifecycleInput;
11840
11842
  /**
11841
11843
  * Process build cache output rules.
11842
11844
  *
@@ -11844,6 +11846,7 @@ exports.processLifecycleInput = processLifecycleInput;
11844
11846
  * @returns
11845
11847
  */
11846
11848
 
11849
+
11847
11850
  async function processOutput({
11848
11851
  cwd,
11849
11852
  inputHash,
@@ -11891,8 +11894,6 @@ async function processOutput({
11891
11894
  };
11892
11895
  }
11893
11896
 
11894
- exports.processOutput = processOutput;
11895
-
11896
11897
  /***/ }),
11897
11898
 
11898
11899
  /***/ "./node_modules/.f/_/@fynpo/base/1.1.17-fynlocal_h/@fynpo/base/dist/fynpo-config.js":
@@ -11918,7 +11919,7 @@ const fs_1 = tslib_1.__importDefault(__webpack_require__("fs"));
11918
11919
 
11919
11920
  const path_1 = tslib_1.__importDefault(__webpack_require__("path"));
11920
11921
 
11921
- const optional_require_1 = __webpack_require__("./node_modules/.f/_/optional-require/1.1.8/optional-require/index.js");
11922
+ const optional_require_1 = __webpack_require__("./node_modules/.f/_/optional-require/1.1.10/optional-require/index.js");
11922
11923
  /**
11923
11924
  * manage fynpo config
11924
11925
  */
@@ -12061,7 +12062,11 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
12061
12062
  Object.defineProperty(exports, "__esModule", ({
12062
12063
  value: true
12063
12064
  }));
12064
- exports.FynpoDepGraph = exports.pkgInfoId = exports.pkgId = exports.PackageRef = exports.makeDepStep = exports.getDepSection = void 0;
12065
+ exports.FynpoDepGraph = exports.PackageRef = void 0;
12066
+ exports.getDepSection = getDepSection;
12067
+ exports.makeDepStep = makeDepStep;
12068
+ exports.pkgId = pkgId;
12069
+ exports.pkgInfoId = pkgInfoId;
12065
12070
 
12066
12071
  const tslib_1 = __webpack_require__("./node_modules/.f/_/tslib/2.8.1/tslib/tslib.es6.mjs");
12067
12072
 
@@ -12071,9 +12076,9 @@ const path_1 = tslib_1.__importDefault(__webpack_require__("path"));
12071
12076
 
12072
12077
  const fs_1 = __webpack_require__("fs");
12073
12078
 
12074
- const filter_scan_dir_1 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.5/filter-scan-dir/lib/index.js");
12079
+ const filter_scan_dir_1 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.6/filter-scan-dir/lib/index.js");
12075
12080
 
12076
- const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js"));
12081
+ const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js"));
12077
12082
 
12078
12083
  const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
12079
12084
 
@@ -12105,8 +12110,6 @@ const DepSectionMap = {
12105
12110
  function getDepSection(fullName) {
12106
12111
  return DepSectionMap[fullName] || "dep";
12107
12112
  }
12108
-
12109
- exports.getDepSection = getDepSection;
12110
12113
  /**
12111
12114
  * make a indirect dep step string
12112
12115
  *
@@ -12116,17 +12119,17 @@ exports.getDepSection = getDepSection;
12116
12119
  * @returns step string
12117
12120
  */
12118
12121
 
12122
+
12119
12123
  function makeDepStep(name, version, sec) {
12120
12124
  return `${pkgId(name, version)}(${sec})`;
12121
12125
  }
12122
-
12123
- exports.makeDepStep = makeDepStep;
12124
12126
  /**
12125
12127
  * Reference to a package by id, path, or name.
12126
12128
  *
12127
12129
  * Supports RegExp or minimatch (for path)
12128
12130
  */
12129
12131
 
12132
+
12130
12133
  class PackageRef {
12131
12134
  constructor(ref) {
12132
12135
  this.parseRef(ref);
@@ -12206,8 +12209,6 @@ function pkgId(name, version) {
12206
12209
  const ver = version ? `@${version}` : "";
12207
12210
  return `${name}${ver}`;
12208
12211
  }
12209
-
12210
- exports.pkgId = pkgId;
12211
12212
  /**
12212
12213
  * Resolve a package from multiple versions by a semver
12213
12214
  *
@@ -12219,6 +12220,7 @@ exports.pkgId = pkgId;
12219
12220
  * @returns package info
12220
12221
  */
12221
12222
 
12223
+
12222
12224
  function resolvePackage(semver, packages, fallbackToFirst = true) {
12223
12225
  const found = packages.find(pkg => semver_1.default.satisfies(pkg.version, semver));
12224
12226
 
@@ -12243,12 +12245,11 @@ function resolvePackage(semver, packages, fallbackToFirst = true) {
12243
12245
  function pkgInfoId(info) {
12244
12246
  return pkgId(info.name, info.version);
12245
12247
  }
12246
-
12247
- exports.pkgInfoId = pkgInfoId;
12248
12248
  /**
12249
12249
  * fynpo dep graph manager
12250
12250
  */
12251
12251
 
12252
+
12252
12253
  class FynpoDepGraph {
12253
12254
  constructor(options = {}) {
12254
12255
  this._options = _objectSpread({
@@ -12453,12 +12454,14 @@ class FynpoDepGraph {
12453
12454
  cwd,
12454
12455
  prefix,
12455
12456
  concurrency: 500,
12456
- filter: (file, path) => {
12457
+ filter: (file, path, extras) => {
12457
12458
  if (path && path !== "." && file === "package.json") {
12458
- if (foundInAutoSearch(path)) {
12459
+ if (extras.files.includes("fynpo.json") || foundInAutoSearch(path)) {
12459
12460
  //
12460
- // In auto search, if we've found a package.json in a dir, we don't want to
12461
- // search any other package.json further under that dir
12461
+ // We ignore dir with package.json if:
12462
+ // 1. It's a fynpo root dir, ie: `fynpo.json` exists
12463
+ // 2. In auto search, if we've found a package.json in a dir, we don't want to
12464
+ // search any other package.json further under that dir
12462
12465
  //
12463
12466
  return false;
12464
12467
  }
@@ -12865,7 +12868,9 @@ exports.FynpoDepGraph = FynpoDepGraph;
12865
12868
  Object.defineProperty(exports, "__esModule", ({
12866
12869
  value: true
12867
12870
  }));
12868
- exports.makePkgDeps = exports.readFynpoPackages = exports.caching = void 0;
12871
+ exports.caching = void 0;
12872
+ exports.readFynpoPackages = readFynpoPackages;
12873
+ exports.makePkgDeps = makePkgDeps;
12869
12874
 
12870
12875
  const tslib_1 = __webpack_require__("./node_modules/.f/_/tslib/2.8.1/tslib/tslib.es6.mjs");
12871
12876
 
@@ -12873,9 +12878,9 @@ const path_1 = tslib_1.__importDefault(__webpack_require__("path"));
12873
12878
 
12874
12879
  const fs_1 = __webpack_require__("fs");
12875
12880
 
12876
- const filter_scan_dir_1 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.5/filter-scan-dir/lib/index.js");
12881
+ const filter_scan_dir_1 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.6/filter-scan-dir/lib/index.js");
12877
12882
 
12878
- const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js"));
12883
+ const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js"));
12879
12884
 
12880
12885
  const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
12881
12886
 
@@ -13054,8 +13059,6 @@ async function readFynpoPackages({
13054
13059
 
13055
13060
  return allPkgs;
13056
13061
  }
13057
-
13058
- exports.readFynpoPackages = readFynpoPackages;
13059
13062
  /**
13060
13063
  * calculate dep graphs for packages under the mono-repo
13061
13064
  *
@@ -13064,6 +13067,7 @@ exports.readFynpoPackages = readFynpoPackages;
13064
13067
  * @returns
13065
13068
  */
13066
13069
 
13070
+
13067
13071
  function makePkgDeps(packages, opts) {
13068
13072
  const cwd = opts.cwd || process.cwd();
13069
13073
  let circulars = [];
@@ -13139,8 +13143,6 @@ function makePkgDeps(packages, opts) {
13139
13143
  };
13140
13144
  }
13141
13145
 
13142
- exports.makePkgDeps = makePkgDeps;
13143
-
13144
13146
  /***/ }),
13145
13147
 
13146
13148
  /***/ "./node_modules/.f/_/@fynpo/base/1.1.17-fynlocal_h/@fynpo/base/dist/minimatch-group.js":
@@ -13152,11 +13154,14 @@ exports.makePkgDeps = makePkgDeps;
13152
13154
  Object.defineProperty(exports, "__esModule", ({
13153
13155
  value: true
13154
13156
  }));
13155
- exports.unrollMmMatch = exports.checkMmMatch = exports.deconstructMM = exports.groupMM = void 0;
13157
+ exports.groupMM = groupMM;
13158
+ exports.deconstructMM = deconstructMM;
13159
+ exports.checkMmMatch = checkMmMatch;
13160
+ exports.unrollMmMatch = unrollMmMatch;
13156
13161
 
13157
13162
  const tslib_1 = __webpack_require__("./node_modules/.f/_/tslib/2.8.1/tslib/tslib.es6.mjs");
13158
13163
 
13159
- const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js"));
13164
+ const minimatch_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js"));
13160
13165
 
13161
13166
  const lodash_1 = tslib_1.__importDefault(__webpack_require__("./node_modules/.f/_/lodash/4.17.21/lodash/lodash.min.js"));
13162
13167
  /**
@@ -13191,8 +13196,6 @@ function groupMM(mms, groups) {
13191
13196
  });
13192
13197
  return groups;
13193
13198
  }
13194
-
13195
- exports.groupMM = groupMM;
13196
13199
  /**
13197
13200
  * process a minimatch pattern to group them for matching directories
13198
13201
  *
@@ -13200,6 +13203,7 @@ exports.groupMM = groupMM;
13200
13203
  * @param m0 minimatch pattern
13201
13204
  */
13202
13205
 
13206
+
13203
13207
  function deconstructMM(m0) {
13204
13208
  const mms = [];
13205
13209
  const patterns = {
@@ -13241,8 +13245,6 @@ function deconstructMM(m0) {
13241
13245
 
13242
13246
  return patterns;
13243
13247
  }
13244
-
13245
- exports.deconstructMM = deconstructMM;
13246
13248
  /**
13247
13249
  * check that a path matches against a list of minimatch patterns
13248
13250
  *
@@ -13251,11 +13253,10 @@ exports.deconstructMM = deconstructMM;
13251
13253
  * @returns the first pattern that match or false
13252
13254
  */
13253
13255
 
13256
+
13254
13257
  function checkMmMatch(fullPath, patterns) {
13255
13258
  return !lodash_1.default.isEmpty(patterns) && patterns.find(patternMm => patternMm.match(fullPath));
13256
13259
  }
13257
-
13258
- exports.checkMmMatch = checkMmMatch;
13259
13260
  /**
13260
13261
  * Take a full path and match each level of it to a list of minimatch patterns
13261
13262
  *
@@ -13264,6 +13265,7 @@ exports.checkMmMatch = checkMmMatch;
13264
13265
  * @returns
13265
13266
  */
13266
13267
 
13268
+
13267
13269
  function unrollMmMatch(path, mms) {
13268
13270
  const parts = path.split("/");
13269
13271
  let rp;
@@ -13280,8 +13282,6 @@ function unrollMmMatch(path, mms) {
13280
13282
  return checkMmMatch(path, mms);
13281
13283
  }
13282
13284
 
13283
- exports.unrollMmMatch = unrollMmMatch;
13284
-
13285
13285
  /***/ }),
13286
13286
 
13287
13287
  /***/ "./node_modules/.f/_/@fynpo/base/1.1.17-fynlocal_h/@fynpo/base/dist/util.js":
@@ -20810,7 +20810,7 @@ LineStream.prototype._reencode = function (line, chunkEncoding) {
20810
20810
  "use strict";
20811
20811
 
20812
20812
 
20813
- const BB = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
20813
+ const BB = __webpack_require__("./node_modules/.f/_/bluebird/3.7.2-fynlocal_h/bluebird/index.js");
20814
20814
 
20815
20815
  const figgyPudding = __webpack_require__("./node_modules/.f/_/figgy-pudding/3.5.2/figgy-pudding/index.js");
20816
20816
 
@@ -21125,7 +21125,7 @@ function contentDir(cache) {
21125
21125
  "use strict";
21126
21126
 
21127
21127
 
21128
- const BB = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
21128
+ const BB = __webpack_require__("./node_modules/.f/_/bluebird/3.7.2-fynlocal_h/bluebird/index.js");
21129
21129
 
21130
21130
  const contentPath = __webpack_require__("./node_modules/.f/_/cacache/11.3.2/cacache/lib/content/path.js");
21131
21131
 
@@ -21368,7 +21368,7 @@ function integrityError(sri, path) {
21368
21368
  "use strict";
21369
21369
 
21370
21370
 
21371
- const BB = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
21371
+ const BB = __webpack_require__("./node_modules/.f/_/bluebird/3.7.2-fynlocal_h/bluebird/index.js");
21372
21372
 
21373
21373
  const contentPath = __webpack_require__("./node_modules/.f/_/cacache/11.3.2/cacache/lib/content/path.js");
21374
21374
 
@@ -21399,7 +21399,7 @@ function rm(cache, integrity) {
21399
21399
  "use strict";
21400
21400
 
21401
21401
 
21402
- const BB = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
21402
+ const BB = __webpack_require__("./node_modules/.f/_/bluebird/3.7.2-fynlocal_h/bluebird/index.js");
21403
21403
 
21404
21404
  const contentPath = __webpack_require__("./node_modules/.f/_/cacache/11.3.2/cacache/lib/content/path.js");
21405
21405
 
@@ -21584,7 +21584,7 @@ function checksumError(expected, found) {
21584
21584
  "use strict";
21585
21585
 
21586
21586
 
21587
- const BB = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
21587
+ const BB = __webpack_require__("./node_modules/.f/_/bluebird/3.7.2-fynlocal_h/bluebird/index.js");
21588
21588
 
21589
21589
  const contentPath = __webpack_require__("./node_modules/.f/_/cacache/11.3.2/cacache/lib/content/path.js");
21590
21590
 
@@ -22013,7 +22013,7 @@ function pickMem(opts) {
22013
22013
  "use strict";
22014
22014
 
22015
22015
 
22016
- const BB = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
22016
+ const BB = __webpack_require__("./node_modules/.f/_/bluebird/3.7.2-fynlocal_h/bluebird/index.js");
22017
22017
 
22018
22018
  const chownr = BB.promisify(__webpack_require__("./node_modules/.f/_/chownr/1.1.4/chownr/chownr.js"));
22019
22019
  const mkdirp = BB.promisify(__webpack_require__("./node_modules/.f/_/mkdirp/0.5.5/mkdirp/index.js"));
@@ -22129,7 +22129,7 @@ function hashToSegments(hash) {
22129
22129
 
22130
22130
  const fs = __webpack_require__("./node_modules/.f/_/graceful-fs/4.2.11/graceful-fs/graceful-fs.js");
22131
22131
 
22132
- const BB = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
22132
+ const BB = __webpack_require__("./node_modules/.f/_/bluebird/3.7.2-fynlocal_h/bluebird/index.js");
22133
22133
 
22134
22134
  const chmod = BB.promisify(fs.chmod);
22135
22135
  const unlink = BB.promisify(fs.unlink);
@@ -22196,7 +22196,7 @@ function moveFile(src, dest) {
22196
22196
  "use strict";
22197
22197
 
22198
22198
 
22199
- const BB = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
22199
+ const BB = __webpack_require__("./node_modules/.f/_/bluebird/3.7.2-fynlocal_h/bluebird/index.js");
22200
22200
 
22201
22201
  const figgyPudding = __webpack_require__("./node_modules/.f/_/figgy-pudding/3.5.2/figgy-pudding/index.js");
22202
22202
 
@@ -22285,7 +22285,7 @@ module.exports.setLocale = locale => {
22285
22285
  "use strict";
22286
22286
 
22287
22287
 
22288
- const BB = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
22288
+ const BB = __webpack_require__("./node_modules/.f/_/bluebird/3.7.2-fynlocal_h/bluebird/index.js");
22289
22289
 
22290
22290
  const contentPath = __webpack_require__("./node_modules/.f/_/cacache/11.3.2/cacache/lib/content/path.js");
22291
22291
 
@@ -22773,7 +22773,7 @@ function putStream(cache, key, opts) {
22773
22773
  "use strict";
22774
22774
 
22775
22775
 
22776
- const BB = __webpack_require__("./node_modules/.f/_/aveazul/1.0.2/aveazul/lib/aveazul.js");
22776
+ const BB = __webpack_require__("./node_modules/.f/_/bluebird/3.7.2-fynlocal_h/bluebird/index.js");
22777
22777
 
22778
22778
  const index = __webpack_require__("./node_modules/.f/_/cacache/11.3.2/cacache/lib/entry-index.js");
22779
22779
 
@@ -37455,7 +37455,7 @@ function entries(obj) {
37455
37455
 
37456
37456
  /***/ }),
37457
37457
 
37458
- /***/ "./node_modules/.f/_/filter-scan-dir/1.5.5/filter-scan-dir/dist/index.js":
37458
+ /***/ "./node_modules/.f/_/filter-scan-dir/1.5.6/filter-scan-dir/dist/index.js":
37459
37459
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
37460
37460
 
37461
37461
  "use strict";
@@ -37479,7 +37479,7 @@ const path_1 = __importDefault(__webpack_require__("path"));
37479
37479
 
37480
37480
  const util_1 = __importDefault(__webpack_require__("util"));
37481
37481
 
37482
- const util_2 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.5/filter-scan-dir/dist/util.js");
37482
+ const util_2 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.6/filter-scan-dir/dist/util.js");
37483
37483
  /**
37484
37484
  * create a new ExtrasData object
37485
37485
  *
@@ -37492,7 +37492,7 @@ const util_2 = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.5/fi
37492
37492
  */
37493
37493
 
37494
37494
 
37495
- function makeExtrasData(file, fullFile, path, stat, options) {
37495
+ function makeExtrasData(file, fullFile, path, stat, files, options) {
37496
37496
  const dirFile = options._join2(path, file);
37497
37497
 
37498
37498
  const ix = file.lastIndexOf(".");
@@ -37505,7 +37505,8 @@ function makeExtrasData(file, fullFile, path, stat, options) {
37505
37505
  fullFile,
37506
37506
  dirFile,
37507
37507
  ext: file.substring(ix),
37508
- noExt: file.substring(0, ix)
37508
+ noExt: file.substring(0, ix),
37509
+ files
37509
37510
  };
37510
37511
  } else {
37511
37512
  return {
@@ -37515,7 +37516,8 @@ function makeExtrasData(file, fullFile, path, stat, options) {
37515
37516
  fullFile,
37516
37517
  dirFile,
37517
37518
  ext: "",
37518
- noExt: file
37519
+ noExt: file,
37520
+ files
37519
37521
  };
37520
37522
  }
37521
37523
  }
@@ -37647,11 +37649,11 @@ function walkSync(path, options, level = 0) {
37647
37649
  const fullFile = options._join2(dir, file);
37648
37650
 
37649
37651
  const stat = fs_1.default.lstatSync(fullFile);
37650
- extras = makeExtrasData(file, fullFile, path, stat, options);
37652
+ extras = makeExtrasData(file, fullFile, path, stat, files, options);
37651
37653
  } else {
37652
37654
  const fullFile = options._join2(dir, file.name);
37653
37655
 
37654
- extras = makeExtrasData(file.name, fullFile, path, file, options);
37656
+ extras = makeExtrasData(file.name, fullFile, path, file, files, options);
37655
37657
  }
37656
37658
 
37657
37659
  if (extras.stat.isDirectory()) {
@@ -37721,11 +37723,11 @@ async function walk(path, options, level = 0) {
37721
37723
  const fullFile = options._join2(dir, file);
37722
37724
 
37723
37725
  const stat = await asyncLStat(fullFile);
37724
- extras = makeExtrasData(file, fullFile, path, stat, options);
37726
+ extras = makeExtrasData(file, fullFile, path, stat, files, options);
37725
37727
  } else {
37726
37728
  const fullFile = options._join2(dir, file.name);
37727
37729
 
37728
- extras = makeExtrasData(file.name, fullFile, path, file, options);
37730
+ extras = makeExtrasData(file.name, fullFile, path, file, files, options);
37729
37731
  }
37730
37732
 
37731
37733
  if (extras.stat.isDirectory()) {
@@ -37862,7 +37864,7 @@ exports.filterScanDirSync = filterScanDirSync;
37862
37864
 
37863
37865
  /***/ }),
37864
37866
 
37865
- /***/ "./node_modules/.f/_/filter-scan-dir/1.5.5/filter-scan-dir/dist/util.js":
37867
+ /***/ "./node_modules/.f/_/filter-scan-dir/1.5.6/filter-scan-dir/dist/util.js":
37866
37868
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
37867
37869
 
37868
37870
  "use strict";
@@ -37931,13 +37933,13 @@ exports.makePathJoin2 = makePathJoin2;
37931
37933
 
37932
37934
  /***/ }),
37933
37935
 
37934
- /***/ "./node_modules/.f/_/filter-scan-dir/1.5.5/filter-scan-dir/lib/index.js":
37936
+ /***/ "./node_modules/.f/_/filter-scan-dir/1.5.6/filter-scan-dir/lib/index.js":
37935
37937
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
37936
37938
 
37937
37939
  "use strict";
37938
37940
 
37939
37941
 
37940
- const fsd = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.5/filter-scan-dir/dist/index.js");
37942
+ const fsd = __webpack_require__("./node_modules/.f/_/filter-scan-dir/1.5.6/filter-scan-dir/dist/index.js");
37941
37943
 
37942
37944
  const asyncApi = options => fsd.filterScanDir(options);
37943
37945
 
@@ -42942,7 +42944,7 @@ function ownProp(obj, field) {
42942
42944
 
42943
42945
  var path = __webpack_require__("path");
42944
42946
 
42945
- var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js");
42947
+ var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
42946
42948
 
42947
42949
  var isAbsolute = __webpack_require__("./node_modules/.f/_/path-is-absolute/1.0.1/path-is-absolute/index.js");
42948
42950
 
@@ -43190,7 +43192,7 @@ var fs = __webpack_require__("fs");
43190
43192
 
43191
43193
  var rp = __webpack_require__("./node_modules/.f/_/fs.realpath/1.0.0/fs.realpath/index.js");
43192
43194
 
43193
- var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js");
43195
+ var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
43194
43196
 
43195
43197
  var Minimatch = minimatch.Minimatch;
43196
43198
 
@@ -43857,7 +43859,7 @@ var fs = __webpack_require__("fs");
43857
43859
 
43858
43860
  var rp = __webpack_require__("./node_modules/.f/_/fs.realpath/1.0.0/fs.realpath/index.js");
43859
43861
 
43860
- var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js");
43862
+ var minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
43861
43863
 
43862
43864
  var Minimatch = minimatch.Minimatch;
43863
43865
 
@@ -48503,7 +48505,7 @@ const path = __webpack_require__("path");
48503
48505
 
48504
48506
  const EE = (__webpack_require__("events").EventEmitter);
48505
48507
 
48506
- const Minimatch = (__webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js").Minimatch);
48508
+ const Minimatch = (__webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js").Minimatch);
48507
48509
 
48508
48510
  class Walker extends EE {
48509
48511
  constructor(opts) {
@@ -64095,19 +64097,21 @@ module.exports["default"] = mimicFn;
64095
64097
 
64096
64098
  /***/ }),
64097
64099
 
64098
- /***/ "./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js":
64100
+ /***/ "./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js":
64099
64101
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
64100
64102
 
64101
64103
  module.exports = minimatch;
64102
64104
  minimatch.Minimatch = Minimatch;
64103
- var path = {
64105
+
64106
+ var path = function () {
64107
+ try {
64108
+ return __webpack_require__("path");
64109
+ } catch (e) {}
64110
+ }() || {
64104
64111
  sep: '/'
64105
64112
  };
64106
64113
 
64107
- try {
64108
- path = __webpack_require__("path");
64109
- } catch (er) {}
64110
-
64114
+ minimatch.sep = path.sep;
64111
64115
  var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {};
64112
64116
 
64113
64117
  var expand = __webpack_require__("./node_modules/.f/_/brace-expansion/1.1.11/brace-expansion/index.js");
@@ -64168,51 +64172,71 @@ function filter(pattern, options) {
64168
64172
  }
64169
64173
 
64170
64174
  function ext(a, b) {
64171
- a = a || {};
64172
64175
  b = b || {};
64173
64176
  var t = {};
64174
- Object.keys(b).forEach(function (k) {
64175
- t[k] = b[k];
64176
- });
64177
64177
  Object.keys(a).forEach(function (k) {
64178
64178
  t[k] = a[k];
64179
64179
  });
64180
+ Object.keys(b).forEach(function (k) {
64181
+ t[k] = b[k];
64182
+ });
64180
64183
  return t;
64181
64184
  }
64182
64185
 
64183
64186
  minimatch.defaults = function (def) {
64184
- if (!def || !Object.keys(def).length) return minimatch;
64187
+ if (!def || typeof def !== 'object' || !Object.keys(def).length) {
64188
+ return minimatch;
64189
+ }
64190
+
64185
64191
  var orig = minimatch;
64186
64192
 
64187
64193
  var m = function minimatch(p, pattern, options) {
64188
- return orig.minimatch(p, pattern, ext(def, options));
64194
+ return orig(p, pattern, ext(def, options));
64189
64195
  };
64190
64196
 
64191
64197
  m.Minimatch = function Minimatch(pattern, options) {
64192
64198
  return new orig.Minimatch(pattern, ext(def, options));
64193
64199
  };
64194
64200
 
64201
+ m.Minimatch.defaults = function defaults(options) {
64202
+ return orig.defaults(ext(def, options)).Minimatch;
64203
+ };
64204
+
64205
+ m.filter = function filter(pattern, options) {
64206
+ return orig.filter(pattern, ext(def, options));
64207
+ };
64208
+
64209
+ m.defaults = function defaults(options) {
64210
+ return orig.defaults(ext(def, options));
64211
+ };
64212
+
64213
+ m.makeRe = function makeRe(pattern, options) {
64214
+ return orig.makeRe(pattern, ext(def, options));
64215
+ };
64216
+
64217
+ m.braceExpand = function braceExpand(pattern, options) {
64218
+ return orig.braceExpand(pattern, ext(def, options));
64219
+ };
64220
+
64221
+ m.match = function (list, pattern, options) {
64222
+ return orig.match(list, pattern, ext(def, options));
64223
+ };
64224
+
64195
64225
  return m;
64196
64226
  };
64197
64227
 
64198
64228
  Minimatch.defaults = function (def) {
64199
- if (!def || !Object.keys(def).length) return Minimatch;
64200
64229
  return minimatch.defaults(def).Minimatch;
64201
64230
  };
64202
64231
 
64203
64232
  function minimatch(p, pattern, options) {
64204
- if (typeof pattern !== 'string') {
64205
- throw new TypeError('glob pattern string required');
64206
- }
64207
-
64233
+ assertValidPattern(pattern);
64208
64234
  if (!options) options = {}; // shortcut: comments match nothing.
64209
64235
 
64210
64236
  if (!options.nocomment && pattern.charAt(0) === '#') {
64211
64237
  return false;
64212
- } // "" only matches ""
64213
-
64238
+ }
64214
64239
 
64215
- if (pattern.trim() === '') return p === '';
64216
64240
  return new Minimatch(pattern, options).match(p);
64217
64241
  }
64218
64242
 
@@ -64221,14 +64245,11 @@ function Minimatch(pattern, options) {
64221
64245
  return new Minimatch(pattern, options);
64222
64246
  }
64223
64247
 
64224
- if (typeof pattern !== 'string') {
64225
- throw new TypeError('glob pattern string required');
64226
- }
64227
-
64248
+ assertValidPattern(pattern);
64228
64249
  if (!options) options = {};
64229
64250
  pattern = pattern.trim(); // windows support: need to use /, not \
64230
64251
 
64231
- if (path.sep !== '/') {
64252
+ if (!options.allowWindowsEscape && path.sep !== '/') {
64232
64253
  pattern = pattern.split(path.sep).join('/');
64233
64254
  }
64234
64255
 
@@ -64238,7 +64259,8 @@ function Minimatch(pattern, options) {
64238
64259
  this.regexp = null;
64239
64260
  this.negate = false;
64240
64261
  this.comment = false;
64241
- this.empty = false; // make the set of regexps etc.
64262
+ this.empty = false;
64263
+ this.partial = !!options.partial; // make the set of regexps etc.
64242
64264
 
64243
64265
  this.make();
64244
64266
  }
@@ -64248,8 +64270,6 @@ Minimatch.prototype.debug = function () {};
64248
64270
  Minimatch.prototype.make = make;
64249
64271
 
64250
64272
  function make() {
64251
- // don't do it more than once.
64252
- if (this._made) return;
64253
64273
  var pattern = this.pattern;
64254
64274
  var options = this.options; // empty patterns and comments match nothing.
64255
64275
 
@@ -64267,7 +64287,9 @@ function make() {
64267
64287
  this.parseNegate(); // step 2: expand braces
64268
64288
 
64269
64289
  var set = this.globSet = this.braceExpand();
64270
- if (options.debug) this.debug = console.error;
64290
+ if (options.debug) this.debug = function debug() {
64291
+ console.error.apply(console, arguments);
64292
+ };
64271
64293
  this.debug(this.pattern, set); // step 3: now we have a set, so turn each one into a series of path-portion
64272
64294
  // matching patterns.
64273
64295
  // These will be regexps, except in the case of "**", which is
@@ -64335,18 +64357,28 @@ function braceExpand(pattern, options) {
64335
64357
  }
64336
64358
 
64337
64359
  pattern = typeof pattern === 'undefined' ? this.pattern : pattern;
64360
+ assertValidPattern(pattern); // Thanks to Yeting Li <https://github.com/yetingli> for
64361
+ // improving this regexp to avoid a ReDOS vulnerability.
64338
64362
 
64339
- if (typeof pattern === 'undefined') {
64340
- throw new TypeError('undefined pattern');
64341
- }
64342
-
64343
- if (options.nobrace || !pattern.match(/\{.*\}/)) {
64363
+ if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
64344
64364
  // shortcut. no need to expand.
64345
64365
  return [pattern];
64346
64366
  }
64347
64367
 
64348
64368
  return expand(pattern);
64349
- } // parse a component of the expanded set.
64369
+ }
64370
+
64371
+ var MAX_PATTERN_LENGTH = 1024 * 64;
64372
+
64373
+ var assertValidPattern = function (pattern) {
64374
+ if (typeof pattern !== 'string') {
64375
+ throw new TypeError('invalid pattern');
64376
+ }
64377
+
64378
+ if (pattern.length > MAX_PATTERN_LENGTH) {
64379
+ throw new TypeError('pattern is too long');
64380
+ }
64381
+ }; // parse a component of the expanded set.
64350
64382
  // At this point, no pattern may contain "/" in it
64351
64383
  // so we're going to return a 2d array, where each entry is the full
64352
64384
  // pattern, split on '/', and then turned into a regular expression.
@@ -64363,13 +64395,13 @@ Minimatch.prototype.parse = parse;
64363
64395
  var SUBPARSE = {};
64364
64396
 
64365
64397
  function parse(pattern, isSub) {
64366
- if (pattern.length > 1024 * 64) {
64367
- throw new TypeError('pattern is too long');
64368
- }
64369
-
64398
+ assertValidPattern(pattern);
64370
64399
  var options = this.options; // shortcuts
64371
64400
 
64372
- if (!options.noglobstar && pattern === '**') return GLOBSTAR;
64401
+ if (pattern === '**') {
64402
+ if (!options.noglobstar) return GLOBSTAR;else pattern = '*';
64403
+ }
64404
+
64373
64405
  if (pattern === '') return '';
64374
64406
  var re = '';
64375
64407
  var hasMagic = !!options.nocase;
@@ -64423,10 +64455,13 @@ function parse(pattern, isSub) {
64423
64455
  }
64424
64456
 
64425
64457
  switch (c) {
64458
+ /* istanbul ignore next */
64426
64459
  case '/':
64427
- // completely not allowed, even escaped.
64428
- // Should already be path-split by now.
64429
- return false;
64460
+ {
64461
+ // completely not allowed, even escaped.
64462
+ // Should already be path-split by now.
64463
+ return false;
64464
+ }
64430
64465
 
64431
64466
  case '\\':
64432
64467
  clearStateChar();
@@ -64544,28 +64579,26 @@ function parse(pattern, isSub) {
64544
64579
  continue;
64545
64580
  } // handle the case where we left a class open.
64546
64581
  // "[z-a]" is valid, equivalent to "\[z-a\]"
64582
+ // split where the last [ was, make sure we don't have
64583
+ // an invalid re. if so, re-walk the contents of the
64584
+ // would-be class to re-translate any characters that
64585
+ // were passed through as-is
64586
+ // TODO: It would probably be faster to determine this
64587
+ // without a try/catch and a new RegExp, but it's tricky
64588
+ // to do safely. For now, this is safe and works.
64547
64589
 
64548
64590
 
64549
- if (inClass) {
64550
- // split where the last [ was, make sure we don't have
64551
- // an invalid re. if so, re-walk the contents of the
64552
- // would-be class to re-translate any characters that
64553
- // were passed through as-is
64554
- // TODO: It would probably be faster to determine this
64555
- // without a try/catch and a new RegExp, but it's tricky
64556
- // to do safely. For now, this is safe and works.
64557
- var cs = pattern.substring(classStart + 1, i);
64591
+ var cs = pattern.substring(classStart + 1, i);
64558
64592
 
64559
- try {
64560
- RegExp('[' + cs + ']');
64561
- } catch (er) {
64562
- // not a valid class!
64563
- var sp = this.parse(cs, SUBPARSE);
64564
- re = re.substr(0, reClassStart) + '\\[' + sp[0] + '\\]';
64565
- hasMagic = hasMagic || sp[1];
64566
- inClass = false;
64567
- continue;
64568
- }
64593
+ try {
64594
+ RegExp('[' + cs + ']');
64595
+ } catch (er) {
64596
+ // not a valid class!
64597
+ var sp = this.parse(cs, SUBPARSE);
64598
+ re = re.substr(0, reClassStart) + '\\[' + sp[0] + '\\]';
64599
+ hasMagic = hasMagic || sp[1];
64600
+ inClass = false;
64601
+ continue;
64569
64602
  } // finish up the class.
64570
64603
 
64571
64604
 
@@ -64647,8 +64680,8 @@ function parse(pattern, isSub) {
64647
64680
  var addPatternStart = false;
64648
64681
 
64649
64682
  switch (re.charAt(0)) {
64650
- case '.':
64651
64683
  case '[':
64684
+ case '.':
64652
64685
  case '(':
64653
64686
  addPatternStart = true;
64654
64687
  } // Hack to work around lack of negative lookbehind in JS
@@ -64713,7 +64746,9 @@ function parse(pattern, isSub) {
64713
64746
 
64714
64747
  try {
64715
64748
  var regExp = new RegExp('^' + re + '$', flags);
64716
- } catch (er) {
64749
+ } catch (er)
64750
+ /* istanbul ignore next - should be impossible */
64751
+ {
64717
64752
  // If it was an invalid regular expression, then it can't match
64718
64753
  // anything. This trick looks for a character after the end of
64719
64754
  // the string, which is of course impossible, except in multi-line
@@ -64763,7 +64798,9 @@ function makeRe() {
64763
64798
 
64764
64799
  try {
64765
64800
  this.regexp = new RegExp(re, flags);
64766
- } catch (ex) {
64801
+ } catch (ex)
64802
+ /* istanbul ignore next - should be impossible */
64803
+ {
64767
64804
  this.regexp = false;
64768
64805
  }
64769
64806
 
@@ -64784,9 +64821,8 @@ minimatch.match = function (list, pattern, options) {
64784
64821
  return list;
64785
64822
  };
64786
64823
 
64787
- Minimatch.prototype.match = match;
64788
-
64789
- function match(f, partial) {
64824
+ Minimatch.prototype.match = function match(f, partial) {
64825
+ if (typeof partial === 'undefined') partial = this.partial;
64790
64826
  this.debug('match', f, this.pattern); // short-circuit in the case of busted things.
64791
64827
  // comments, etc.
64792
64828
 
@@ -64837,7 +64873,7 @@ function match(f, partial) {
64837
64873
 
64838
64874
  if (options.flipNegate) return false;
64839
64875
  return this.negate;
64840
- } // set partial to true to test if, for example,
64876
+ }; // set partial to true to test if, for example,
64841
64877
  // "/a/b" matches the start of "/*/b/*/d"
64842
64878
  // Partial means, if you run out of file before you run
64843
64879
  // out of pattern, then that's fine, as long as all
@@ -64860,6 +64896,8 @@ Minimatch.prototype.matchOne = function (file, pattern, partial) {
64860
64896
  this.debug(pattern, p, f); // should be impossible.
64861
64897
  // some invalid regexp stuff in the set.
64862
64898
 
64899
+ /* istanbul ignore if */
64900
+
64863
64901
  if (p === false) return false;
64864
64902
 
64865
64903
  if (p === GLOBSTAR) {
@@ -64929,6 +64967,8 @@ Minimatch.prototype.matchOne = function (file, pattern, partial) {
64929
64967
  // However, in partial mode, we can't say this is necessarily over.
64930
64968
  // If there's more *pattern* left, then
64931
64969
 
64970
+ /* istanbul ignore if */
64971
+
64932
64972
 
64933
64973
  if (partial) {
64934
64974
  // ran out of file
@@ -64945,12 +64985,7 @@ Minimatch.prototype.matchOne = function (file, pattern, partial) {
64945
64985
  var hit;
64946
64986
 
64947
64987
  if (typeof p === 'string') {
64948
- if (options.nocase) {
64949
- hit = f.toLowerCase() === p.toLowerCase();
64950
- } else {
64951
- hit = f === p;
64952
- }
64953
-
64988
+ hit = f === p;
64954
64989
  this.debug('string match', p, f, hit);
64955
64990
  } else {
64956
64991
  hit = f.match(p);
@@ -64980,14 +65015,17 @@ Minimatch.prototype.matchOne = function (file, pattern, partial) {
64980
65015
  // this is ok if we're doing the match as part of
64981
65016
  // a glob fs traversal.
64982
65017
  return partial;
64983
- } else if (pi === pl) {
64984
- // ran out of pattern, still have file left.
64985
- // this is only acceptable if we're on the very last
64986
- // empty segment of a file with a trailing slash.
64987
- // a/* should match a/b/
64988
- var emptyFileEnd = fi === fl - 1 && file[fi] === '';
64989
- return emptyFileEnd;
64990
- } // should be unreachable.
65018
+ } else
65019
+ /* istanbul ignore else */
65020
+ if (pi === pl) {
65021
+ // ran out of pattern, still have file left.
65022
+ // this is only acceptable if we're on the very last
65023
+ // empty segment of a file with a trailing slash.
65024
+ // a/* should match a/b/
65025
+ return fi === fl - 1 && file[fi] === '';
65026
+ } // should be unreachable.
65027
+
65028
+ /* istanbul ignore next */
64991
65029
 
64992
65030
 
64993
65031
  throw new Error('wtf?');
@@ -80583,7 +80621,7 @@ module.exports = opfsWrap;
80583
80621
 
80584
80622
  /***/ }),
80585
80623
 
80586
- /***/ "./node_modules/.f/_/optional-require/1.1.8/optional-require/dist/index.js":
80624
+ /***/ "./node_modules/.f/_/optional-require/1.1.10/optional-require/dist/index.js":
80587
80625
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
80588
80626
 
80589
80627
  "use strict";
@@ -80647,35 +80685,39 @@ function getPnpDependencyName(name) {
80647
80685
  * that's not found.
80648
80686
  *
80649
80687
  * @param err - the error
80650
- * @param name - name of the module being required
80688
+ * @param requestPath - request path of the module being required
80651
80689
  * @returns true or false
80652
80690
  */
80653
80691
 
80654
80692
 
80655
- function findModuleNotFound(err, name) {
80693
+ function checkSelfModuleNotFoundErrors(err, requestPath) {
80656
80694
  // Check the first line of the error message
80657
80695
  var msg = err.message.split("\n")[0];
80658
- /* istanbul ignore if */
80696
+ /* istanbul ignore next */
80659
80697
 
80660
80698
  if (!msg) {
80699
+ /* istanbul ignore next */
80661
80700
  return false;
80662
- } // Check for "Cannot find module 'foo'"
80701
+ } // exception that's not due to the module itself not found
80663
80702
 
80664
80703
 
80665
- if (msg.includes("'" + name + "'")) {
80704
+ if (err.code === "MODULE_NOT_FOUND" && ( // If the module we are requiring failed because it try to require a
80705
+ // module that's not found, then we have to report this as failed.
80706
+ // - So the error message must contain the module name we are requiring.
80707
+ err.requestPath === requestPath || msg.includes("not find module '".concat(requestPath, "'")) || msg.includes("not find package '".concat(requestPath, "'")))) {
80666
80708
  return true;
80667
80709
  }
80668
80710
 
80669
- var pnpDependencyName = getPnpDependencyName(name);
80711
+ var pnpDependencyName = getPnpDependencyName(requestPath);
80670
80712
 
80671
80713
  if (pnpDependencyName) {
80672
80714
  return (// Check for "Your application tried to access foo (a peer dependency) ..." (Yarn Berry PnP)
80673
80715
  // https://github.com/yarnpkg/berry/blob/e81dc0d29bb2f41818d9c5c1c74bab1406fb979b/packages/yarnpkg-pnp/sources/loader/makeApi.ts#L680
80674
- msg.includes(" " + pnpDependencyName + " ") || // Check for "Your application tried to access foo. While ..." (Yarn Berry PnP)
80716
+ msg.includes(" ".concat(pnpDependencyName, " ")) || // Check for "Your application tried to access foo. While ..." (Yarn Berry PnP)
80675
80717
  // https://github.com/yarnpkg/berry/blob/e81dc0d29bb2f41818d9c5c1c74bab1406fb979b/packages/yarnpkg-pnp/sources/loader/makeApi.ts#L704
80676
- msg.includes(" " + pnpDependencyName + ". ") || // Check for "Your application tried to access foo, but ..." (Yarn Berry PnP)
80718
+ msg.includes(" ".concat(pnpDependencyName, ". ")) || // Check for "Your application tried to access foo, but ..." (Yarn Berry PnP)
80677
80719
  // https://github.com/yarnpkg/berry/blob/e81dc0d29bb2f41818d9c5c1c74bab1406fb979b/packages/yarnpkg-pnp/sources/loader/makeApi.ts#L718
80678
- msg.includes(" " + pnpDependencyName + ", ")
80720
+ msg.includes(" ".concat(pnpDependencyName, ", "))
80679
80721
  );
80680
80722
  }
80681
80723
 
@@ -80690,7 +80732,7 @@ function findModuleNotFound(err, name) {
80690
80732
 
80691
80733
 
80692
80734
  function defaultLog(message, path) {
80693
- console.log("Just FYI: " + message + "; Path \"" + path + "\"");
80735
+ console.log("Just FYI: ".concat(message, "; Path \"").concat(path, "\""));
80694
80736
  }
80695
80737
 
80696
80738
  var __defaultLog = defaultLog;
@@ -80734,26 +80776,23 @@ function _getOptions(optsOrMsg, requireFunction, log) {
80734
80776
  function _optionalRequire(path, opts) {
80735
80777
  try {
80736
80778
  return opts.resolve ? opts.require.resolve(path) : opts.require(path);
80737
- } catch (e) {
80738
- // exception that's not due to the module itself not found
80739
- if (e.code !== "MODULE_NOT_FOUND" || !findModuleNotFound(e, path)) {
80740
- // if the module we are requiring fail because it try to require a
80741
- // module that's not found, then we have to report this as failed.
80779
+ } catch (err) {
80780
+ if (!checkSelfModuleNotFoundErrors(err, path)) {
80742
80781
  if (typeof opts.fail === "function") {
80743
- return opts.fail(e);
80782
+ return opts.fail(err);
80744
80783
  }
80745
80784
 
80746
- throw e;
80785
+ throw err;
80747
80786
  }
80748
80787
 
80749
80788
  if (opts.message) {
80750
- var message = opts.message === true ? "" : opts.message + " - ";
80789
+ var message = opts.message === true ? "" : "".concat(opts.message, " - ");
80751
80790
  var r = opts.resolve ? "resolved" : "found";
80752
- opts.log(message + "optional module not " + r, path);
80791
+ opts.log("".concat(message, "optional module not ").concat(r), path);
80753
80792
  }
80754
80793
 
80755
80794
  if (typeof opts.notFound === "function") {
80756
- return opts.notFound(e);
80795
+ return opts.notFound(err);
80757
80796
  }
80758
80797
 
80759
80798
  return opts.default;
@@ -80847,7 +80886,7 @@ exports.optionalRequireCwd = makeOptionalRequire((0, require_at_1.default)(proce
80847
80886
 
80848
80887
  /***/ }),
80849
80888
 
80850
- /***/ "./node_modules/.f/_/optional-require/1.1.8/optional-require/index.js":
80889
+ /***/ "./node_modules/.f/_/optional-require/1.1.10/optional-require/index.js":
80851
80890
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
80852
80891
 
80853
80892
  "use strict";
@@ -80857,7 +80896,7 @@ exports.optionalRequireCwd = makeOptionalRequire((0, require_at_1.default)(proce
80857
80896
  *
80858
80897
  */
80859
80898
 
80860
- const lib = __webpack_require__("./node_modules/.f/_/optional-require/1.1.8/optional-require/dist/index.js");
80899
+ const lib = __webpack_require__("./node_modules/.f/_/optional-require/1.1.10/optional-require/dist/index.js");
80861
80900
 
80862
80901
  module.exports = function () {
80863
80902
  return lib.makeOptionalRequire.apply(lib, arguments);
@@ -82432,7 +82471,7 @@ const fetchFromManifest = (__webpack_require__("./node_modules/.f/_/pacote/9.4.0
82432
82471
 
82433
82472
  const finished = __webpack_require__("./node_modules/.f/_/pacote/9.4.0/pacote/lib/util/finished.js");
82434
82473
 
82435
- const minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.0.4/minimatch/minimatch.js");
82474
+ const minimatch = __webpack_require__("./node_modules/.f/_/minimatch/3.1.2/minimatch/minimatch.js");
82436
82475
 
82437
82476
  const normalize = __webpack_require__("./node_modules/.f/_/normalize-package-data/2.5.0/normalize-package-data/lib/normalize.js");
82438
82477
 
@@ -83827,7 +83866,7 @@ module.exports.win32 = win32.parse;
83827
83866
 
83828
83867
  /***/ }),
83829
83868
 
83830
- /***/ "./node_modules/.f/_/pkg-preper/0.1.2-fynlocal_h/pkg-preper/lib/pkg-preper.js":
83869
+ /***/ "./node_modules/.f/_/pkg-preper/0.1.3-fynlocal_h/pkg-preper/lib/pkg-preper.js":
83831
83870
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
83832
83871
 
83833
83872
  "use strict";
@@ -103699,7 +103738,7 @@ const debug_1 = __importDefault(__webpack_require__("./stubs/debug.js"));
103699
103738
 
103700
103739
  const agent_base_1 = __webpack_require__("./node_modules/.f/_/agent-base/6.0.2/agent-base/dist/src/index.js");
103701
103740
 
103702
- const socks_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.4/socks/build/index.js");
103741
+ const socks_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.5/socks/build/index.js");
103703
103742
 
103704
103743
  const debug = debug_1.default('socks-proxy-agent');
103705
103744
 
@@ -105154,7 +105193,7 @@ __export(__webpack_require__("./node_modules/.f/_/socks/2.3.3/socks/build/client
105154
105193
 
105155
105194
  /***/ }),
105156
105195
 
105157
- /***/ "./node_modules/.f/_/socks/2.8.4/socks/build/client/socksclient.js":
105196
+ /***/ "./node_modules/.f/_/socks/2.8.5/socks/build/client/socksclient.js":
105158
105197
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
105159
105198
 
105160
105199
  "use strict";
@@ -105203,13 +105242,13 @@ const net = __webpack_require__("net");
105203
105242
 
105204
105243
  const smart_buffer_1 = __webpack_require__("./node_modules/.f/_/smart-buffer/4.2.0/smart-buffer/build/smartbuffer.js");
105205
105244
 
105206
- const constants_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.4/socks/build/common/constants.js");
105245
+ const constants_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.5/socks/build/common/constants.js");
105207
105246
 
105208
- const helpers_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.4/socks/build/common/helpers.js");
105247
+ const helpers_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.5/socks/build/common/helpers.js");
105209
105248
 
105210
- const receivebuffer_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.4/socks/build/common/receivebuffer.js");
105249
+ const receivebuffer_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.5/socks/build/common/receivebuffer.js");
105211
105250
 
105212
- const util_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.4/socks/build/common/util.js");
105251
+ const util_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.5/socks/build/common/util.js");
105213
105252
 
105214
105253
  Object.defineProperty(exports, "SocksClientError", ({
105215
105254
  enumerable: true,
@@ -106059,7 +106098,7 @@ exports.SocksClient = SocksClient;
106059
106098
 
106060
106099
  /***/ }),
106061
106100
 
106062
- /***/ "./node_modules/.f/_/socks/2.8.4/socks/build/common/constants.js":
106101
+ /***/ "./node_modules/.f/_/socks/2.8.5/socks/build/common/constants.js":
106063
106102
  /***/ ((__unused_webpack_module, exports) => {
106064
106103
 
106065
106104
  "use strict";
@@ -106192,7 +106231,7 @@ var SocksClientState;
106192
106231
 
106193
106232
  /***/ }),
106194
106233
 
106195
- /***/ "./node_modules/.f/_/socks/2.8.4/socks/build/common/helpers.js":
106234
+ /***/ "./node_modules/.f/_/socks/2.8.5/socks/build/common/helpers.js":
106196
106235
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
106197
106236
 
106198
106237
  "use strict";
@@ -106203,9 +106242,9 @@ Object.defineProperty(exports, "__esModule", ({
106203
106242
  }));
106204
106243
  exports.ipToBuffer = exports.int32ToIpv4 = exports.ipv4ToInt32 = exports.validateSocksClientChainOptions = exports.validateSocksClientOptions = void 0;
106205
106244
 
106206
- const util_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.4/socks/build/common/util.js");
106245
+ const util_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.5/socks/build/common/util.js");
106207
106246
 
106208
- const constants_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.4/socks/build/common/constants.js");
106247
+ const constants_1 = __webpack_require__("./node_modules/.f/_/socks/2.8.5/socks/build/common/constants.js");
106209
106248
 
106210
106249
  const stream = __webpack_require__("stream");
106211
106250
 
@@ -106346,7 +106385,7 @@ function isValidTimeoutValue(value) {
106346
106385
  function ipv4ToInt32(ip) {
106347
106386
  const address = new ip_address_1.Address4(ip); // Convert the IPv4 address parts to an integer
106348
106387
 
106349
- return address.toArray().reduce((acc, part) => (acc << 8) + part, 0);
106388
+ return address.toArray().reduce((acc, part) => (acc << 8) + part, 0) >>> 0;
106350
106389
  }
106351
106390
 
106352
106391
  exports.ipv4ToInt32 = ipv4ToInt32;
@@ -106381,7 +106420,7 @@ exports.ipToBuffer = ipToBuffer;
106381
106420
 
106382
106421
  /***/ }),
106383
106422
 
106384
- /***/ "./node_modules/.f/_/socks/2.8.4/socks/build/common/receivebuffer.js":
106423
+ /***/ "./node_modules/.f/_/socks/2.8.5/socks/build/common/receivebuffer.js":
106385
106424
  /***/ ((__unused_webpack_module, exports) => {
106386
106425
 
106387
106426
  "use strict";
@@ -106444,7 +106483,7 @@ exports.ReceiveBuffer = ReceiveBuffer;
106444
106483
 
106445
106484
  /***/ }),
106446
106485
 
106447
- /***/ "./node_modules/.f/_/socks/2.8.4/socks/build/common/util.js":
106486
+ /***/ "./node_modules/.f/_/socks/2.8.5/socks/build/common/util.js":
106448
106487
  /***/ ((__unused_webpack_module, exports) => {
106449
106488
 
106450
106489
  "use strict";
@@ -106483,7 +106522,7 @@ exports.shuffleArray = shuffleArray;
106483
106522
 
106484
106523
  /***/ }),
106485
106524
 
106486
- /***/ "./node_modules/.f/_/socks/2.8.4/socks/build/index.js":
106525
+ /***/ "./node_modules/.f/_/socks/2.8.5/socks/build/index.js":
106487
106526
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
106488
106527
 
106489
106528
  "use strict";
@@ -106516,7 +106555,7 @@ Object.defineProperty(exports, "__esModule", ({
106516
106555
  value: true
106517
106556
  }));
106518
106557
 
106519
- __exportStar(__webpack_require__("./node_modules/.f/_/socks/2.8.4/socks/build/client/socksclient.js"), exports);
106558
+ __exportStar(__webpack_require__("./node_modules/.f/_/socks/2.8.5/socks/build/client/socksclient.js"), exports);
106520
106559
 
106521
106560
  /***/ }),
106522
106561
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fyn",
3
- "version": "1.1.44",
3
+ "version": "1.1.46",
4
4
  "description": "fyn is the NPM for fynpo -- a zero setup monorepo tool",
5
5
  "main": "./bin/fyn.js",
6
6
  "homepage": "https://jchip.github.io/fynpo/",