@savvy-web/silk 3.3.1 → 3.4.0

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.
@@ -399,7 +399,7 @@ const trimTrailingSlashes = (s) => {
399
399
  return s.slice(0, end);
400
400
  };
401
401
  //#endregion
402
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/limits.js
402
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/limits.js
403
403
  /** Hard cap on pattern length. Upstream minimatch's MAX_PATTERN_LENGTH (64KB). */
404
404
  const MAX_PATTERN_LENGTH = 65536;
405
405
  /** Default brace-expansion output budget. Upstream brace-expansion's EXPANSION_MAX. */
@@ -433,7 +433,7 @@ const assertCap = (name, value) => {
433
433
  return value;
434
434
  };
435
435
  //#endregion
436
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/unescape.js
436
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/unescape.js
437
437
  /**
438
438
  * Un-escape a string that has been escaped with `escape`.
439
439
  *
@@ -456,11 +456,11 @@ const unescapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = true
456
456
  return windowsPathsNoEscape ? s.replace(/\[([^/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\{}])\]/g, "$1$2").replace(/\\([^/{}])/g, "$1");
457
457
  };
458
458
  //#endregion
459
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/types.js
459
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/types.js
460
460
  /** The globstar marker in a compiled pattern set. */
461
461
  const GLOBSTAR = Symbol("globstar **");
462
462
  //#endregion
463
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/escape.js
463
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/escape.js
464
464
  /**
465
465
  * Escape all magic characters in a glob pattern.
466
466
  *
@@ -478,13 +478,13 @@ const escapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = false
478
478
  return windowsPathsNoEscape ? s.replace(/[?*()[\]]/g, "[$&]") : s.replace(/[?*()[\]\\]/g, "\\$&");
479
479
  };
480
480
  //#endregion
481
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/assertValidPattern.js
481
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/assertValidPattern.js
482
482
  const assertValidPattern = (pattern) => {
483
483
  if (typeof pattern !== "string") throw new TypeError("invalid pattern");
484
484
  if (pattern.length > 65536) throw new GuardExceeded("PatternTooLong", MAX_PATTERN_LENGTH, pattern.length);
485
485
  };
486
486
  //#endregion
487
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/braceExpressions.js
487
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/braceExpressions.js
488
488
  const posixClasses = {
489
489
  "[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
490
490
  "[:alpha:]": ["\\p{L}\\p{Nl}", true],
@@ -607,7 +607,7 @@ const parseClass = (glob, position) => {
607
607
  ];
608
608
  };
609
609
  //#endregion
610
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/ast.js
610
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/ast.js
611
611
  const types = /* @__PURE__ */ new Set([
612
612
  "!",
613
613
  "?",
@@ -1124,7 +1124,7 @@ var AST = class AST {
1124
1124
  }
1125
1125
  };
1126
1126
  //#endregion
1127
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/balancedMatch.js
1127
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/balancedMatch.js
1128
1128
  const maybeMatch = (reg, str) => {
1129
1129
  const m = str.match(reg);
1130
1130
  return m ? m[0] : null;
@@ -1182,7 +1182,7 @@ const range = (a, b, str) => {
1182
1182
  return result;
1183
1183
  };
1184
1184
  //#endregion
1185
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/braceExpansion.js
1185
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/braceExpansion.js
1186
1186
  const escSlash = `\0SLASH${Math.random()}\0`;
1187
1187
  const escOpen = `\0OPEN${Math.random()}\0`;
1188
1188
  const escClose = `\0CLOSE${Math.random()}\0`;
@@ -1329,7 +1329,7 @@ function expand_(str, max, isTopInput, depth) {
1329
1329
  }
1330
1330
  }
1331
1331
  //#endregion
1332
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/minimatch.js
1332
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/minimatch.js
1333
1333
  const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
1334
1334
  const starDotExtTest = (ext) => (f) => !f.startsWith(".") && f.endsWith(ext);
1335
1335
  const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
@@ -1384,7 +1384,8 @@ const twoStarNoDot = "(?:(?!(?:\\/|^)\\.).)*?";
1384
1384
  const braceExpand = (pattern, options = {}) => {
1385
1385
  assertValidPattern(pattern);
1386
1386
  if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) return [pattern];
1387
- return expand(pattern, options.braceExpandMax === void 0 ? {} : { max: options.braceExpandMax });
1387
+ const opts = options.braceExpandMax === void 0 ? {} : { max: options.braceExpandMax };
1388
+ return expand(pattern, opts);
1388
1389
  };
1389
1390
  const globMagic = /[?*]|[+@!]\(.*?\)|\[|\]/;
1390
1391
  const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
@@ -1900,7 +1901,7 @@ var Minimatch = class {
1900
1901
  }
1901
1902
  };
1902
1903
  //#endregion
1903
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/GlobPattern.js
1904
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/GlobPattern.js
1904
1905
  /**
1905
1906
  * Typed failure raised when a glob pattern trips a compile-time guard:
1906
1907
  * over-length, brace-expansion budget exhaustion, or nesting past the depth
@@ -2179,7 +2180,7 @@ var GlobPattern = class GlobPattern extends effect.Schema.Class("GlobPattern")(e
2179
2180
  })));
2180
2181
  };
2181
2182
  //#endregion
2182
- //#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/GlobSet.js
2183
+ //#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/GlobSet.js
2183
2184
  const exclusionTarget = (pattern) => pattern.startsWith("!") ? pattern.slice(1) : void 0;
2184
2185
  const allCompileUnderDefaults = (patterns) => {
2185
2186
  for (const pattern of patterns) {
@@ -2333,7 +2334,7 @@ var GlobSet = class GlobSet extends effect.Schema.Class("GlobSet")(effect.Schema
2333
2334
  }
2334
2335
  };
2335
2336
  //#endregion
2336
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/BunExtension.js
2337
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/BunExtension.js
2337
2338
  /**
2338
2339
  * Extension data specific to bun lockfiles, attached to `Lockfile.extension`
2339
2340
  * when the format is `"bun"`.
@@ -2354,7 +2355,7 @@ var BunExtension = class extends effect.Schema.Class("BunExtension")({
2354
2355
  trustedDependencies: effect.Schema.optionalKey(effect.Schema.Array(effect.Schema.String))
2355
2356
  }) {};
2356
2357
  //#endregion
2357
- //#region ../../node_modules/.pnpm/@effected+npm@0.8.0_@effected+semver@0.3.0_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/CatalogResolver.js
2358
+ //#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/CatalogResolver.js
2358
2359
  /**
2359
2360
  * Contract for resolving pnpm `catalog:` dependency specifiers to concrete
2360
2361
  * version ranges.
@@ -2400,7 +2401,7 @@ var CatalogResolver = class CatalogResolver extends effect.Context.Service()("@e
2400
2401
  static noop = effect.Layer.succeed(CatalogResolver, { rangeOf: () => effect.Effect.succeed(effect.Option.none()) });
2401
2402
  };
2402
2403
  //#endregion
2403
- //#region ../../node_modules/.pnpm/@effected+npm@0.8.0_@effected+semver@0.3.0_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/WorkspaceResolver.js
2404
+ //#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/WorkspaceResolver.js
2404
2405
  /**
2405
2406
  * Raised when a `catalog:` or `workspace:` specifier cannot be resolved
2406
2407
  * because the resolution mechanism itself failed — not for an ordinary
@@ -2461,7 +2462,7 @@ var WorkspaceResolver = class WorkspaceResolver extends effect.Context.Service()
2461
2462
  static noop = effect.Layer.succeed(WorkspaceResolver, { versionOf: () => effect.Effect.succeed(effect.Option.none()) });
2462
2463
  };
2463
2464
  //#endregion
2464
- //#region ../../node_modules/.pnpm/@effected+npm@0.8.0_@effected+semver@0.3.0_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/CatalogAssemblyError.js
2465
+ //#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/CatalogAssemblyError.js
2465
2466
  /**
2466
2467
  * Raised when a workspace's catalogs cannot be assembled — a `pnpm-workspace.yaml`
2467
2468
  * that is unreadable or not valid YAML, a root `package.json` `workspaces` field
@@ -2505,7 +2506,7 @@ var CatalogAssemblyError = class extends effect.Schema.TaggedErrorClass()("Catal
2505
2506
  }
2506
2507
  };
2507
2508
  //#endregion
2508
- //#region ../../node_modules/.pnpm/@effected+npm@0.8.0_@effected+semver@0.3.0_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/DependencySection.js
2509
+ //#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/DependencySection.js
2509
2510
  /**
2510
2511
  * The short dependency kind: which dependency map an entry came from, named the
2511
2512
  * way consumers branch on it.
@@ -2537,7 +2538,7 @@ Object.fromEntries(Object.entries({
2537
2538
  optional: "optionalDependencies"
2538
2539
  }).map(([kind, field]) => [field, kind]));
2539
2540
  //#endregion
2540
- //#region ../../node_modules/.pnpm/@effected+semver@0.3.0_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/desugar.js
2541
+ //#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/desugar.js
2541
2542
  const sv = (major, minor, patch, prerelease = [], build = []) => ({
2542
2543
  major,
2543
2544
  minor,
@@ -2626,7 +2627,7 @@ const desugarHyphen = (lower, upper) => {
2626
2627
  return [comp(">=", lowerVersion)];
2627
2628
  };
2628
2629
  //#endregion
2629
- //#region ../../node_modules/.pnpm/@effected+semver@0.3.0_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/grammar.js
2630
+ //#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/grammar.js
2630
2631
  /** Private control-flow exception; never escapes the entry points. */
2631
2632
  var ParseFailure = class {
2632
2633
  position;
@@ -3026,7 +3027,7 @@ const formatComparator = (c) => {
3026
3027
  /** Print comparator sets as `a b || c d`. */
3027
3028
  const formatRange = (sets) => sets.map((set) => set.map(formatComparator).join(" ")).join(" || ");
3028
3029
  //#endregion
3029
- //#region ../../node_modules/.pnpm/@effected+semver@0.3.0_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/order.js
3030
+ //#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/order.js
3030
3031
  /**
3031
3032
  * Compare two prerelease identifiers per SemVer 2.0.0 §11: numeric
3032
3033
  * identifiers always have lower precedence than alphanumeric ones; numerics
@@ -3079,7 +3080,7 @@ const compareBuild = (a, b) => {
3079
3080
  return 0;
3080
3081
  };
3081
3082
  //#endregion
3082
- //#region ../../node_modules/.pnpm/@effected+semver@0.3.0_effect@4.0.0-beta.101/node_modules/@effected/semver/SemVer.js
3083
+ //#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/SemVer.js
3083
3084
  /**
3084
3085
  * Indicates that a string could not be parsed as a valid SemVer 2.0.0 version.
3085
3086
  *
@@ -3590,7 +3591,7 @@ var SemVerBump = class {
3590
3591
  }
3591
3592
  };
3592
3593
  //#endregion
3593
- //#region ../../node_modules/.pnpm/@effected+semver@0.3.0_effect@4.0.0-beta.101/node_modules/@effected/semver/Comparator.js
3594
+ //#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/Comparator.js
3594
3595
  /**
3595
3596
  * Indicates that a string could not be parsed as a single comparator.
3596
3597
  *
@@ -3724,7 +3725,7 @@ var Comparator = class Comparator extends effect.Schema.Class("Comparator")({
3724
3725
  }
3725
3726
  };
3726
3727
  //#endregion
3727
- //#region ../../node_modules/.pnpm/@effected+semver@0.3.0_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/normalize.js
3728
+ //#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/normalize.js
3728
3729
  const operatorWeight = (op) => {
3729
3730
  switch (op) {
3730
3731
  case ">=": return 0;
@@ -3755,7 +3756,7 @@ const normalizeComparatorSet = (set) => sortComparators(removeDuplicates(set));
3755
3756
  /** Normalize every comparator set in a range: sort and deduplicate each independently. */
3756
3757
  const normalizeSets = (sets) => sets.map(normalizeComparatorSet);
3757
3758
  //#endregion
3758
- //#region ../../node_modules/.pnpm/@effected+semver@0.3.0_effect@4.0.0-beta.101/node_modules/@effected/semver/Range.js
3759
+ //#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/Range.js
3759
3760
  /**
3760
3761
  * Indicates that a string could not be parsed as a range expression.
3761
3762
  *
@@ -4083,7 +4084,7 @@ const isComparatorSetSubset = (sub, sup) => {
4083
4084
  return true;
4084
4085
  };
4085
4086
  //#endregion
4086
- //#region ../../node_modules/.pnpm/@effected+npm@0.8.0_@effected+semver@0.3.0_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/DependencySpecifier.js
4087
+ //#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/DependencySpecifier.js
4087
4088
  /**
4088
4089
  * Indicates that a string could not be parsed as a valid dependency specifier.
4089
4090
  *
@@ -4290,7 +4291,7 @@ const DependencySpecifier = Object.assign(brandedSpecifier, {
4290
4291
  FromString: fromString
4291
4292
  });
4292
4293
  //#endregion
4293
- //#region ../../node_modules/.pnpm/@effected+npm@0.8.0_@effected+semver@0.3.0_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/IntegrityHash.js
4294
+ //#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/IntegrityHash.js
4294
4295
  const SRI_RE = /^(sha1|sha256|sha384|sha512)-[A-Za-z0-9+/]+={0,2}$/;
4295
4296
  const COREPACK_RE = /^(sha1|sha224|sha256|sha384|sha512)\.[0-9a-f]+$/;
4296
4297
  const YARN_RE = /^[0-9]+(c[0-9]+)?\/[0-9a-f]+$/;
@@ -4589,7 +4590,7 @@ var LocalExec = class LocalExec extends effect.Context.Service()("@effected/comm
4589
4590
  static layerTest = (overrides = {}) => effect.Layer.succeed(LocalExec, LocalExec.makeTest(overrides));
4590
4591
  };
4591
4592
  //#endregion
4592
- //#region ../../node_modules/.pnpm/@effected+npm@0.8.0_@effected+semver@0.3.0_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/ReleaseAgeGate.js
4593
+ //#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/ReleaseAgeGate.js
4593
4594
  const MS_PER_MINUTE = 6e4;
4594
4595
  /**
4595
4596
  * A source's partial contribution to a {@link ReleaseAgeGate}: the effective
@@ -4759,7 +4760,7 @@ var ReleaseAgeGate = class ReleaseAgeGate extends effect.Schema.Class("ReleaseAg
4759
4760
  }
4760
4761
  };
4761
4762
  //#endregion
4762
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/ImporterDependency.js
4763
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/ImporterDependency.js
4763
4764
  /**
4764
4765
  * One declared dependency of one workspace importer, as the lockfile records it.
4765
4766
  *
@@ -4797,7 +4798,7 @@ var ImporterDependency = class extends effect.Schema.Class("ImporterDependency")
4797
4798
  depType: DependencyField
4798
4799
  }) {};
4799
4800
  //#endregion
4800
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/LockfileImporter.js
4801
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/LockfileImporter.js
4801
4802
  /**
4802
4803
  * One workspace importer's declared dependencies, as the lockfile records them.
4803
4804
  *
@@ -4821,7 +4822,7 @@ var LockfileImporter = class extends effect.Schema.Class("LockfileImporter")({
4821
4822
  dependencies: effect.Schema.Array(ImporterDependency)
4822
4823
  }) {};
4823
4824
  //#endregion
4824
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/ResolvedPackage.js
4825
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/ResolvedPackage.js
4825
4826
  const EMPTY_DEPENDENCIES = {};
4826
4827
  /**
4827
4828
  * A package resolved from a lockfile.
@@ -4856,7 +4857,7 @@ var ResolvedPackage = class extends effect.Schema.Class("ResolvedPackage")({
4856
4857
  dependencies: effect.Schema.Record(effect.Schema.String, effect.Schema.String).pipe(effect.Schema.withDecodingDefaultKey(effect.Effect.succeed(EMPTY_DEPENDENCIES)), effect.Schema.withConstructorDefault(effect.Effect.succeed(EMPTY_DEPENDENCIES)))
4857
4858
  }) {};
4858
4859
  //#endregion
4859
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/WorkspaceDependency.js
4860
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/WorkspaceDependency.js
4860
4861
  /**
4861
4862
  * A directed dependency edge between two workspace packages as recorded in
4862
4863
  * the lockfile.
@@ -4878,7 +4879,7 @@ var WorkspaceDependency = class extends effect.Schema.Class("WorkspaceDependency
4878
4879
  constraint: effect.Schema.String
4879
4880
  }) {};
4880
4881
  //#endregion
4881
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/PnpmExtension.js
4882
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/PnpmExtension.js
4882
4883
  /**
4883
4884
  * Extension data specific to pnpm lockfiles, attached to `Lockfile.extension`
4884
4885
  * when the format is `"pnpm"`.
@@ -4903,7 +4904,7 @@ var PnpmExtension = class extends effect.Schema.Class("PnpmExtension")({
4903
4904
  }))
4904
4905
  }) {};
4905
4906
  //#endregion
4906
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/LockfileFormat.js
4907
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/LockfileFormat.js
4907
4908
  /**
4908
4909
  * The lockfile formats this package parses: bun's `bun.lock` (JSONC), npm's
4909
4910
  * `package-lock.json` (v2/v3 JSON), pnpm's `pnpm-lock.yaml` and yarn Berry's
@@ -4941,7 +4942,7 @@ const FILENAMES = {
4941
4942
  */
4942
4943
  const filenameFor = (format) => FILENAMES[format][0];
4943
4944
  //#endregion
4944
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/internal/shared.js
4945
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/shared.js
4945
4946
  /**
4946
4947
  * The four dependency sections of a manifest, in a stable order — the shared
4947
4948
  * dependency-sections table (v3's `DEP_SECTIONS`). Each entry is both the
@@ -5099,7 +5100,7 @@ const extractWorkspaceDeps = (workspaces, workspaceNames) => {
5099
5100
  return deps;
5100
5101
  };
5101
5102
  //#endregion
5102
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/JsoncNode.js
5103
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/JsoncNode.js
5103
5104
  /**
5104
5105
  * Discriminator values for JSONC AST node types: the JSON value types
5105
5106
  * (`string`/`number`/`boolean`/`null`), the structural types
@@ -5274,7 +5275,7 @@ function evaluateNode(node, depth) {
5274
5275
  }
5275
5276
  }
5276
5277
  //#endregion
5277
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/scanner.js
5278
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/scanner.js
5278
5279
  const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
5279
5280
  const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
5280
5281
  const isDigit$1 = (ch) => ch >= 48 && ch <= 57;
@@ -5568,7 +5569,7 @@ const createScanner$2 = (text, ignoreTrivia = false) => {
5568
5569
  };
5569
5570
  };
5570
5571
  //#endregion
5571
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/skip.js
5572
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/skip.js
5572
5573
  /**
5573
5574
  * Iteratively consume the value beginning at the cursor's current token and
5574
5575
  * return its tight end offset (excludes trailing whitespace/comments).
@@ -5598,7 +5599,7 @@ const skipBalancedValue = (cursor) => {
5598
5599
  return end;
5599
5600
  };
5600
5601
  //#endregion
5601
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/parser.js
5602
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/parser.js
5602
5603
  /**
5603
5604
  * The public parse-error code vocabulary. The facade builds its `@public`
5604
5605
  * `JsoncParseErrorCode` schema from this array; the parser produces these codes
@@ -6011,7 +6012,7 @@ const parseTree$2 = (text, flags) => {
6011
6012
  };
6012
6013
  };
6013
6014
  //#endregion
6014
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/Jsonc.js
6015
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/Jsonc.js
6015
6016
  /**
6016
6017
  * The single public parse-error code vocabulary, appearing as the `code` field
6017
6018
  * of {@link JsoncParseErrorDetail}.
@@ -6615,7 +6616,7 @@ var JsoncEdit = class extends effect.Schema.Class("JsoncEdit")({
6615
6616
  }
6616
6617
  };
6617
6618
  //#endregion
6618
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/navigate.js
6619
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/navigate.js
6619
6620
  /**
6620
6621
  * Resolve `path` against `text`, returning where the target is (or where it
6621
6622
  * would be inserted). `path` must be non-empty — the whole-document case is
@@ -6742,7 +6743,7 @@ function navigate(text, path) {
6742
6743
  return { _tag: "NoOp" };
6743
6744
  }
6744
6745
  //#endregion
6745
- //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/JsoncModifier.js
6746
+ //#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/JsoncModifier.js
6746
6747
  /**
6747
6748
  * Raised when `JsoncModifier.modify` cannot navigate the requested path: the
6748
6749
  * value at `depth` is not the container kind (`expected`) the next path segment
@@ -6870,7 +6871,7 @@ var JsoncModifier = class {
6870
6871
  });
6871
6872
  };
6872
6873
  //#endregion
6873
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/internal/bun.js
6874
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/bun.js
6874
6875
  const DepRecord$2 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
6875
6876
  const BunWorkspaceEntry = effect.Schema.Struct({
6876
6877
  name: effect.Schema.optionalKey(effect.Schema.String),
@@ -6963,7 +6964,7 @@ const toFields$3 = (raw) => effect.Effect.gen(function* () {
6963
6964
  };
6964
6965
  });
6965
6966
  //#endregion
6966
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/internal/npm.js
6967
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/npm.js
6967
6968
  const DepRecord$1 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
6968
6969
  const NpmPackageEntry = effect.Schema.Struct({
6969
6970
  name: effect.Schema.optionalKey(effect.Schema.String),
@@ -7061,7 +7062,7 @@ const toFields$2 = (raw) => effect.Effect.gen(function* () {
7061
7062
  };
7062
7063
  });
7063
7064
  //#endregion
7064
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/YamlNode.js
7065
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/YamlNode.js
7065
7066
  /**
7066
7067
  * YAML scalar presentation styles.
7067
7068
  *
@@ -7463,7 +7464,7 @@ function nodeToValue(node, anchors, budget, counting = false) {
7463
7464
  return null;
7464
7465
  }
7465
7466
  //#endregion
7466
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/diagnostics.js
7467
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/diagnostics.js
7467
7468
  /** Error codes emitted by the lexer stage. */
7468
7469
  const YAML_LEX_ERROR_CODES = [
7469
7470
  "UnexpectedCharacter",
@@ -7541,7 +7542,7 @@ function isFatalCode(code) {
7541
7542
  return FATAL_CODES.has(code);
7542
7543
  }
7543
7544
  //#endregion
7544
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/YamlDiagnostic.js
7545
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/YamlDiagnostic.js
7545
7546
  /**
7546
7547
  * Error codes emitted by the lexer stage.
7547
7548
  *
@@ -7662,7 +7663,7 @@ function lineChar(text, offset) {
7662
7663
  };
7663
7664
  }
7664
7665
  //#endregion
7665
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/anchors.js
7666
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/anchors.js
7666
7667
  /**
7667
7668
  * Check if a pending anchor is being applied to an alias node (invalid in YAML 1.2 §3.2.2).
7668
7669
  * Aliases represent references to existing anchored nodes and cannot have their own anchors.
@@ -7755,7 +7756,7 @@ function collectAnchors(node, anchors) {
7755
7756
  }
7756
7757
  }
7757
7758
  //#endregion
7758
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/lexer.js
7759
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/lexer.js
7759
7760
  /**
7760
7761
  * Create a new YAML scanner for the given source text.
7761
7762
  *
@@ -8712,7 +8713,7 @@ function lexAll(text) {
8712
8713
  return tokens;
8713
8714
  }
8714
8715
  //#endregion
8715
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/cst-parser.js
8716
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/cst-parser.js
8716
8717
  /**
8717
8718
  * Hardening: cap CST nesting so hostile inputs cannot overflow the stack
8718
8719
  * while the tree is being BUILT. Set slightly above the composer's
@@ -9424,7 +9425,7 @@ function parseCSTAll(text) {
9424
9425
  return parseDocuments(lexAll(text), text);
9425
9426
  }
9426
9427
  //#endregion
9427
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/state.js
9428
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/state.js
9428
9429
  let lineStartsText;
9429
9430
  let lineStartsCache = [];
9430
9431
  function getLineStarts(text) {
@@ -9530,7 +9531,7 @@ function exitNesting(state) {
9530
9531
  state.depth--;
9531
9532
  }
9532
9533
  //#endregion
9533
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/tags.js
9534
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/tags.js
9534
9535
  /**
9535
9536
  * Resolve a tag shorthand using the document's %TAG directives.
9536
9537
  * For example, with `%TAG !! tag:example.com,2000:app/`, the tag `!!int`
@@ -9616,7 +9617,7 @@ function validateTagHandlesInDocument(docCst, state) {
9616
9617
  }
9617
9618
  }
9618
9619
  //#endregion
9619
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/scalars.js
9620
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/scalars.js
9620
9621
  const NULL_RE$1 = /^(?:null|Null|NULL|~)$/;
9621
9622
  const TRUE_RE$1 = /^(?:true|True|TRUE)$/;
9622
9623
  const FALSE_RE$1 = /^(?:false|False|FALSE)$/;
@@ -10494,7 +10495,7 @@ function shouldPreserveRaw(rawValue, value) {
10494
10495
  return false;
10495
10496
  }
10496
10497
  //#endregion
10497
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/block.js
10498
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/block.js
10498
10499
  /**
10499
10500
  * Compose a block map from its CST children, with an optional external first key.
10500
10501
  *
@@ -11642,7 +11643,7 @@ function composeFlatBlockMap(children, startIdx, parentCst, state, externalFirst
11642
11643
  return map;
11643
11644
  }
11644
11645
  //#endregion
11645
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/flow.js
11646
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/flow.js
11646
11647
  /**
11647
11648
  * Validate that flow collection entries are separated by commas.
11648
11649
  *
@@ -12034,7 +12035,7 @@ function composeFlowSeqInner(cst, state, meta, parentBlockColumn) {
12034
12035
  return seq;
12035
12036
  }
12036
12037
  //#endregion
12037
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/document.js
12038
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/document.js
12038
12039
  /** The flow-composer dispatch wired into every state this module creates. */
12039
12040
  const FLOW = {
12040
12041
  composeFlowMap,
@@ -12700,7 +12701,7 @@ function composeAllDocuments(text, options) {
12700
12701
  };
12701
12702
  }
12702
12703
  //#endregion
12703
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/fold.js
12704
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/fold.js
12704
12705
  /**
12705
12706
  * Column-based line folding for a single logical scalar line (YAML 1.2 flow
12706
12707
  * folding, §7.3 / §8.2.1). Breaks the content at "safe" single-space
@@ -12936,7 +12937,7 @@ function renderBlockFolded(s, indent) {
12936
12937
  return `>${indentIndicator}${chomp}\n${outputLines.join("\n")}`;
12937
12938
  }
12938
12939
  //#endregion
12939
- //#region ../../node_modules/.pnpm/@effected+yaml@0.6.0_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/stringifier.js
12940
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/stringifier.js
12940
12941
  /**
12941
12942
  * Thrown by the stringifier on its failure paths (circular references). The
12942
12943
  * facade catches this and materializes the public stringify error.
@@ -13885,7 +13886,7 @@ function deepEqualValues(a, b) {
13885
13886
  return false;
13886
13887
  }
13887
13888
  //#endregion
13888
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/internal/documents.js
13889
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/documents.js
13889
13890
  /**
13890
13891
  * An empty YAML document composes to `null` (`Yaml.parseAll("")` is `[null]`,
13891
13892
  * and the trailing document of an env-only `pnpm-lock.yaml` is `null` too).
@@ -13955,7 +13956,7 @@ const selectSoleDocument = (content) => effect.Effect.gen(function* () {
13955
13956
  };
13956
13957
  });
13957
13958
  //#endregion
13958
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/internal/pnpm.js
13959
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/pnpm.js
13959
13960
  const PnpmImporterDeps = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.Struct({
13960
13961
  specifier: effect.Schema.String,
13961
13962
  version: effect.Schema.String
@@ -14080,7 +14081,7 @@ const toFields$1 = (raw) => effect.Effect.gen(function* () {
14080
14081
  };
14081
14082
  });
14082
14083
  //#endregion
14083
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/internal/yarn.js
14084
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/yarn.js
14084
14085
  const YarnLockfileRaw = effect.Schema.Record(effect.Schema.String, effect.Schema.Unknown);
14085
14086
  const DepRecord = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
14086
14087
  const YarnEntry = effect.Schema.Struct({
@@ -14203,7 +14204,7 @@ const cleanYarnDeps = (deps) => {
14203
14204
  return Object.fromEntries(Object.entries(deps).map(([name, value]) => [name, value.startsWith("npm:") ? value.slice(4) : value]));
14204
14205
  };
14205
14206
  //#endregion
14206
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/Lockfile.js
14207
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/Lockfile.js
14207
14208
  const EMPTY_IMPORTERS = [];
14208
14209
  /**
14209
14210
  * Failure of `Lockfile.parse`: the given content is not a valid lockfile of
@@ -14447,7 +14448,7 @@ var Lockfile = class Lockfile extends effect.Schema.Class("Lockfile")({
14447
14448
  }
14448
14449
  };
14449
14450
  //#endregion
14450
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.0_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0._6d3ff0eb8f85b9388aafe615e49a1bcb/node_modules/@effected/lockfiles/LockfileIntegrity.js
14451
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/LockfileIntegrity.js
14451
14452
  /**
14452
14453
  * The minimal manifest shape {@link LockfileIntegrity.compare} checks a
14453
14454
  * lockfile against: a package name plus the four optional dependency maps.
@@ -14563,7 +14564,7 @@ var LockfileIntegrity = class LockfileIntegrity extends effect.Schema.Class("Loc
14563
14564
  }
14564
14565
  };
14565
14566
  //#endregion
14566
- //#region ../../node_modules/.pnpm/@effected+package-json@0.7.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/Dependency.js
14567
+ //#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/Dependency.js
14567
14568
  /**
14568
14569
  * A resolved dependency entry pairing a package name with its version
14569
14570
  * specifier and the `kind` of map it came from (`@effected/npm`'s
@@ -14627,7 +14628,7 @@ var Dependency = class extends effect.Schema.Class("Dependency")({
14627
14628
  }
14628
14629
  };
14629
14630
  //#endregion
14630
- //#region ../../node_modules/.pnpm/@effected+package-json@0.7.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/DevEngines.js
14631
+ //#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/DevEngines.js
14631
14632
  /**
14632
14633
  * A single `devEngines` constraint with a name and optional `version` / `onFail`.
14633
14634
  *
@@ -14665,7 +14666,7 @@ const DevEnginesSchema = effect.Schema.Struct({
14665
14666
  libc: effect.Schema.optionalKey(DevEngineOrArray)
14666
14667
  });
14667
14668
  //#endregion
14668
- //#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/licenseIds.js
14669
+ //#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/licenseIds.js
14669
14670
  /** @internal */
14670
14671
  const ACTIVE_LICENSE_IDS = [
14671
14672
  "0BSD",
@@ -15398,7 +15399,7 @@ const LICENSE_IDS = new Set(ACTIVE_LICENSE_IDS);
15398
15399
  /** @internal */
15399
15400
  const DEPRECATED_LICENSE_IDS = new Set(DEPRECATED_LICENSE_ID_LIST);
15400
15401
  //#endregion
15401
- //#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/License.js
15402
+ //#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/License.js
15402
15403
  /**
15403
15404
  * Indicates that a string is not a valid SPDX expression fragment: an
15404
15405
  * unrecognized license or exception identifier, or a malformed
@@ -15567,7 +15568,7 @@ var License = class License extends effect.Schema.Class("License")({
15567
15568
  }
15568
15569
  };
15569
15570
  //#endregion
15570
- //#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/exceptions.js
15571
+ //#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/exceptions.js
15571
15572
  /** @internal */
15572
15573
  const ACTIVE_EXCEPTION_IDS = [
15573
15574
  "389-exception",
@@ -15644,7 +15645,7 @@ const EXCEPTION_IDS = new Set(ACTIVE_EXCEPTION_IDS);
15644
15645
  /** @internal */
15645
15646
  const DEPRECATED_EXCEPTION_IDS = new Set(DEPRECATED_EXCEPTION_ID_LIST);
15646
15647
  //#endregion
15647
- //#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/LicenseException.js
15648
+ //#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/LicenseException.js
15648
15649
  /**
15649
15650
  * A validated SPDX license-exception identifier: an Effect `Schema.Class` whose
15650
15651
  * `id` is a member of the SPDX exception list. The class doubles as its own
@@ -15764,7 +15765,7 @@ var LicenseException = class LicenseException extends effect.Schema.Class("Licen
15764
15765
  }
15765
15766
  };
15766
15767
  //#endregion
15767
- //#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/parser.js
15768
+ //#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/parser.js
15768
15769
  const TOKEN_OPEN_PAREN = 0;
15769
15770
  const TOKEN_CLOSE_PAREN = 1;
15770
15771
  const TOKEN_PLUS = 2;
@@ -15993,7 +15994,7 @@ function parse$2(input) {
15993
15994
  return node;
15994
15995
  }
15995
15996
  //#endregion
15996
- //#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/SpdxExpression.js
15997
+ //#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/SpdxExpression.js
15997
15998
  /**
15998
15999
  * Serialize a tagged SPDX AST node — a class instance OR its encoded POJO — to
15999
16000
  * the canonical, fully-parenthesized SPDX string. This is the single source of
@@ -16182,7 +16183,7 @@ effect.Schema.String.pipe(effect.Schema.decodeTo(SpdxExpressionUnion, effect.Sch
16182
16183
  encode: (expression) => effect.Effect.succeed(serialize$1(expression))
16183
16184
  })));
16184
16185
  //#endregion
16185
- //#region ../../node_modules/.pnpm/@effected+package-json@0.7.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/License.js
16186
+ //#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/License.js
16186
16187
  /**
16187
16188
  * Indicates that a string is not a valid SPDX license identifier or expression.
16188
16189
  *
@@ -16217,7 +16218,7 @@ const isValidSpdx = (value) => {
16217
16218
  */
16218
16219
  const SpdxLicense = effect.Schema.String.pipe(effect.Schema.check(effect.Schema.makeFilter((value) => isValidSpdx(value) ? void 0 : "Expected a valid SPDX license expression")), effect.Schema.brand("SpdxLicense"));
16219
16220
  //#endregion
16220
- //#region ../../node_modules/.pnpm/@effected+package-json@0.7.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/PackageManager.js
16221
+ //#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/PackageManager.js
16221
16222
  const PACKAGE_MANAGER_NAME_RE = /^[a-z]+$/;
16222
16223
  const invalid$1 = (input, message) => effect.Effect.fail(new effect.SchemaIssue.InvalidValue(effect.Option.some(input), { message }));
16223
16224
  /**
@@ -16328,7 +16329,7 @@ var PackageManager = class PackageManager extends effect.Schema.Class("PackageMa
16328
16329
  }
16329
16330
  };
16330
16331
  //#endregion
16331
- //#region ../../node_modules/.pnpm/@effected+package-json@0.7.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/PackageName.js
16332
+ //#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/PackageName.js
16332
16333
  /**
16333
16334
  * Indicates that a string could not be used as a valid npm package name.
16334
16335
  *
@@ -16386,7 +16387,7 @@ const PackageName = Object.assign(effect.Schema.Union([ScopedPackageName, Unscop
16386
16387
  isScoped
16387
16388
  });
16388
16389
  //#endregion
16389
- //#region ../../node_modules/.pnpm/@effected+package-json@0.7.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/Person.js
16390
+ //#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/Person.js
16390
16391
  const parsePersonString = (input) => {
16391
16392
  const emailMatch = input.match(/<([^>]+)>/);
16392
16393
  const urlMatch = input.match(/\(([^)]+)\)/);
@@ -16532,7 +16533,7 @@ var Person = class Person extends effect.Schema.Class("Person")({
16532
16533
  }
16533
16534
  };
16534
16535
  //#endregion
16535
- //#region ../../node_modules/.pnpm/@effected+package-json@0.7.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/Repository.js
16536
+ //#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/Repository.js
16536
16537
  /** The shorthand hosts npm resolves without a scheme. */
16537
16538
  const SHORTHAND_HOSTS = /* @__PURE__ */ new Map([
16538
16539
  ["github", "https://github.com"],
@@ -16707,7 +16708,7 @@ var Bugs = class Bugs extends effect.Schema.Class("Bugs")({
16707
16708
  })));
16708
16709
  };
16709
16710
  //#endregion
16710
- //#region ../../node_modules/.pnpm/@effected+package-json@0.7.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/internal/format.js
16711
+ //#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/internal/format.js
16711
16712
  const KEY_INDEX = new Map([
16712
16713
  "$schema",
16713
16714
  "name",
@@ -16930,7 +16931,7 @@ const renderJson = (raw, options) => {
16930
16931
  return options.newline ? `${json}\n` : json;
16931
16932
  };
16932
16933
  //#endregion
16933
- //#region ../../node_modules/.pnpm/@effected+package-json@0.7.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/Package.js
16934
+ //#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/Package.js
16934
16935
  const toHashMap = effect.SchemaTransformation.transform({
16935
16936
  decode: (record) => effect.HashMap.fromIterable(Object.entries(record)),
16936
16937
  encode: (map) => Object.fromEntries(effect.HashMap.toEntries(map))
@@ -17246,7 +17247,7 @@ var Package = class Package extends effect.Schema.Class("Package")({
17246
17247
  }
17247
17248
  };
17248
17249
  //#endregion
17249
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspacePackage.js
17250
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspacePackage.js
17250
17251
  const EMPTY$1 = Object.freeze(Object.create(null));
17251
17252
  const EMPTY_MANIFEST = Object.freeze(Object.create(null));
17252
17253
  /**
@@ -17525,7 +17526,7 @@ var WorkspacePackage = class WorkspacePackage extends effect.Schema.Class("Works
17525
17526
  }
17526
17527
  };
17527
17528
  //#endregion
17528
- //#region ../../node_modules/.pnpm/@effected+walker@0.3.3_@effected+glob@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Descend.js
17529
+ //#region ../../node_modules/.pnpm/@effected+walker@0.3.4_@effected+glob@0.2.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Descend.js
17529
17530
  /**
17530
17531
  * Typed failure raised by {@link descend}: a directory mid-walk was unreadable
17531
17532
  * (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
@@ -17660,7 +17661,7 @@ const descend = effect.Effect.fn("Walker.descend")(function* (pattern, options)
17660
17661
  return results;
17661
17662
  });
17662
17663
  //#endregion
17663
- //#region ../../node_modules/.pnpm/@effected+walker@0.3.3_@effected+glob@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Expand.js
17664
+ //#region ../../node_modules/.pnpm/@effected+walker@0.3.4_@effected+glob@0.2.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Expand.js
17664
17665
  /**
17665
17666
  * Typed failure raised by {@link compileAndExpand}: the single error the
17666
17667
  * compile+expand recipe fails with, so a caller catches one tag rather than
@@ -17750,7 +17751,7 @@ const compileAndExpand = effect.Effect.fn("Walker.compileAndExpand")(function* (
17750
17751
  })));
17751
17752
  });
17752
17753
  //#endregion
17753
- //#region ../../node_modules/.pnpm/@effected+walker@0.3.3_@effected+glob@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Walker.js
17754
+ //#region ../../node_modules/.pnpm/@effected+walker@0.3.4_@effected+glob@0.2.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Walker.js
17754
17755
  const ascend = (start, options) => effect.Effect.gen(function* () {
17755
17756
  const path = yield* effect.Path.Path;
17756
17757
  const maxDepth = options?.maxDepth ?? 256;
@@ -17844,7 +17845,7 @@ var Walker$1 = class {
17844
17845
  static findRoot = findRoot$1;
17845
17846
  };
17846
17847
  //#endregion
17847
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceRoot.js
17848
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceRoot.js
17848
17849
  /**
17849
17850
  * The marker filenames {@link WorkspaceRoot} probes for, in priority order.
17850
17851
  *
@@ -18031,7 +18032,7 @@ var WorkspaceRoot = class WorkspaceRoot extends effect.Context.Service()("@effec
18031
18032
  static layerTest = (root) => effect.Layer.effect(WorkspaceRoot, WorkspaceRoot.makeTest(root)).pipe(effect.Layer.provide(effect.Path.layer));
18032
18033
  };
18033
18034
  //#endregion
18034
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/limits.js
18035
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/limits.js
18035
18036
  /**
18036
18037
  * Hard ceiling on directories the enumerator will visit for one pattern set.
18037
18038
  * Guards the pathological case a depth cap alone does not: a wide, shallow
@@ -18049,7 +18050,7 @@ const MAX_ENUMERATION_ENTRIES = 1e5;
18049
18050
  */
18050
18051
  const PRUNED_DIRECTORIES = /* @__PURE__ */ new Set([".git", "node_modules"]);
18051
18052
  //#endregion
18052
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/traverse.js
18053
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/traverse.js
18053
18054
  /** Directory names never descended into. */
18054
18055
  const isPruned = (entry) => PRUNED_DIRECTORIES.has(entry);
18055
18056
  /** Join root-relative POSIX segments; `""` is the root itself. */
@@ -18139,7 +18140,7 @@ var Traversal = class {
18139
18140
  }
18140
18141
  };
18141
18142
  //#endregion
18142
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/enumerate.js
18143
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/enumerate.js
18143
18144
  /** Strip a trailing slash from `GlobPattern.enumerationPrefix` to get a relative directory. */
18144
18145
  const baseOf = (pattern) => pattern.enumerationPrefix.replace(/\/$/, "");
18145
18146
  /**
@@ -18209,7 +18210,7 @@ const enumerate = (root, globs, options) => effect.Effect.gen(function* () {
18209
18210
  return results;
18210
18211
  });
18211
18212
  //#endregion
18212
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/patterns.js
18213
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/patterns.js
18213
18214
  const stringsOf = (value) => Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : void 0;
18214
18215
  /** The `packages:` list of a `pnpm-workspace.yaml` document. Total on a parsed document. */
18215
18216
  const pnpmPatternsOf = (document) => {
@@ -18266,7 +18267,7 @@ const readPatterns = (root) => effect.Effect.gen(function* () {
18266
18267
  return manifestPatternsOf(manifest);
18267
18268
  });
18268
18269
  //#endregion
18269
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceDiscovery.js
18270
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceDiscovery.js
18270
18271
  /**
18271
18272
  * Raised when a workspace member's `package.json` cannot be read, parsed, or
18272
18273
  * used — it is missing, malformed, or lacks a `name` or `version`.
@@ -18704,7 +18705,7 @@ var WorkspaceDiscovery = class WorkspaceDiscovery extends effect.Context.Service
18704
18705
  };
18705
18706
  const isStringRecord$2 = (value) => value !== null && typeof value === "object" && !Array.isArray(value) && Object.values(value).every((entry) => typeof entry === "string");
18706
18707
  //#endregion
18707
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/DependencyGraph.js
18708
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/DependencyGraph.js
18708
18709
  /**
18709
18710
  * Raised when the workspace dependency graph cannot be topologically ordered
18710
18711
  * because it contains a cycle.
@@ -18937,7 +18938,7 @@ const kahn = (edges) => {
18937
18938
  };
18938
18939
  };
18939
18940
  //#endregion
18940
- //#region ../../node_modules/.pnpm/@effected+git@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/git/GitCommand.js
18941
+ //#region ../../node_modules/.pnpm/@effected+git@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/git/GitCommand.js
18941
18942
  /**
18942
18943
  * Builds a `git` `ChildProcess.StandardCommand` with the argv this package
18943
18944
  * classifies against.
@@ -19309,7 +19310,7 @@ var GitCommand = class {
19309
19310
  static status = status;
19310
19311
  };
19311
19312
  //#endregion
19312
- //#region ../../node_modules/.pnpm/@effected+git@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/git/internal/run.js
19313
+ //#region ../../node_modules/.pnpm/@effected+git@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/git/internal/run.js
19313
19314
  /**
19314
19315
  * Spawns `command` and collects its stdout, stderr, and exit code as a single
19315
19316
  * triple.
@@ -19336,7 +19337,7 @@ const runCollected = (command) => effect.Effect.scoped(effect.Effect.gen(functio
19336
19337
  };
19337
19338
  }));
19338
19339
  //#endregion
19339
- //#region ../../node_modules/.pnpm/@effected+git@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/git/Git.js
19340
+ //#region ../../node_modules/.pnpm/@effected+git@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/git/Git.js
19340
19341
  /** git's own ceiling: a run that has not answered in 30s is not going to. */
19341
19342
  const GIT_TIMEOUT = effect.Duration.seconds(30);
19342
19343
  /**
@@ -20346,7 +20347,7 @@ var Git = class Git extends effect.Context.Service()("@effected/git/Git") {
20346
20347
  static layerTest = (overrides = {}) => effect.Layer.succeed(Git, Git.makeTest(overrides));
20347
20348
  };
20348
20349
  //#endregion
20349
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/ChangeDetector.js
20350
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/ChangeDetector.js
20350
20351
  /**
20351
20352
  * Which git refs to compare, and whether to fold in the working tree.
20352
20353
  *
@@ -20598,7 +20599,7 @@ function resolveFromCatalog(catalogs, wantedDependency) {
20598
20599
  };
20599
20600
  }
20600
20601
  //#endregion
20601
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/catalogs.js
20602
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/catalogs.js
20602
20603
  /** Project a pnpm-workspace manifest's `catalog` / `catalogs` fields into a `Catalogs` map. */
20603
20604
  const inlineCatalogs = (manifest) => {
20604
20605
  if (manifest.catalog === void 0 && manifest.catalogs === void 0) return {};
@@ -20662,7 +20663,7 @@ const rangeOf = (catalogs, dependency, specifier) => {
20662
20663
  });
20663
20664
  };
20664
20665
  //#endregion
20665
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/ConfigDependencyHooks.js
20666
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/ConfigDependencyHooks.js
20666
20667
  /** Whether `value` is a non-null, non-array object. */
20667
20668
  const isObject$2 = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
20668
20669
  /**
@@ -20849,7 +20850,7 @@ var ConfigDependencyHooks = class ConfigDependencyHooks extends effect.Context.S
20849
20850
  }) });
20850
20851
  };
20851
20852
  //#endregion
20852
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/PackageManagerName.js
20853
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/PackageManagerName.js
20853
20854
  /**
20854
20855
  * The four package managers this package understands.
20855
20856
  *
@@ -21177,7 +21178,7 @@ var PackageManagerDetector = class PackageManagerDetector extends effect.Context
21177
21178
  static layerTest = (overrides = {}) => effect.Layer.succeed(PackageManagerDetector, PackageManagerDetector.makeTest(overrides));
21178
21179
  };
21179
21180
  //#endregion
21180
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/LockfileReader.js
21181
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/LockfileReader.js
21181
21182
  /**
21182
21183
  * Raised when the workspace's lockfile cannot be read off disk.
21183
21184
  *
@@ -21357,7 +21358,7 @@ var LockfileReader = class LockfileReader extends effect.Context.Service()("@eff
21357
21358
  static layerTest = (overrides = {}) => effect.Layer.succeed(LockfileReader, LockfileReader.makeTest(overrides));
21358
21359
  };
21359
21360
  //#endregion
21360
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/Publishability.js
21361
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/Publishability.js
21361
21362
  /** The public npm registry, used when `publishConfig.registry` says nothing. */
21362
21363
  const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
21363
21364
  /**
@@ -21516,7 +21517,7 @@ var PublishabilityDetector = class extends effect.Context.Service()("@effected/w
21516
21517
  static layerNone = effect.Layer.succeed(this, this.none);
21517
21518
  };
21518
21519
  //#endregion
21519
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/importerVersions.js
21520
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/importerVersions.js
21520
21521
  /**
21521
21522
  * Strip pnpm's peer-disambiguation suffix from a recorded importer version.
21522
21523
  *
@@ -21602,7 +21603,7 @@ const unanimousVersionOf = (index, dependency) => {
21602
21603
  return agreed;
21603
21604
  };
21604
21605
  //#endregion
21605
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceCatalogs.js
21606
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceCatalogs.js
21606
21607
  /**
21607
21608
  * An immutable, fully-normalized catalog collection — the one catalog
21608
21609
  * resolution semantic in the package.
@@ -22111,7 +22112,7 @@ var WorkspaceCatalogs = class WorkspaceCatalogs extends effect.Context.Service()
22111
22112
  }));
22112
22113
  };
22113
22114
  //#endregion
22114
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceStateSnapshot.js
22115
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceStateSnapshot.js
22115
22116
  const EMPTY = Object.freeze(Object.create(null));
22116
22117
  const DependencyMap = effect.Schema.Record(effect.Schema.String, effect.Schema.String).pipe(effect.Schema.withDecodingDefaultKey(effect.Effect.succeed(EMPTY)), effect.Schema.withConstructorDefault(effect.Effect.succeed(EMPTY)));
22117
22118
  /**
@@ -22334,7 +22335,7 @@ var WorkspaceStateSnapshot = class extends effect.Schema.Class("WorkspaceStateSn
22334
22335
  }
22335
22336
  };
22336
22337
  //#endregion
22337
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceSnapshots.js
22338
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceSnapshots.js
22338
22339
  /** Whether `value` is a non-null, non-array object. */
22339
22340
  const isObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
22340
22341
  /** Whether every value in a record is a string — a usable dependency map. */
@@ -22611,7 +22612,7 @@ var WorkspaceSnapshots = class WorkspaceSnapshots extends effect.Context.Service
22611
22612
  static layerTest = (overrides = {}) => effect.Layer.succeed(WorkspaceSnapshots, WorkspaceSnapshots.makeTest(overrides));
22612
22613
  };
22613
22614
  //#endregion
22614
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.3_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/Workspaces.js
22615
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/Workspaces.js
22615
22616
  const compose = (options, catalogsFactory) => {
22616
22617
  const roots = WorkspaceRoot.layer;
22617
22618
  const detector = PackageManagerDetector.layer;