@savvy-web/silk 3.7.8 → 3.7.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changesets-changelog.cjs +107 -107
- package/changesets-changelog.d.cts +8 -8
- package/changesets-changelog.d.ts +8 -8
- package/changesets-changelog.js +110 -110
- package/changesets-markdownlint.cjs +107 -107
- package/changesets-markdownlint.d.cts +8 -8
- package/changesets-markdownlint.d.ts +8 -8
- package/changesets-markdownlint.js +110 -110
- package/package.json +6 -6
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -1
package/changesets-changelog.cjs
CHANGED
|
@@ -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.
|
|
402
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/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.
|
|
436
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/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.
|
|
459
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/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.
|
|
463
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/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.
|
|
481
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/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.
|
|
487
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/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.
|
|
610
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/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.
|
|
1127
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/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.
|
|
1185
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/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.
|
|
1332
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/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);
|
|
@@ -1902,7 +1902,7 @@ var Minimatch = class {
|
|
|
1902
1902
|
}
|
|
1903
1903
|
};
|
|
1904
1904
|
//#endregion
|
|
1905
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
1905
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/GlobPattern.js
|
|
1906
1906
|
/**
|
|
1907
1907
|
* Typed failure raised when a glob pattern trips a compile-time guard:
|
|
1908
1908
|
* over-length, brace-expansion budget exhaustion, or nesting past the depth
|
|
@@ -2181,7 +2181,7 @@ var GlobPattern = class GlobPattern extends effect.Schema.Class("GlobPattern")(e
|
|
|
2181
2181
|
})));
|
|
2182
2182
|
};
|
|
2183
2183
|
//#endregion
|
|
2184
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
2184
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/GlobSet.js
|
|
2185
2185
|
const exclusionTarget = (pattern) => pattern.startsWith("!") ? pattern.slice(1) : void 0;
|
|
2186
2186
|
const allCompileUnderDefaults = (patterns) => {
|
|
2187
2187
|
for (const pattern of patterns) {
|
|
@@ -2335,7 +2335,7 @@ var GlobSet = class GlobSet extends effect.Schema.Class("GlobSet")(effect.Schema
|
|
|
2335
2335
|
}
|
|
2336
2336
|
};
|
|
2337
2337
|
//#endregion
|
|
2338
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
2338
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/BunExtension.js
|
|
2339
2339
|
/**
|
|
2340
2340
|
* Extension data specific to bun lockfiles, attached to `Lockfile.extension`
|
|
2341
2341
|
* when the format is `"bun"`.
|
|
@@ -2356,7 +2356,7 @@ var BunExtension = class extends effect.Schema.Class("BunExtension")({
|
|
|
2356
2356
|
trustedDependencies: effect.Schema.optionalKey(effect.Schema.Array(effect.Schema.String))
|
|
2357
2357
|
}) {};
|
|
2358
2358
|
//#endregion
|
|
2359
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2359
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.10.0_@effected+semver@0.5.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/npm/CatalogResolver.js
|
|
2360
2360
|
/**
|
|
2361
2361
|
* Contract for resolving pnpm `catalog:` dependency specifiers to concrete
|
|
2362
2362
|
* version ranges.
|
|
@@ -2402,7 +2402,7 @@ var CatalogResolver = class CatalogResolver extends effect.Context.Service()("@e
|
|
|
2402
2402
|
static noop = effect.Layer.succeed(CatalogResolver, { rangeOf: () => effect.Effect.succeed(effect.Option.none()) });
|
|
2403
2403
|
};
|
|
2404
2404
|
//#endregion
|
|
2405
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2405
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.10.0_@effected+semver@0.5.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/npm/WorkspaceResolver.js
|
|
2406
2406
|
/**
|
|
2407
2407
|
* Raised when a `catalog:` or `workspace:` specifier cannot be resolved
|
|
2408
2408
|
* because the resolution mechanism itself failed — not for an ordinary
|
|
@@ -2463,7 +2463,7 @@ var WorkspaceResolver = class WorkspaceResolver extends effect.Context.Service()
|
|
|
2463
2463
|
static noop = effect.Layer.succeed(WorkspaceResolver, { versionOf: () => effect.Effect.succeed(effect.Option.none()) });
|
|
2464
2464
|
};
|
|
2465
2465
|
//#endregion
|
|
2466
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2466
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.10.0_@effected+semver@0.5.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/npm/CatalogAssemblyError.js
|
|
2467
2467
|
/**
|
|
2468
2468
|
* Raised when a workspace's catalogs cannot be assembled — a `pnpm-workspace.yaml`
|
|
2469
2469
|
* that is unreadable or not valid YAML, a root `package.json` `workspaces` field
|
|
@@ -2507,7 +2507,7 @@ var CatalogAssemblyError = class extends effect.Schema.TaggedError()("CatalogAss
|
|
|
2507
2507
|
}
|
|
2508
2508
|
};
|
|
2509
2509
|
//#endregion
|
|
2510
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2510
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.10.0_@effected+semver@0.5.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/npm/DependencySection.js
|
|
2511
2511
|
/**
|
|
2512
2512
|
* The short dependency kind: which dependency map an entry came from, named the
|
|
2513
2513
|
* way consumers branch on it.
|
|
@@ -2539,7 +2539,7 @@ Object.fromEntries(Object.entries({
|
|
|
2539
2539
|
optional: "optionalDependencies"
|
|
2540
2540
|
}).map(([kind, field]) => [field, kind]));
|
|
2541
2541
|
//#endregion
|
|
2542
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
2542
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/desugar.js
|
|
2543
2543
|
const sv = (major, minor, patch, prerelease = [], build = []) => ({
|
|
2544
2544
|
major,
|
|
2545
2545
|
minor,
|
|
@@ -2628,7 +2628,7 @@ const desugarHyphen = (lower, upper) => {
|
|
|
2628
2628
|
return [comp(">=", lowerVersion)];
|
|
2629
2629
|
};
|
|
2630
2630
|
//#endregion
|
|
2631
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
2631
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/grammar.js
|
|
2632
2632
|
/** Private control-flow exception; never escapes the entry points. */
|
|
2633
2633
|
var ParseFailure = class {
|
|
2634
2634
|
position;
|
|
@@ -3028,7 +3028,7 @@ const formatComparator = (c) => {
|
|
|
3028
3028
|
/** Print comparator sets as `a b || c d`. */
|
|
3029
3029
|
const formatRange = (sets) => sets.map((set) => set.map(formatComparator).join(" ")).join(" || ");
|
|
3030
3030
|
//#endregion
|
|
3031
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3031
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/order.js
|
|
3032
3032
|
/**
|
|
3033
3033
|
* Compare two prerelease identifiers per SemVer 2.0.0 §11: numeric
|
|
3034
3034
|
* identifiers always have lower precedence than alphanumeric ones; numerics
|
|
@@ -3081,7 +3081,7 @@ const compareBuild = (a, b) => {
|
|
|
3081
3081
|
return 0;
|
|
3082
3082
|
};
|
|
3083
3083
|
//#endregion
|
|
3084
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3084
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/SemVer.js
|
|
3085
3085
|
/**
|
|
3086
3086
|
* Indicates that a string could not be parsed as a valid SemVer 2.0.0 version.
|
|
3087
3087
|
*
|
|
@@ -3592,7 +3592,7 @@ var SemVerBump = class {
|
|
|
3592
3592
|
}
|
|
3593
3593
|
};
|
|
3594
3594
|
//#endregion
|
|
3595
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3595
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/Comparator.js
|
|
3596
3596
|
/**
|
|
3597
3597
|
* Indicates that a string could not be parsed as a single comparator.
|
|
3598
3598
|
*
|
|
@@ -3726,7 +3726,7 @@ var Comparator = class Comparator extends effect.Schema.Class("Comparator")({
|
|
|
3726
3726
|
}
|
|
3727
3727
|
};
|
|
3728
3728
|
//#endregion
|
|
3729
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3729
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/normalize.js
|
|
3730
3730
|
const operatorWeight = (op) => {
|
|
3731
3731
|
switch (op) {
|
|
3732
3732
|
case ">=": return 0;
|
|
@@ -3757,7 +3757,7 @@ const normalizeComparatorSet = (set) => sortComparators(removeDuplicates(set));
|
|
|
3757
3757
|
/** Normalize every comparator set in a range: sort and deduplicate each independently. */
|
|
3758
3758
|
const normalizeSets = (sets) => sets.map(normalizeComparatorSet);
|
|
3759
3759
|
//#endregion
|
|
3760
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3760
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/Range.js
|
|
3761
3761
|
/**
|
|
3762
3762
|
* Indicates that a string could not be parsed as a range expression.
|
|
3763
3763
|
*
|
|
@@ -4122,7 +4122,7 @@ const isComparatorSetSubset = (sub, sup) => {
|
|
|
4122
4122
|
return true;
|
|
4123
4123
|
};
|
|
4124
4124
|
//#endregion
|
|
4125
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
4125
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.10.0_@effected+semver@0.5.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/npm/DependencySpecifier.js
|
|
4126
4126
|
/**
|
|
4127
4127
|
* Indicates that a string could not be parsed as a valid dependency specifier.
|
|
4128
4128
|
*
|
|
@@ -4329,7 +4329,7 @@ const DependencySpecifier = Object.assign(brandedSpecifier, {
|
|
|
4329
4329
|
FromString: fromString
|
|
4330
4330
|
});
|
|
4331
4331
|
//#endregion
|
|
4332
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
4332
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.10.0_@effected+semver@0.5.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/npm/IntegrityHash.js
|
|
4333
4333
|
const SRI_RE = /^(sha1|sha256|sha384|sha512)-[A-Za-z0-9+/]+={0,2}$/;
|
|
4334
4334
|
const COREPACK_RE = /^(sha1|sha224|sha256|sha384|sha512)\.[0-9a-f]+$/;
|
|
4335
4335
|
const YARN_RE = /^[0-9]+(c[0-9]+)?\/[0-9a-f]+$/;
|
|
@@ -4628,7 +4628,7 @@ var LocalExec = class LocalExec extends effect.Context.Service()("@effected/comm
|
|
|
4628
4628
|
static layerTest = (overrides = {}) => effect.Layer.succeed(LocalExec, LocalExec.makeTest(overrides));
|
|
4629
4629
|
};
|
|
4630
4630
|
//#endregion
|
|
4631
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.
|
|
4631
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/commands/Redaction.js
|
|
4632
4632
|
/**
|
|
4633
4633
|
* Argument tokens whose *following* positional (or `=`-joined value) is a
|
|
4634
4634
|
* secret. Lowercase; matching is case-insensitive.
|
|
@@ -4751,7 +4751,7 @@ var Redaction = class {
|
|
|
4751
4751
|
static SECRET_FLAGS = SECRET_FLAGS;
|
|
4752
4752
|
};
|
|
4753
4753
|
//#endregion
|
|
4754
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.
|
|
4754
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/commands/internal/capture.js
|
|
4755
4755
|
/**
|
|
4756
4756
|
* Raised when a captured stream exceeds its byte budget.
|
|
4757
4757
|
*
|
|
@@ -4778,7 +4778,7 @@ const collectBounded = (stream, limit) => effect.Effect.gen(function* () {
|
|
|
4778
4778
|
return yield* effect.Stream.mkString(effect.Stream.decodeText(bounded));
|
|
4779
4779
|
});
|
|
4780
4780
|
//#endregion
|
|
4781
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.
|
|
4781
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/commands/Run.js
|
|
4782
4782
|
/**
|
|
4783
4783
|
* Default ceiling on captured bytes per stream (16 MiB).
|
|
4784
4784
|
*
|
|
@@ -5299,7 +5299,7 @@ var Run = class {
|
|
|
5299
5299
|
static REDACTED = "***";
|
|
5300
5300
|
};
|
|
5301
5301
|
//#endregion
|
|
5302
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
5302
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.10.0_@effected+semver@0.5.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/npm/ReleaseAgeGate.js
|
|
5303
5303
|
const MS_PER_MINUTE = 6e4;
|
|
5304
5304
|
/**
|
|
5305
5305
|
* A source's partial contribution to a {@link ReleaseAgeGate}: the effective
|
|
@@ -5469,7 +5469,7 @@ var ReleaseAgeGate = class ReleaseAgeGate extends effect.Schema.Class("ReleaseAg
|
|
|
5469
5469
|
}
|
|
5470
5470
|
};
|
|
5471
5471
|
//#endregion
|
|
5472
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5472
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/ImporterDependency.js
|
|
5473
5473
|
/**
|
|
5474
5474
|
* One declared dependency of one workspace importer, as the lockfile records it.
|
|
5475
5475
|
*
|
|
@@ -5507,7 +5507,7 @@ var ImporterDependency = class extends effect.Schema.Class("ImporterDependency")
|
|
|
5507
5507
|
depType: DependencyField
|
|
5508
5508
|
}) {};
|
|
5509
5509
|
//#endregion
|
|
5510
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5510
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/LockfileImporter.js
|
|
5511
5511
|
/**
|
|
5512
5512
|
* One workspace importer's declared dependencies, as the lockfile records them.
|
|
5513
5513
|
*
|
|
@@ -5531,7 +5531,7 @@ var LockfileImporter = class extends effect.Schema.Class("LockfileImporter")({
|
|
|
5531
5531
|
dependencies: effect.Schema.Array(ImporterDependency)
|
|
5532
5532
|
}) {};
|
|
5533
5533
|
//#endregion
|
|
5534
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5534
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/ResolvedPackage.js
|
|
5535
5535
|
const EMPTY_DEPENDENCIES = {};
|
|
5536
5536
|
/**
|
|
5537
5537
|
* A package resolved from a lockfile.
|
|
@@ -5566,7 +5566,7 @@ var ResolvedPackage = class extends effect.Schema.Class("ResolvedPackage")({
|
|
|
5566
5566
|
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)))
|
|
5567
5567
|
}) {};
|
|
5568
5568
|
//#endregion
|
|
5569
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5569
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/WorkspaceDependency.js
|
|
5570
5570
|
/**
|
|
5571
5571
|
* A directed dependency edge between two workspace packages as recorded in
|
|
5572
5572
|
* the lockfile.
|
|
@@ -5588,7 +5588,7 @@ var WorkspaceDependency = class extends effect.Schema.Class("WorkspaceDependency
|
|
|
5588
5588
|
constraint: effect.Schema.String
|
|
5589
5589
|
}) {};
|
|
5590
5590
|
//#endregion
|
|
5591
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5591
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/PnpmExtension.js
|
|
5592
5592
|
/**
|
|
5593
5593
|
* Extension data specific to pnpm lockfiles, attached to `Lockfile.extension`
|
|
5594
5594
|
* when the format is `"pnpm"`.
|
|
@@ -5613,7 +5613,7 @@ var PnpmExtension = class extends effect.Schema.Class("PnpmExtension")({
|
|
|
5613
5613
|
}))
|
|
5614
5614
|
}) {};
|
|
5615
5615
|
//#endregion
|
|
5616
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5616
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/LockfileFormat.js
|
|
5617
5617
|
/**
|
|
5618
5618
|
* The lockfile formats this package parses: bun's `bun.lock` (JSONC), npm's
|
|
5619
5619
|
* `package-lock.json` (v2/v3 JSON), pnpm's `pnpm-lock.yaml` and yarn Berry's
|
|
@@ -5651,7 +5651,7 @@ const FILENAMES = {
|
|
|
5651
5651
|
*/
|
|
5652
5652
|
const filenameFor = (format) => FILENAMES[format][0];
|
|
5653
5653
|
//#endregion
|
|
5654
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5654
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/internal/shared.js
|
|
5655
5655
|
/**
|
|
5656
5656
|
* The four dependency sections of a manifest, in a stable order — the shared
|
|
5657
5657
|
* dependency-sections table (v3's `DEP_SECTIONS`). Each entry is both the
|
|
@@ -5809,7 +5809,7 @@ const extractWorkspaceDeps = (workspaces, workspaceNames) => {
|
|
|
5809
5809
|
return deps;
|
|
5810
5810
|
};
|
|
5811
5811
|
//#endregion
|
|
5812
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
5812
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncNode.js
|
|
5813
5813
|
/**
|
|
5814
5814
|
* Discriminator values for JSONC AST node types: the JSON value types
|
|
5815
5815
|
* (`string`/`number`/`boolean`/`null`), the structural types
|
|
@@ -5984,7 +5984,7 @@ function evaluateNode(node, depth) {
|
|
|
5984
5984
|
}
|
|
5985
5985
|
}
|
|
5986
5986
|
//#endregion
|
|
5987
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
5987
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/scanner.js
|
|
5988
5988
|
const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
|
|
5989
5989
|
const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
|
|
5990
5990
|
const isDigit$1 = (ch) => ch >= 48 && ch <= 57;
|
|
@@ -6278,7 +6278,7 @@ const createScanner$2 = (text, ignoreTrivia = false) => {
|
|
|
6278
6278
|
};
|
|
6279
6279
|
};
|
|
6280
6280
|
//#endregion
|
|
6281
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
6281
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/skip.js
|
|
6282
6282
|
/**
|
|
6283
6283
|
* Iteratively consume the value beginning at the cursor's current token and
|
|
6284
6284
|
* return its tight end offset (excludes trailing whitespace/comments).
|
|
@@ -6308,7 +6308,7 @@ const skipBalancedValue = (cursor) => {
|
|
|
6308
6308
|
return end;
|
|
6309
6309
|
};
|
|
6310
6310
|
//#endregion
|
|
6311
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
6311
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/parser.js
|
|
6312
6312
|
/**
|
|
6313
6313
|
* The public parse-error code vocabulary. The facade builds its `@public`
|
|
6314
6314
|
* `JsoncParseErrorCode` schema from this array; the parser produces these codes
|
|
@@ -6721,7 +6721,7 @@ const parseTree$2 = (text, flags) => {
|
|
|
6721
6721
|
};
|
|
6722
6722
|
};
|
|
6723
6723
|
//#endregion
|
|
6724
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
6724
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/Jsonc.js
|
|
6725
6725
|
/**
|
|
6726
6726
|
* The single public parse-error code vocabulary, appearing as the `code` field
|
|
6727
6727
|
* of {@link JsoncParseErrorDetail}.
|
|
@@ -7325,7 +7325,7 @@ var JsoncEdit = class extends effect.Schema.Class("JsoncEdit")({
|
|
|
7325
7325
|
}
|
|
7326
7326
|
};
|
|
7327
7327
|
//#endregion
|
|
7328
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
7328
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/navigate.js
|
|
7329
7329
|
/**
|
|
7330
7330
|
* Resolve `path` against `text`, returning where the target is (or where it
|
|
7331
7331
|
* would be inserted). `path` must be non-empty — the whole-document case is
|
|
@@ -7452,7 +7452,7 @@ function navigate(text, path) {
|
|
|
7452
7452
|
return { _tag: "NoOp" };
|
|
7453
7453
|
}
|
|
7454
7454
|
//#endregion
|
|
7455
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
7455
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncModifier.js
|
|
7456
7456
|
/**
|
|
7457
7457
|
* Raised when `JsoncModifier.modify` cannot navigate the requested path: the
|
|
7458
7458
|
* value at `depth` is not the container kind (`expected`) the next path segment
|
|
@@ -7580,7 +7580,7 @@ var JsoncModifier = class {
|
|
|
7580
7580
|
});
|
|
7581
7581
|
};
|
|
7582
7582
|
//#endregion
|
|
7583
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
7583
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/internal/bun.js
|
|
7584
7584
|
const DepRecord$2 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
7585
7585
|
const BunWorkspaceEntry = effect.Schema.Struct({
|
|
7586
7586
|
name: effect.Schema.optionalKey(effect.Schema.String),
|
|
@@ -7673,7 +7673,7 @@ const toFields$3 = (raw) => effect.Effect.gen(function* () {
|
|
|
7673
7673
|
};
|
|
7674
7674
|
});
|
|
7675
7675
|
//#endregion
|
|
7676
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
7676
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/internal/npm.js
|
|
7677
7677
|
const DepRecord$1 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
7678
7678
|
const NpmPackageEntry = effect.Schema.Struct({
|
|
7679
7679
|
name: effect.Schema.optionalKey(effect.Schema.String),
|
|
@@ -7771,7 +7771,7 @@ const toFields$2 = (raw) => effect.Effect.gen(function* () {
|
|
|
7771
7771
|
};
|
|
7772
7772
|
});
|
|
7773
7773
|
//#endregion
|
|
7774
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
7774
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/YamlNode.js
|
|
7775
7775
|
/**
|
|
7776
7776
|
* YAML scalar presentation styles.
|
|
7777
7777
|
*
|
|
@@ -8212,7 +8212,7 @@ function nodeToValue(node, anchors, budget, counting = false) {
|
|
|
8212
8212
|
return null;
|
|
8213
8213
|
}
|
|
8214
8214
|
//#endregion
|
|
8215
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
8215
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/diagnostics.js
|
|
8216
8216
|
/** Error codes emitted by the lexer stage. */
|
|
8217
8217
|
const YAML_LEX_ERROR_CODES = [
|
|
8218
8218
|
"UnexpectedCharacter",
|
|
@@ -8299,7 +8299,7 @@ function isFatalCode(code) {
|
|
|
8299
8299
|
return FATAL_CODES.has(code);
|
|
8300
8300
|
}
|
|
8301
8301
|
//#endregion
|
|
8302
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
8302
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/YamlDiagnostic.js
|
|
8303
8303
|
/**
|
|
8304
8304
|
* Error codes emitted by the lexer stage.
|
|
8305
8305
|
*
|
|
@@ -8420,7 +8420,7 @@ function lineChar(text, offset) {
|
|
|
8420
8420
|
};
|
|
8421
8421
|
}
|
|
8422
8422
|
//#endregion
|
|
8423
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
8423
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/lexer.js
|
|
8424
8424
|
/**
|
|
8425
8425
|
* Create a new YAML scanner for the given source text.
|
|
8426
8426
|
*
|
|
@@ -9383,7 +9383,7 @@ function lexAll(text) {
|
|
|
9383
9383
|
return tokens;
|
|
9384
9384
|
}
|
|
9385
9385
|
//#endregion
|
|
9386
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
9386
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/cst-parser.js
|
|
9387
9387
|
/**
|
|
9388
9388
|
* Hardening: cap CST nesting so hostile inputs cannot overflow the stack
|
|
9389
9389
|
* while the tree is being BUILT. Set slightly above the composer's
|
|
@@ -10104,7 +10104,7 @@ function parseCSTAll(text) {
|
|
|
10104
10104
|
return parseDocuments(lexAll(text), text);
|
|
10105
10105
|
}
|
|
10106
10106
|
//#endregion
|
|
10107
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10107
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/anchors.js
|
|
10108
10108
|
/**
|
|
10109
10109
|
* Check if a pending anchor is being applied to an alias node (invalid in YAML 1.2 §3.2.2).
|
|
10110
10110
|
* Aliases represent references to existing anchored nodes and cannot have their own anchors.
|
|
@@ -10172,7 +10172,7 @@ function scanName(text, start) {
|
|
|
10172
10172
|
return text.slice(start, end);
|
|
10173
10173
|
}
|
|
10174
10174
|
//#endregion
|
|
10175
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10175
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/comments.js
|
|
10176
10176
|
/** True when there is no line break between `start` and `end` in `text`. */
|
|
10177
10177
|
function sameLineSpan(text, start, end) {
|
|
10178
10178
|
if (start < 0) return false;
|
|
@@ -10385,7 +10385,7 @@ function mergedCommentFields(existing, incoming) {
|
|
|
10385
10385
|
};
|
|
10386
10386
|
}
|
|
10387
10387
|
//#endregion
|
|
10388
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10388
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/state.js
|
|
10389
10389
|
let lineStartsText;
|
|
10390
10390
|
let lineStartsCache = [];
|
|
10391
10391
|
function getLineStarts(text) {
|
|
@@ -10505,7 +10505,7 @@ function exitNesting(state) {
|
|
|
10505
10505
|
state.depth--;
|
|
10506
10506
|
}
|
|
10507
10507
|
//#endregion
|
|
10508
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10508
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/tags.js
|
|
10509
10509
|
/**
|
|
10510
10510
|
* Resolve a tag shorthand using the document's %TAG directives.
|
|
10511
10511
|
* For example, with `%TAG !! tag:example.com,2000:app/`, the tag `!!int`
|
|
@@ -10591,7 +10591,7 @@ function validateTagHandlesInDocument(docCst, state) {
|
|
|
10591
10591
|
}
|
|
10592
10592
|
}
|
|
10593
10593
|
//#endregion
|
|
10594
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10594
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/scalars.js
|
|
10595
10595
|
const NULL_RE$1 = /^(?:null|Null|NULL|~)$/;
|
|
10596
10596
|
const TRUE_RE$1 = /^(?:true|True|TRUE)$/;
|
|
10597
10597
|
const FALSE_RE$1 = /^(?:false|False|FALSE)$/;
|
|
@@ -11517,7 +11517,7 @@ function shouldPreserveRaw(rawValue, value) {
|
|
|
11517
11517
|
return false;
|
|
11518
11518
|
}
|
|
11519
11519
|
//#endregion
|
|
11520
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
11520
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/block.js
|
|
11521
11521
|
/**
|
|
11522
11522
|
* Compose a block map from its CST children, with an optional external first key.
|
|
11523
11523
|
*
|
|
@@ -12890,7 +12890,7 @@ function composeFlatBlockMap(children, startIdx, parentCst, state, externalFirst
|
|
|
12890
12890
|
return map;
|
|
12891
12891
|
}
|
|
12892
12892
|
//#endregion
|
|
12893
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
12893
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/flow.js
|
|
12894
12894
|
/**
|
|
12895
12895
|
* Validate that flow collection entries are separated by commas.
|
|
12896
12896
|
*
|
|
@@ -13374,7 +13374,7 @@ function composeFlowSeqInner(cst, state, meta, parentBlockColumn) {
|
|
|
13374
13374
|
return seq;
|
|
13375
13375
|
}
|
|
13376
13376
|
//#endregion
|
|
13377
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
13377
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/document.js
|
|
13378
13378
|
/** The flow-composer dispatch wired into every state this module creates. */
|
|
13379
13379
|
const FLOW = {
|
|
13380
13380
|
composeFlowMap,
|
|
@@ -14166,7 +14166,7 @@ function stripOwnComment(node) {
|
|
|
14166
14166
|
});
|
|
14167
14167
|
}
|
|
14168
14168
|
//#endregion
|
|
14169
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
14169
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/fold.js
|
|
14170
14170
|
/**
|
|
14171
14171
|
* Column-based line folding for a single logical scalar line (YAML 1.2 flow
|
|
14172
14172
|
* folding, §7.3 / §8.2.1). Breaks the content at "safe" single-space
|
|
@@ -14414,7 +14414,7 @@ function renderBlockFolded(s, indent, explicitChomp, explicitIndent) {
|
|
|
14414
14414
|
return `>${indentIndicator}${chomp}\n${outputLines.join("\n")}`;
|
|
14415
14415
|
}
|
|
14416
14416
|
//#endregion
|
|
14417
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
14417
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/stringifier.js
|
|
14418
14418
|
/**
|
|
14419
14419
|
* Thrown by the stringifier on its failure paths (circular references). The
|
|
14420
14420
|
* facade catches this and materializes the public stringify error.
|
|
@@ -15450,7 +15450,7 @@ function deepEqualValues(a, b) {
|
|
|
15450
15450
|
return false;
|
|
15451
15451
|
}
|
|
15452
15452
|
//#endregion
|
|
15453
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15453
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/internal/documents.js
|
|
15454
15454
|
/**
|
|
15455
15455
|
* An empty YAML document composes to `null` (`Yaml.parseAll("")` is `[null]`,
|
|
15456
15456
|
* and the trailing document of an env-only `pnpm-lock.yaml` is `null` too).
|
|
@@ -15520,7 +15520,7 @@ const selectSoleDocument = (content) => effect.Effect.gen(function* () {
|
|
|
15520
15520
|
};
|
|
15521
15521
|
});
|
|
15522
15522
|
//#endregion
|
|
15523
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15523
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/internal/pnpm.js
|
|
15524
15524
|
const PnpmImporterDeps = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.Struct({
|
|
15525
15525
|
specifier: effect.Schema.String,
|
|
15526
15526
|
version: effect.Schema.String
|
|
@@ -15645,7 +15645,7 @@ const toFields$1 = (raw) => effect.Effect.gen(function* () {
|
|
|
15645
15645
|
};
|
|
15646
15646
|
});
|
|
15647
15647
|
//#endregion
|
|
15648
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15648
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/internal/yarn.js
|
|
15649
15649
|
const YarnLockfileRaw = effect.Schema.Record(effect.Schema.String, effect.Schema.Unknown);
|
|
15650
15650
|
const DepRecord = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
15651
15651
|
const YarnEntry = effect.Schema.Struct({
|
|
@@ -15768,7 +15768,7 @@ const cleanYarnDeps = (deps) => {
|
|
|
15768
15768
|
return Object.fromEntries(Object.entries(deps).map(([name, value]) => [name, value.startsWith("npm:") ? value.slice(4) : value]));
|
|
15769
15769
|
};
|
|
15770
15770
|
//#endregion
|
|
15771
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15771
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/Lockfile.js
|
|
15772
15772
|
const EMPTY_IMPORTERS = [];
|
|
15773
15773
|
/**
|
|
15774
15774
|
* Failure of `Lockfile.parse`: the given content is not a valid lockfile of
|
|
@@ -16012,7 +16012,7 @@ var Lockfile = class Lockfile extends effect.Schema.Class("Lockfile")({
|
|
|
16012
16012
|
}
|
|
16013
16013
|
};
|
|
16014
16014
|
//#endregion
|
|
16015
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
16015
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.10_ff0fb68daff5c4399291b91de5fa8e66/node_modules/@effected/lockfiles/LockfileIntegrity.js
|
|
16016
16016
|
/**
|
|
16017
16017
|
* The minimal manifest shape {@link LockfileIntegrity.compare} checks a
|
|
16018
16018
|
* lockfile against: a package name plus the four optional dependency maps.
|
|
@@ -16128,7 +16128,7 @@ var LockfileIntegrity = class LockfileIntegrity extends effect.Schema.Class("Loc
|
|
|
16128
16128
|
}
|
|
16129
16129
|
};
|
|
16130
16130
|
//#endregion
|
|
16131
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
16131
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Dependency.js
|
|
16132
16132
|
/**
|
|
16133
16133
|
* A resolved dependency entry pairing a package name with its version
|
|
16134
16134
|
* specifier and the `kind` of map it came from (`@effected/npm`'s
|
|
@@ -16192,7 +16192,7 @@ var Dependency = class extends effect.Schema.Class("Dependency")({
|
|
|
16192
16192
|
}
|
|
16193
16193
|
};
|
|
16194
16194
|
//#endregion
|
|
16195
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
16195
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/DevEngines.js
|
|
16196
16196
|
/**
|
|
16197
16197
|
* A single `devEngines` constraint with a name and optional `version` / `onFail`.
|
|
16198
16198
|
*
|
|
@@ -16230,7 +16230,7 @@ const DevEnginesSchema = effect.Schema.Struct({
|
|
|
16230
16230
|
libc: effect.Schema.optionalKey(DevEngineOrArray)
|
|
16231
16231
|
});
|
|
16232
16232
|
//#endregion
|
|
16233
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
16233
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/internal/licenseIds.js
|
|
16234
16234
|
/** @internal */
|
|
16235
16235
|
const ACTIVE_LICENSE_IDS = [
|
|
16236
16236
|
"0BSD",
|
|
@@ -16963,7 +16963,7 @@ const LICENSE_IDS = new Set(ACTIVE_LICENSE_IDS);
|
|
|
16963
16963
|
/** @internal */
|
|
16964
16964
|
const DEPRECATED_LICENSE_IDS = new Set(DEPRECATED_LICENSE_ID_LIST);
|
|
16965
16965
|
//#endregion
|
|
16966
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
16966
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/License.js
|
|
16967
16967
|
/**
|
|
16968
16968
|
* Indicates that a string is not a valid SPDX expression fragment: an
|
|
16969
16969
|
* unrecognized license or exception identifier, or a malformed
|
|
@@ -17132,7 +17132,7 @@ var License = class License extends effect.Schema.Class("License")({
|
|
|
17132
17132
|
}
|
|
17133
17133
|
};
|
|
17134
17134
|
//#endregion
|
|
17135
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17135
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/internal/exceptions.js
|
|
17136
17136
|
/** @internal */
|
|
17137
17137
|
const ACTIVE_EXCEPTION_IDS = [
|
|
17138
17138
|
"389-exception",
|
|
@@ -17209,7 +17209,7 @@ const EXCEPTION_IDS = new Set(ACTIVE_EXCEPTION_IDS);
|
|
|
17209
17209
|
/** @internal */
|
|
17210
17210
|
const DEPRECATED_EXCEPTION_IDS = new Set(DEPRECATED_EXCEPTION_ID_LIST);
|
|
17211
17211
|
//#endregion
|
|
17212
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17212
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/LicenseException.js
|
|
17213
17213
|
/**
|
|
17214
17214
|
* A validated SPDX license-exception identifier: an Effect `Schema.Class` whose
|
|
17215
17215
|
* `id` is a member of the SPDX exception list. The class doubles as its own
|
|
@@ -17329,7 +17329,7 @@ var LicenseException = class LicenseException extends effect.Schema.Class("Licen
|
|
|
17329
17329
|
}
|
|
17330
17330
|
};
|
|
17331
17331
|
//#endregion
|
|
17332
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17332
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/internal/parser.js
|
|
17333
17333
|
const TOKEN_OPEN_PAREN = 0;
|
|
17334
17334
|
const TOKEN_CLOSE_PAREN = 1;
|
|
17335
17335
|
const TOKEN_PLUS = 2;
|
|
@@ -17558,7 +17558,7 @@ function parse$2(input) {
|
|
|
17558
17558
|
return node;
|
|
17559
17559
|
}
|
|
17560
17560
|
//#endregion
|
|
17561
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17561
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/SpdxExpression.js
|
|
17562
17562
|
/**
|
|
17563
17563
|
* Serialize a tagged SPDX AST node — a class instance OR its encoded POJO — to
|
|
17564
17564
|
* the canonical, fully-parenthesized SPDX string. This is the single source of
|
|
@@ -17747,7 +17747,7 @@ effect.Schema.String.pipe(effect.Schema.decodeTo(SpdxExpressionUnion, effect.Sch
|
|
|
17747
17747
|
encode: (expression) => effect.Effect.succeed(serialize$1(expression))
|
|
17748
17748
|
})));
|
|
17749
17749
|
//#endregion
|
|
17750
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
17750
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/License.js
|
|
17751
17751
|
/**
|
|
17752
17752
|
* Indicates that a string is not a valid SPDX license identifier or expression.
|
|
17753
17753
|
*
|
|
@@ -17782,7 +17782,7 @@ const isValidSpdx = (value) => {
|
|
|
17782
17782
|
*/
|
|
17783
17783
|
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"));
|
|
17784
17784
|
//#endregion
|
|
17785
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
17785
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/PackageManager.js
|
|
17786
17786
|
const PACKAGE_MANAGER_NAME_RE = /^[a-z]+$/;
|
|
17787
17787
|
const invalid$1 = (input, message) => effect.Effect.fail(new effect.SchemaIssue.InvalidValue({ message }, input));
|
|
17788
17788
|
/**
|
|
@@ -17893,7 +17893,7 @@ var PackageManager = class PackageManager extends effect.Schema.Class("PackageMa
|
|
|
17893
17893
|
}
|
|
17894
17894
|
};
|
|
17895
17895
|
//#endregion
|
|
17896
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
17896
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/PackageName.js
|
|
17897
17897
|
/**
|
|
17898
17898
|
* Indicates that a string could not be used as a valid npm package name.
|
|
17899
17899
|
*
|
|
@@ -17951,7 +17951,7 @@ const PackageName = Object.assign(effect.Schema.Union([ScopedPackageName, Unscop
|
|
|
17951
17951
|
isScoped
|
|
17952
17952
|
});
|
|
17953
17953
|
//#endregion
|
|
17954
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
17954
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Person.js
|
|
17955
17955
|
const parsePersonString = (input) => {
|
|
17956
17956
|
const emailMatch = input.match(/<([^>]+)>/);
|
|
17957
17957
|
const urlMatch = input.match(/\(([^)]+)\)/);
|
|
@@ -18097,7 +18097,7 @@ var Person = class Person extends effect.Schema.Class("Person")({
|
|
|
18097
18097
|
}
|
|
18098
18098
|
};
|
|
18099
18099
|
//#endregion
|
|
18100
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18100
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Repository.js
|
|
18101
18101
|
/** The shorthand hosts npm resolves without a scheme. */
|
|
18102
18102
|
const SHORTHAND_HOSTS = /* @__PURE__ */ new Map([
|
|
18103
18103
|
["github", "https://github.com"],
|
|
@@ -18272,7 +18272,7 @@ var Bugs = class Bugs extends effect.Schema.Class("Bugs")({
|
|
|
18272
18272
|
})));
|
|
18273
18273
|
};
|
|
18274
18274
|
//#endregion
|
|
18275
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18275
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/internal/format.js
|
|
18276
18276
|
const KEY_INDEX = new Map([
|
|
18277
18277
|
"$schema",
|
|
18278
18278
|
"name",
|
|
@@ -18507,7 +18507,7 @@ const renderJson = (raw, options) => {
|
|
|
18507
18507
|
return options.newline ? `${json}\n` : json;
|
|
18508
18508
|
};
|
|
18509
18509
|
//#endregion
|
|
18510
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18510
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/internal/wire.js
|
|
18511
18511
|
const RawJson = effect.Schema.Record(effect.Schema.String, effect.Schema.Unknown);
|
|
18512
18512
|
/**
|
|
18513
18513
|
* Build the open-JSON ↔ class wire codec for a `Schema.Class` carrying a
|
|
@@ -18538,7 +18538,7 @@ const makeWire = (Class) => {
|
|
|
18538
18538
|
})));
|
|
18539
18539
|
};
|
|
18540
18540
|
//#endregion
|
|
18541
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18541
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Package.js
|
|
18542
18542
|
const toHashMap = effect.SchemaTransformation.transform({
|
|
18543
18543
|
decode: (record) => effect.HashMap.fromIterable(Object.entries(record)),
|
|
18544
18544
|
encode: (map) => Object.fromEntries(effect.HashMap.toEntries(map))
|
|
@@ -18825,7 +18825,7 @@ var Package = class Package extends effect.Schema.Class("Package")({
|
|
|
18825
18825
|
}
|
|
18826
18826
|
};
|
|
18827
18827
|
//#endregion
|
|
18828
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
18828
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/WorkspacePackage.js
|
|
18829
18829
|
const EMPTY$1 = Object.freeze(Object.create(null));
|
|
18830
18830
|
const EMPTY_MANIFEST = Object.freeze(Object.create(null));
|
|
18831
18831
|
/**
|
|
@@ -19104,7 +19104,7 @@ var WorkspacePackage = class WorkspacePackage extends effect.Schema.Class("Works
|
|
|
19104
19104
|
}
|
|
19105
19105
|
};
|
|
19106
19106
|
//#endregion
|
|
19107
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
19107
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.5.0_@effected+glob@0.4.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/walker/Descend.js
|
|
19108
19108
|
/**
|
|
19109
19109
|
* Typed failure raised by {@link descend}: a directory mid-walk was unreadable
|
|
19110
19110
|
* (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
|
|
@@ -19239,7 +19239,7 @@ const descend = effect.Effect.fn("Walker.descend")(function* (pattern, options)
|
|
|
19239
19239
|
return results;
|
|
19240
19240
|
});
|
|
19241
19241
|
//#endregion
|
|
19242
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
19242
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.5.0_@effected+glob@0.4.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/walker/Expand.js
|
|
19243
19243
|
/**
|
|
19244
19244
|
* Typed failure raised by {@link compileAndExpand}: the single error the
|
|
19245
19245
|
* compile+expand recipe fails with, so a caller catches one tag rather than
|
|
@@ -19329,7 +19329,7 @@ const compileAndExpand = effect.Effect.fn("Walker.compileAndExpand")(function* (
|
|
|
19329
19329
|
})));
|
|
19330
19330
|
});
|
|
19331
19331
|
//#endregion
|
|
19332
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
19332
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.5.0_@effected+glob@0.4.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/walker/Walker.js
|
|
19333
19333
|
const ascend = (start, options) => effect.Effect.gen(function* () {
|
|
19334
19334
|
const path = yield* effect.Path.Path;
|
|
19335
19335
|
const maxDepth = options?.maxDepth ?? 256;
|
|
@@ -19423,7 +19423,7 @@ var Walker$1 = class {
|
|
|
19423
19423
|
static findRoot = findRoot$1;
|
|
19424
19424
|
};
|
|
19425
19425
|
//#endregion
|
|
19426
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19426
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/WorkspaceRoot.js
|
|
19427
19427
|
/**
|
|
19428
19428
|
* The marker filenames {@link WorkspaceRoot} probes for, in priority order.
|
|
19429
19429
|
*
|
|
@@ -19610,7 +19610,7 @@ var WorkspaceRoot = class WorkspaceRoot extends effect.Context.Service()("@effec
|
|
|
19610
19610
|
static layerTest = (root) => effect.Layer.effect(WorkspaceRoot, WorkspaceRoot.makeTest(root)).pipe(effect.Layer.provide(effect.Path.layer));
|
|
19611
19611
|
};
|
|
19612
19612
|
//#endregion
|
|
19613
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19613
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/internal/limits.js
|
|
19614
19614
|
/**
|
|
19615
19615
|
* Hard ceiling on directories the enumerator will visit for one pattern set.
|
|
19616
19616
|
* Guards the pathological case a depth cap alone does not: a wide, shallow
|
|
@@ -19628,7 +19628,7 @@ const MAX_ENUMERATION_ENTRIES = 1e5;
|
|
|
19628
19628
|
*/
|
|
19629
19629
|
const PRUNED_DIRECTORIES = /* @__PURE__ */ new Set([".git", "node_modules"]);
|
|
19630
19630
|
//#endregion
|
|
19631
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19631
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/internal/traverse.js
|
|
19632
19632
|
/** Directory names never descended into. */
|
|
19633
19633
|
const isPruned = (entry) => PRUNED_DIRECTORIES.has(entry);
|
|
19634
19634
|
/** Join root-relative POSIX segments; `""` is the root itself. */
|
|
@@ -19718,7 +19718,7 @@ var Traversal = class {
|
|
|
19718
19718
|
}
|
|
19719
19719
|
};
|
|
19720
19720
|
//#endregion
|
|
19721
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19721
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/internal/enumerate.js
|
|
19722
19722
|
/** Strip a trailing slash from `GlobPattern.enumerationPrefix` to get a relative directory. */
|
|
19723
19723
|
const baseOf = (pattern) => pattern.enumerationPrefix.replace(/\/$/, "");
|
|
19724
19724
|
/**
|
|
@@ -19788,7 +19788,7 @@ const enumerate = (root, globs, options) => effect.Effect.gen(function* () {
|
|
|
19788
19788
|
return results;
|
|
19789
19789
|
});
|
|
19790
19790
|
//#endregion
|
|
19791
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19791
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/internal/patterns.js
|
|
19792
19792
|
const stringsOf = (value) => Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : void 0;
|
|
19793
19793
|
/** The `packages:` list of a `pnpm-workspace.yaml` document. Total on a parsed document. */
|
|
19794
19794
|
const pnpmPatternsOf = (document) => {
|
|
@@ -19845,7 +19845,7 @@ const readPatterns = (root) => effect.Effect.gen(function* () {
|
|
|
19845
19845
|
return manifestPatternsOf(manifest);
|
|
19846
19846
|
});
|
|
19847
19847
|
//#endregion
|
|
19848
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19848
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/WorkspaceDiscovery.js
|
|
19849
19849
|
/**
|
|
19850
19850
|
* Raised when a workspace member's `package.json` cannot be read, parsed, or
|
|
19851
19851
|
* used — it is missing, malformed, or lacks a `name` or `version`.
|
|
@@ -20301,7 +20301,7 @@ var WorkspaceDiscovery = class WorkspaceDiscovery extends effect.Context.Service
|
|
|
20301
20301
|
};
|
|
20302
20302
|
const isStringRecord$2 = (value) => value !== null && typeof value === "object" && !Array.isArray(value) && Object.values(value).every((entry) => typeof entry === "string");
|
|
20303
20303
|
//#endregion
|
|
20304
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
20304
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/DependencyGraph.js
|
|
20305
20305
|
/**
|
|
20306
20306
|
* Raised when the workspace dependency graph cannot be topologically ordered
|
|
20307
20307
|
* because it contains a cycle.
|
|
@@ -20600,7 +20600,7 @@ const kahn = (edges) => {
|
|
|
20600
20600
|
};
|
|
20601
20601
|
};
|
|
20602
20602
|
//#endregion
|
|
20603
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.
|
|
20603
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.9.0_effect@4.0.0-rc.109/node_modules/@effected/git/GitCommand.js
|
|
20604
20604
|
/** The mask every whole-value sensitive positional is replaced with. */
|
|
20605
20605
|
const REDACTED = "<redacted>";
|
|
20606
20606
|
const secretValue = (value) => ({
|
|
@@ -21753,7 +21753,7 @@ var GitCommand = class {
|
|
|
21753
21753
|
static lsFiles = lsFiles;
|
|
21754
21754
|
};
|
|
21755
21755
|
//#endregion
|
|
21756
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.
|
|
21756
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.9.0_effect@4.0.0-rc.109/node_modules/@effected/git/internal/run.js
|
|
21757
21757
|
/**
|
|
21758
21758
|
* Spawns `command` and collects its stdout, stderr, and exit code as a single
|
|
21759
21759
|
* triple.
|
|
@@ -21780,7 +21780,7 @@ const runCollected = (command) => effect.Effect.scoped(effect.Effect.gen(functio
|
|
|
21780
21780
|
};
|
|
21781
21781
|
}));
|
|
21782
21782
|
//#endregion
|
|
21783
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.
|
|
21783
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.9.0_effect@4.0.0-rc.109/node_modules/@effected/git/Git.js
|
|
21784
21784
|
/** git's own ceiling: a run that has not answered in 30s is not going to. */
|
|
21785
21785
|
const GIT_TIMEOUT = effect.Duration.seconds(30);
|
|
21786
21786
|
/**
|
|
@@ -23997,7 +23997,7 @@ var Git = class Git extends effect.Context.Service()("@effected/git/Git") {
|
|
|
23997
23997
|
static layerTest = (overrides = {}) => effect.Layer.succeed(Git, Git.makeTest(overrides));
|
|
23998
23998
|
};
|
|
23999
23999
|
//#endregion
|
|
24000
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24000
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/ChangeDetector.js
|
|
24001
24001
|
/**
|
|
24002
24002
|
* Which git refs to compare, and whether to fold in the working tree.
|
|
24003
24003
|
*
|
|
@@ -24253,7 +24253,7 @@ function resolveFromCatalog(catalogs, wantedDependency) {
|
|
|
24253
24253
|
};
|
|
24254
24254
|
}
|
|
24255
24255
|
//#endregion
|
|
24256
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24256
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/internal/catalogs.js
|
|
24257
24257
|
/** Project a pnpm-workspace manifest's `catalog` / `catalogs` fields into a `Catalogs` map. */
|
|
24258
24258
|
const inlineCatalogs = (manifest) => {
|
|
24259
24259
|
if (manifest.catalog === void 0 && manifest.catalogs === void 0) return {};
|
|
@@ -24317,7 +24317,7 @@ const rangeOf = (catalogs, dependency, specifier) => {
|
|
|
24317
24317
|
});
|
|
24318
24318
|
};
|
|
24319
24319
|
//#endregion
|
|
24320
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24320
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/ConfigDependencyHooks.js
|
|
24321
24321
|
/** Whether `value` is a non-null, non-array object. */
|
|
24322
24322
|
const isObject$2 = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
24323
24323
|
/**
|
|
@@ -24731,7 +24731,7 @@ var ConfigDependencyHooks = class ConfigDependencyHooks extends effect.Context.S
|
|
|
24731
24731
|
}));
|
|
24732
24732
|
};
|
|
24733
24733
|
//#endregion
|
|
24734
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24734
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/PackageManagerName.js
|
|
24735
24735
|
/**
|
|
24736
24736
|
* The four package managers this package understands.
|
|
24737
24737
|
*
|
|
@@ -25106,7 +25106,7 @@ var PackageManagerDetector = class PackageManagerDetector extends effect.Context
|
|
|
25106
25106
|
static layerTest = (overrides = {}) => effect.Layer.succeed(PackageManagerDetector, PackageManagerDetector.makeTest(overrides));
|
|
25107
25107
|
};
|
|
25108
25108
|
//#endregion
|
|
25109
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25109
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/LockfileReader.js
|
|
25110
25110
|
/**
|
|
25111
25111
|
* Raised when the workspace's lockfile cannot be read off disk.
|
|
25112
25112
|
*
|
|
@@ -25286,7 +25286,7 @@ var LockfileReader = class LockfileReader extends effect.Context.Service()("@eff
|
|
|
25286
25286
|
static layerTest = (overrides = {}) => effect.Layer.succeed(LockfileReader, LockfileReader.makeTest(overrides));
|
|
25287
25287
|
};
|
|
25288
25288
|
//#endregion
|
|
25289
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25289
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/Publishability.js
|
|
25290
25290
|
/** The public npm registry, used when `publishConfig.registry` says nothing. */
|
|
25291
25291
|
const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
|
|
25292
25292
|
/**
|
|
@@ -25445,7 +25445,7 @@ var PublishabilityDetector = class extends effect.Context.Service()("@effected/w
|
|
|
25445
25445
|
static layerNone = effect.Layer.succeed(this, this.none);
|
|
25446
25446
|
};
|
|
25447
25447
|
//#endregion
|
|
25448
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25448
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/internal/importerVersions.js
|
|
25449
25449
|
/**
|
|
25450
25450
|
* Strip pnpm's peer-disambiguation suffix from a recorded importer version.
|
|
25451
25451
|
*
|
|
@@ -25531,7 +25531,7 @@ const unanimousVersionOf = (index, dependency) => {
|
|
|
25531
25531
|
return agreed;
|
|
25532
25532
|
};
|
|
25533
25533
|
//#endregion
|
|
25534
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25534
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/WorkspaceCatalogs.js
|
|
25535
25535
|
/**
|
|
25536
25536
|
* An immutable, fully-normalized catalog collection — the one catalog
|
|
25537
25537
|
* resolution semantic in the package.
|
|
@@ -26058,7 +26058,7 @@ var WorkspaceCatalogs = class WorkspaceCatalogs extends effect.Context.Service()
|
|
|
26058
26058
|
}));
|
|
26059
26059
|
};
|
|
26060
26060
|
//#endregion
|
|
26061
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
26061
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/WorkspaceStateSnapshot.js
|
|
26062
26062
|
const EMPTY = Object.freeze(Object.create(null));
|
|
26063
26063
|
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)));
|
|
26064
26064
|
/**
|
|
@@ -26281,7 +26281,7 @@ var WorkspaceStateSnapshot = class extends effect.Schema.Class("WorkspaceStateSn
|
|
|
26281
26281
|
}
|
|
26282
26282
|
};
|
|
26283
26283
|
//#endregion
|
|
26284
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
26284
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/WorkspaceSnapshots.js
|
|
26285
26285
|
/** Whether `value` is a non-null, non-array object. */
|
|
26286
26286
|
const isObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
26287
26287
|
/** Whether every value in a record is a string — a usable dependency map. */
|
|
@@ -26558,7 +26558,7 @@ var WorkspaceSnapshots = class WorkspaceSnapshots extends effect.Context.Service
|
|
|
26558
26558
|
static layerTest = (overrides = {}) => effect.Layer.succeed(WorkspaceSnapshots, WorkspaceSnapshots.makeTest(overrides));
|
|
26559
26559
|
};
|
|
26560
26560
|
//#endregion
|
|
26561
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
26561
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.0_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/Workspaces.js
|
|
26562
26562
|
const compose = (options, catalogsFactory) => {
|
|
26563
26563
|
const roots = WorkspaceRoot.layer;
|
|
26564
26564
|
const detector = PackageManagerDetector.layer;
|