@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
|
@@ -403,7 +403,7 @@ const trimTrailingSlashes = (s) => {
|
|
|
403
403
|
return s.slice(0, end);
|
|
404
404
|
};
|
|
405
405
|
//#endregion
|
|
406
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
406
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/limits.js
|
|
407
407
|
/** Hard cap on pattern length. Upstream minimatch's MAX_PATTERN_LENGTH (64KB). */
|
|
408
408
|
const MAX_PATTERN_LENGTH = 65536;
|
|
409
409
|
/** Default brace-expansion output budget. Upstream brace-expansion's EXPANSION_MAX. */
|
|
@@ -437,7 +437,7 @@ const assertCap = (name, value) => {
|
|
|
437
437
|
return value;
|
|
438
438
|
};
|
|
439
439
|
//#endregion
|
|
440
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
440
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/unescape.js
|
|
441
441
|
/**
|
|
442
442
|
* Un-escape a string that has been escaped with `escape`.
|
|
443
443
|
*
|
|
@@ -460,11 +460,11 @@ const unescapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = true
|
|
|
460
460
|
return windowsPathsNoEscape ? s.replace(/\[([^/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\{}])\]/g, "$1$2").replace(/\\([^/{}])/g, "$1");
|
|
461
461
|
};
|
|
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/types.js
|
|
464
464
|
/** The globstar marker in a compiled pattern set. */
|
|
465
465
|
const GLOBSTAR = Symbol("globstar **");
|
|
466
466
|
//#endregion
|
|
467
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
467
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/escape.js
|
|
468
468
|
/**
|
|
469
469
|
* Escape all magic characters in a glob pattern.
|
|
470
470
|
*
|
|
@@ -482,13 +482,13 @@ const escapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = false
|
|
|
482
482
|
return windowsPathsNoEscape ? s.replace(/[?*()[\]]/g, "[$&]") : s.replace(/[?*()[\]\\]/g, "\\$&");
|
|
483
483
|
};
|
|
484
484
|
//#endregion
|
|
485
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
485
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/assertValidPattern.js
|
|
486
486
|
const assertValidPattern = (pattern) => {
|
|
487
487
|
if (typeof pattern !== "string") throw new TypeError("invalid pattern");
|
|
488
488
|
if (pattern.length > 65536) throw new GuardExceeded("PatternTooLong", MAX_PATTERN_LENGTH, pattern.length);
|
|
489
489
|
};
|
|
490
490
|
//#endregion
|
|
491
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
491
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/braceExpressions.js
|
|
492
492
|
const posixClasses = {
|
|
493
493
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
494
494
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -611,7 +611,7 @@ const parseClass = (glob, position) => {
|
|
|
611
611
|
];
|
|
612
612
|
};
|
|
613
613
|
//#endregion
|
|
614
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
614
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/ast.js
|
|
615
615
|
const types = /* @__PURE__ */ new Set([
|
|
616
616
|
"!",
|
|
617
617
|
"?",
|
|
@@ -1128,7 +1128,7 @@ var AST = class AST {
|
|
|
1128
1128
|
}
|
|
1129
1129
|
};
|
|
1130
1130
|
//#endregion
|
|
1131
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
1131
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/balancedMatch.js
|
|
1132
1132
|
const maybeMatch = (reg, str) => {
|
|
1133
1133
|
const m = str.match(reg);
|
|
1134
1134
|
return m ? m[0] : null;
|
|
@@ -1186,7 +1186,7 @@ const range = (a, b, str) => {
|
|
|
1186
1186
|
return result;
|
|
1187
1187
|
};
|
|
1188
1188
|
//#endregion
|
|
1189
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
1189
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/braceExpansion.js
|
|
1190
1190
|
const escSlash = `\0SLASH${Math.random()}\0`;
|
|
1191
1191
|
const escOpen = `\0OPEN${Math.random()}\0`;
|
|
1192
1192
|
const escClose = `\0CLOSE${Math.random()}\0`;
|
|
@@ -1333,7 +1333,7 @@ function expand_(str, max, isTopInput, depth) {
|
|
|
1333
1333
|
}
|
|
1334
1334
|
}
|
|
1335
1335
|
//#endregion
|
|
1336
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
1336
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/minimatch.js
|
|
1337
1337
|
const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
|
|
1338
1338
|
const starDotExtTest = (ext) => (f) => !f.startsWith(".") && f.endsWith(ext);
|
|
1339
1339
|
const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
|
|
@@ -1906,7 +1906,7 @@ var Minimatch = class {
|
|
|
1906
1906
|
}
|
|
1907
1907
|
};
|
|
1908
1908
|
//#endregion
|
|
1909
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
1909
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/GlobPattern.js
|
|
1910
1910
|
/**
|
|
1911
1911
|
* Typed failure raised when a glob pattern trips a compile-time guard:
|
|
1912
1912
|
* over-length, brace-expansion budget exhaustion, or nesting past the depth
|
|
@@ -2185,7 +2185,7 @@ var GlobPattern = class GlobPattern extends effect.Schema.Class("GlobPattern")(e
|
|
|
2185
2185
|
})));
|
|
2186
2186
|
};
|
|
2187
2187
|
//#endregion
|
|
2188
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
2188
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/GlobSet.js
|
|
2189
2189
|
const exclusionTarget = (pattern) => pattern.startsWith("!") ? pattern.slice(1) : void 0;
|
|
2190
2190
|
const allCompileUnderDefaults = (patterns) => {
|
|
2191
2191
|
for (const pattern of patterns) {
|
|
@@ -2339,7 +2339,7 @@ var GlobSet = class GlobSet extends effect.Schema.Class("GlobSet")(effect.Schema
|
|
|
2339
2339
|
}
|
|
2340
2340
|
};
|
|
2341
2341
|
//#endregion
|
|
2342
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
2342
|
+
//#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
|
|
2343
2343
|
/**
|
|
2344
2344
|
* Extension data specific to bun lockfiles, attached to `Lockfile.extension`
|
|
2345
2345
|
* when the format is `"bun"`.
|
|
@@ -2360,7 +2360,7 @@ var BunExtension = class extends effect.Schema.Class("BunExtension")({
|
|
|
2360
2360
|
trustedDependencies: effect.Schema.optionalKey(effect.Schema.Array(effect.Schema.String))
|
|
2361
2361
|
}) {};
|
|
2362
2362
|
//#endregion
|
|
2363
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2363
|
+
//#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
|
|
2364
2364
|
/**
|
|
2365
2365
|
* Contract for resolving pnpm `catalog:` dependency specifiers to concrete
|
|
2366
2366
|
* version ranges.
|
|
@@ -2406,7 +2406,7 @@ var CatalogResolver = class CatalogResolver extends effect.Context.Service()("@e
|
|
|
2406
2406
|
static noop = effect.Layer.succeed(CatalogResolver, { rangeOf: () => effect.Effect.succeed(effect.Option.none()) });
|
|
2407
2407
|
};
|
|
2408
2408
|
//#endregion
|
|
2409
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2409
|
+
//#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
|
|
2410
2410
|
/**
|
|
2411
2411
|
* Raised when a `catalog:` or `workspace:` specifier cannot be resolved
|
|
2412
2412
|
* because the resolution mechanism itself failed — not for an ordinary
|
|
@@ -2467,7 +2467,7 @@ var WorkspaceResolver = class WorkspaceResolver extends effect.Context.Service()
|
|
|
2467
2467
|
static noop = effect.Layer.succeed(WorkspaceResolver, { versionOf: () => effect.Effect.succeed(effect.Option.none()) });
|
|
2468
2468
|
};
|
|
2469
2469
|
//#endregion
|
|
2470
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2470
|
+
//#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
|
|
2471
2471
|
/**
|
|
2472
2472
|
* Raised when a workspace's catalogs cannot be assembled — a `pnpm-workspace.yaml`
|
|
2473
2473
|
* that is unreadable or not valid YAML, a root `package.json` `workspaces` field
|
|
@@ -2511,7 +2511,7 @@ var CatalogAssemblyError = class extends effect.Schema.TaggedError()("CatalogAss
|
|
|
2511
2511
|
}
|
|
2512
2512
|
};
|
|
2513
2513
|
//#endregion
|
|
2514
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2514
|
+
//#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
|
|
2515
2515
|
/**
|
|
2516
2516
|
* The short dependency kind: which dependency map an entry came from, named the
|
|
2517
2517
|
* way consumers branch on it.
|
|
@@ -2543,7 +2543,7 @@ Object.fromEntries(Object.entries({
|
|
|
2543
2543
|
optional: "optionalDependencies"
|
|
2544
2544
|
}).map(([kind, field]) => [field, kind]));
|
|
2545
2545
|
//#endregion
|
|
2546
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
2546
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/desugar.js
|
|
2547
2547
|
const sv = (major, minor, patch, prerelease = [], build = []) => ({
|
|
2548
2548
|
major,
|
|
2549
2549
|
minor,
|
|
@@ -2632,7 +2632,7 @@ const desugarHyphen = (lower, upper) => {
|
|
|
2632
2632
|
return [comp(">=", lowerVersion)];
|
|
2633
2633
|
};
|
|
2634
2634
|
//#endregion
|
|
2635
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
2635
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/grammar.js
|
|
2636
2636
|
/** Private control-flow exception; never escapes the entry points. */
|
|
2637
2637
|
var ParseFailure = class {
|
|
2638
2638
|
position;
|
|
@@ -3032,7 +3032,7 @@ const formatComparator = (c) => {
|
|
|
3032
3032
|
/** Print comparator sets as `a b || c d`. */
|
|
3033
3033
|
const formatRange = (sets) => sets.map((set) => set.map(formatComparator).join(" ")).join(" || ");
|
|
3034
3034
|
//#endregion
|
|
3035
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3035
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/order.js
|
|
3036
3036
|
/**
|
|
3037
3037
|
* Compare two prerelease identifiers per SemVer 2.0.0 §11: numeric
|
|
3038
3038
|
* identifiers always have lower precedence than alphanumeric ones; numerics
|
|
@@ -3085,7 +3085,7 @@ const compareBuild = (a, b) => {
|
|
|
3085
3085
|
return 0;
|
|
3086
3086
|
};
|
|
3087
3087
|
//#endregion
|
|
3088
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3088
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/SemVer.js
|
|
3089
3089
|
/**
|
|
3090
3090
|
* Indicates that a string could not be parsed as a valid SemVer 2.0.0 version.
|
|
3091
3091
|
*
|
|
@@ -3596,7 +3596,7 @@ var SemVerBump = class {
|
|
|
3596
3596
|
}
|
|
3597
3597
|
};
|
|
3598
3598
|
//#endregion
|
|
3599
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3599
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/Comparator.js
|
|
3600
3600
|
/**
|
|
3601
3601
|
* Indicates that a string could not be parsed as a single comparator.
|
|
3602
3602
|
*
|
|
@@ -3730,7 +3730,7 @@ var Comparator = class Comparator extends effect.Schema.Class("Comparator")({
|
|
|
3730
3730
|
}
|
|
3731
3731
|
};
|
|
3732
3732
|
//#endregion
|
|
3733
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3733
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/normalize.js
|
|
3734
3734
|
const operatorWeight = (op) => {
|
|
3735
3735
|
switch (op) {
|
|
3736
3736
|
case ">=": return 0;
|
|
@@ -3761,7 +3761,7 @@ const normalizeComparatorSet = (set) => sortComparators(removeDuplicates(set));
|
|
|
3761
3761
|
/** Normalize every comparator set in a range: sort and deduplicate each independently. */
|
|
3762
3762
|
const normalizeSets = (sets) => sets.map(normalizeComparatorSet);
|
|
3763
3763
|
//#endregion
|
|
3764
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3764
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/Range.js
|
|
3765
3765
|
/**
|
|
3766
3766
|
* Indicates that a string could not be parsed as a range expression.
|
|
3767
3767
|
*
|
|
@@ -4126,7 +4126,7 @@ const isComparatorSetSubset = (sub, sup) => {
|
|
|
4126
4126
|
return true;
|
|
4127
4127
|
};
|
|
4128
4128
|
//#endregion
|
|
4129
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
4129
|
+
//#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
|
|
4130
4130
|
/**
|
|
4131
4131
|
* Indicates that a string could not be parsed as a valid dependency specifier.
|
|
4132
4132
|
*
|
|
@@ -4333,7 +4333,7 @@ const DependencySpecifier = Object.assign(brandedSpecifier, {
|
|
|
4333
4333
|
FromString: fromString
|
|
4334
4334
|
});
|
|
4335
4335
|
//#endregion
|
|
4336
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
4336
|
+
//#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
|
|
4337
4337
|
const SRI_RE = /^(sha1|sha256|sha384|sha512)-[A-Za-z0-9+/]+={0,2}$/;
|
|
4338
4338
|
const COREPACK_RE = /^(sha1|sha224|sha256|sha384|sha512)\.[0-9a-f]+$/;
|
|
4339
4339
|
const YARN_RE = /^[0-9]+(c[0-9]+)?\/[0-9a-f]+$/;
|
|
@@ -4632,7 +4632,7 @@ var LocalExec = class LocalExec extends effect.Context.Service()("@effected/comm
|
|
|
4632
4632
|
static layerTest = (overrides = {}) => effect.Layer.succeed(LocalExec, LocalExec.makeTest(overrides));
|
|
4633
4633
|
};
|
|
4634
4634
|
//#endregion
|
|
4635
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.
|
|
4635
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/commands/Redaction.js
|
|
4636
4636
|
/**
|
|
4637
4637
|
* Argument tokens whose *following* positional (or `=`-joined value) is a
|
|
4638
4638
|
* secret. Lowercase; matching is case-insensitive.
|
|
@@ -4755,7 +4755,7 @@ var Redaction = class {
|
|
|
4755
4755
|
static SECRET_FLAGS = SECRET_FLAGS;
|
|
4756
4756
|
};
|
|
4757
4757
|
//#endregion
|
|
4758
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.
|
|
4758
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/commands/internal/capture.js
|
|
4759
4759
|
/**
|
|
4760
4760
|
* Raised when a captured stream exceeds its byte budget.
|
|
4761
4761
|
*
|
|
@@ -4782,7 +4782,7 @@ const collectBounded = (stream, limit) => effect.Effect.gen(function* () {
|
|
|
4782
4782
|
return yield* effect.Stream.mkString(effect.Stream.decodeText(bounded));
|
|
4783
4783
|
});
|
|
4784
4784
|
//#endregion
|
|
4785
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.
|
|
4785
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/commands/Run.js
|
|
4786
4786
|
/**
|
|
4787
4787
|
* Default ceiling on captured bytes per stream (16 MiB).
|
|
4788
4788
|
*
|
|
@@ -5303,7 +5303,7 @@ var Run = class {
|
|
|
5303
5303
|
static REDACTED = "***";
|
|
5304
5304
|
};
|
|
5305
5305
|
//#endregion
|
|
5306
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
5306
|
+
//#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
|
|
5307
5307
|
const MS_PER_MINUTE = 6e4;
|
|
5308
5308
|
/**
|
|
5309
5309
|
* A source's partial contribution to a {@link ReleaseAgeGate}: the effective
|
|
@@ -5473,7 +5473,7 @@ var ReleaseAgeGate = class ReleaseAgeGate extends effect.Schema.Class("ReleaseAg
|
|
|
5473
5473
|
}
|
|
5474
5474
|
};
|
|
5475
5475
|
//#endregion
|
|
5476
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5476
|
+
//#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
|
|
5477
5477
|
/**
|
|
5478
5478
|
* One declared dependency of one workspace importer, as the lockfile records it.
|
|
5479
5479
|
*
|
|
@@ -5511,7 +5511,7 @@ var ImporterDependency = class extends effect.Schema.Class("ImporterDependency")
|
|
|
5511
5511
|
depType: DependencyField
|
|
5512
5512
|
}) {};
|
|
5513
5513
|
//#endregion
|
|
5514
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5514
|
+
//#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
|
|
5515
5515
|
/**
|
|
5516
5516
|
* One workspace importer's declared dependencies, as the lockfile records them.
|
|
5517
5517
|
*
|
|
@@ -5535,7 +5535,7 @@ var LockfileImporter = class extends effect.Schema.Class("LockfileImporter")({
|
|
|
5535
5535
|
dependencies: effect.Schema.Array(ImporterDependency)
|
|
5536
5536
|
}) {};
|
|
5537
5537
|
//#endregion
|
|
5538
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5538
|
+
//#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
|
|
5539
5539
|
const EMPTY_DEPENDENCIES = {};
|
|
5540
5540
|
/**
|
|
5541
5541
|
* A package resolved from a lockfile.
|
|
@@ -5570,7 +5570,7 @@ var ResolvedPackage = class extends effect.Schema.Class("ResolvedPackage")({
|
|
|
5570
5570
|
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)))
|
|
5571
5571
|
}) {};
|
|
5572
5572
|
//#endregion
|
|
5573
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5573
|
+
//#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
|
|
5574
5574
|
/**
|
|
5575
5575
|
* A directed dependency edge between two workspace packages as recorded in
|
|
5576
5576
|
* the lockfile.
|
|
@@ -5592,7 +5592,7 @@ var WorkspaceDependency = class extends effect.Schema.Class("WorkspaceDependency
|
|
|
5592
5592
|
constraint: effect.Schema.String
|
|
5593
5593
|
}) {};
|
|
5594
5594
|
//#endregion
|
|
5595
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5595
|
+
//#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
|
|
5596
5596
|
/**
|
|
5597
5597
|
* Extension data specific to pnpm lockfiles, attached to `Lockfile.extension`
|
|
5598
5598
|
* when the format is `"pnpm"`.
|
|
@@ -5617,7 +5617,7 @@ var PnpmExtension = class extends effect.Schema.Class("PnpmExtension")({
|
|
|
5617
5617
|
}))
|
|
5618
5618
|
}) {};
|
|
5619
5619
|
//#endregion
|
|
5620
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5620
|
+
//#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
|
|
5621
5621
|
/**
|
|
5622
5622
|
* The lockfile formats this package parses: bun's `bun.lock` (JSONC), npm's
|
|
5623
5623
|
* `package-lock.json` (v2/v3 JSON), pnpm's `pnpm-lock.yaml` and yarn Berry's
|
|
@@ -5655,7 +5655,7 @@ const FILENAMES = {
|
|
|
5655
5655
|
*/
|
|
5656
5656
|
const filenameFor = (format) => FILENAMES[format][0];
|
|
5657
5657
|
//#endregion
|
|
5658
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5658
|
+
//#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
|
|
5659
5659
|
/**
|
|
5660
5660
|
* The four dependency sections of a manifest, in a stable order — the shared
|
|
5661
5661
|
* dependency-sections table (v3's `DEP_SECTIONS`). Each entry is both the
|
|
@@ -5813,7 +5813,7 @@ const extractWorkspaceDeps = (workspaces, workspaceNames) => {
|
|
|
5813
5813
|
return deps;
|
|
5814
5814
|
};
|
|
5815
5815
|
//#endregion
|
|
5816
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
5816
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncNode.js
|
|
5817
5817
|
/**
|
|
5818
5818
|
* Discriminator values for JSONC AST node types: the JSON value types
|
|
5819
5819
|
* (`string`/`number`/`boolean`/`null`), the structural types
|
|
@@ -5988,7 +5988,7 @@ function evaluateNode(node, depth) {
|
|
|
5988
5988
|
}
|
|
5989
5989
|
}
|
|
5990
5990
|
//#endregion
|
|
5991
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
5991
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/scanner.js
|
|
5992
5992
|
const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
|
|
5993
5993
|
const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
|
|
5994
5994
|
const isDigit$1 = (ch) => ch >= 48 && ch <= 57;
|
|
@@ -6282,7 +6282,7 @@ const createScanner$2 = (text, ignoreTrivia = false) => {
|
|
|
6282
6282
|
};
|
|
6283
6283
|
};
|
|
6284
6284
|
//#endregion
|
|
6285
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
6285
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/skip.js
|
|
6286
6286
|
/**
|
|
6287
6287
|
* Iteratively consume the value beginning at the cursor's current token and
|
|
6288
6288
|
* return its tight end offset (excludes trailing whitespace/comments).
|
|
@@ -6312,7 +6312,7 @@ const skipBalancedValue = (cursor) => {
|
|
|
6312
6312
|
return end;
|
|
6313
6313
|
};
|
|
6314
6314
|
//#endregion
|
|
6315
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
6315
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/parser.js
|
|
6316
6316
|
/**
|
|
6317
6317
|
* The public parse-error code vocabulary. The facade builds its `@public`
|
|
6318
6318
|
* `JsoncParseErrorCode` schema from this array; the parser produces these codes
|
|
@@ -6725,7 +6725,7 @@ const parseTree$2 = (text, flags) => {
|
|
|
6725
6725
|
};
|
|
6726
6726
|
};
|
|
6727
6727
|
//#endregion
|
|
6728
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
6728
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/Jsonc.js
|
|
6729
6729
|
/**
|
|
6730
6730
|
* The single public parse-error code vocabulary, appearing as the `code` field
|
|
6731
6731
|
* of {@link JsoncParseErrorDetail}.
|
|
@@ -7329,7 +7329,7 @@ var JsoncEdit = class extends effect.Schema.Class("JsoncEdit")({
|
|
|
7329
7329
|
}
|
|
7330
7330
|
};
|
|
7331
7331
|
//#endregion
|
|
7332
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
7332
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/navigate.js
|
|
7333
7333
|
/**
|
|
7334
7334
|
* Resolve `path` against `text`, returning where the target is (or where it
|
|
7335
7335
|
* would be inserted). `path` must be non-empty — the whole-document case is
|
|
@@ -7456,7 +7456,7 @@ function navigate(text, path) {
|
|
|
7456
7456
|
return { _tag: "NoOp" };
|
|
7457
7457
|
}
|
|
7458
7458
|
//#endregion
|
|
7459
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
7459
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncModifier.js
|
|
7460
7460
|
/**
|
|
7461
7461
|
* Raised when `JsoncModifier.modify` cannot navigate the requested path: the
|
|
7462
7462
|
* value at `depth` is not the container kind (`expected`) the next path segment
|
|
@@ -7584,7 +7584,7 @@ var JsoncModifier = class {
|
|
|
7584
7584
|
});
|
|
7585
7585
|
};
|
|
7586
7586
|
//#endregion
|
|
7587
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
7587
|
+
//#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
|
|
7588
7588
|
const DepRecord$2 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
7589
7589
|
const BunWorkspaceEntry = effect.Schema.Struct({
|
|
7590
7590
|
name: effect.Schema.optionalKey(effect.Schema.String),
|
|
@@ -7677,7 +7677,7 @@ const toFields$3 = (raw) => effect.Effect.gen(function* () {
|
|
|
7677
7677
|
};
|
|
7678
7678
|
});
|
|
7679
7679
|
//#endregion
|
|
7680
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
7680
|
+
//#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
|
|
7681
7681
|
const DepRecord$1 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
7682
7682
|
const NpmPackageEntry = effect.Schema.Struct({
|
|
7683
7683
|
name: effect.Schema.optionalKey(effect.Schema.String),
|
|
@@ -7775,7 +7775,7 @@ const toFields$2 = (raw) => effect.Effect.gen(function* () {
|
|
|
7775
7775
|
};
|
|
7776
7776
|
});
|
|
7777
7777
|
//#endregion
|
|
7778
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
7778
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/YamlNode.js
|
|
7779
7779
|
/**
|
|
7780
7780
|
* YAML scalar presentation styles.
|
|
7781
7781
|
*
|
|
@@ -8216,7 +8216,7 @@ function nodeToValue(node, anchors, budget, counting = false) {
|
|
|
8216
8216
|
return null;
|
|
8217
8217
|
}
|
|
8218
8218
|
//#endregion
|
|
8219
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
8219
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/diagnostics.js
|
|
8220
8220
|
/** Error codes emitted by the lexer stage. */
|
|
8221
8221
|
const YAML_LEX_ERROR_CODES = [
|
|
8222
8222
|
"UnexpectedCharacter",
|
|
@@ -8303,7 +8303,7 @@ function isFatalCode(code) {
|
|
|
8303
8303
|
return FATAL_CODES.has(code);
|
|
8304
8304
|
}
|
|
8305
8305
|
//#endregion
|
|
8306
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
8306
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/YamlDiagnostic.js
|
|
8307
8307
|
/**
|
|
8308
8308
|
* Error codes emitted by the lexer stage.
|
|
8309
8309
|
*
|
|
@@ -8424,7 +8424,7 @@ function lineChar(text, offset) {
|
|
|
8424
8424
|
};
|
|
8425
8425
|
}
|
|
8426
8426
|
//#endregion
|
|
8427
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
8427
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/lexer.js
|
|
8428
8428
|
/**
|
|
8429
8429
|
* Create a new YAML scanner for the given source text.
|
|
8430
8430
|
*
|
|
@@ -9387,7 +9387,7 @@ function lexAll(text) {
|
|
|
9387
9387
|
return tokens;
|
|
9388
9388
|
}
|
|
9389
9389
|
//#endregion
|
|
9390
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
9390
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/cst-parser.js
|
|
9391
9391
|
/**
|
|
9392
9392
|
* Hardening: cap CST nesting so hostile inputs cannot overflow the stack
|
|
9393
9393
|
* while the tree is being BUILT. Set slightly above the composer's
|
|
@@ -10108,7 +10108,7 @@ function parseCSTAll(text) {
|
|
|
10108
10108
|
return parseDocuments(lexAll(text), text);
|
|
10109
10109
|
}
|
|
10110
10110
|
//#endregion
|
|
10111
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10111
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/anchors.js
|
|
10112
10112
|
/**
|
|
10113
10113
|
* Check if a pending anchor is being applied to an alias node (invalid in YAML 1.2 §3.2.2).
|
|
10114
10114
|
* Aliases represent references to existing anchored nodes and cannot have their own anchors.
|
|
@@ -10176,7 +10176,7 @@ function scanName(text, start) {
|
|
|
10176
10176
|
return text.slice(start, end);
|
|
10177
10177
|
}
|
|
10178
10178
|
//#endregion
|
|
10179
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10179
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/comments.js
|
|
10180
10180
|
/** True when there is no line break between `start` and `end` in `text`. */
|
|
10181
10181
|
function sameLineSpan(text, start, end) {
|
|
10182
10182
|
if (start < 0) return false;
|
|
@@ -10389,7 +10389,7 @@ function mergedCommentFields(existing, incoming) {
|
|
|
10389
10389
|
};
|
|
10390
10390
|
}
|
|
10391
10391
|
//#endregion
|
|
10392
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10392
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/state.js
|
|
10393
10393
|
let lineStartsText;
|
|
10394
10394
|
let lineStartsCache = [];
|
|
10395
10395
|
function getLineStarts(text) {
|
|
@@ -10509,7 +10509,7 @@ function exitNesting(state) {
|
|
|
10509
10509
|
state.depth--;
|
|
10510
10510
|
}
|
|
10511
10511
|
//#endregion
|
|
10512
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10512
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/tags.js
|
|
10513
10513
|
/**
|
|
10514
10514
|
* Resolve a tag shorthand using the document's %TAG directives.
|
|
10515
10515
|
* For example, with `%TAG !! tag:example.com,2000:app/`, the tag `!!int`
|
|
@@ -10595,7 +10595,7 @@ function validateTagHandlesInDocument(docCst, state) {
|
|
|
10595
10595
|
}
|
|
10596
10596
|
}
|
|
10597
10597
|
//#endregion
|
|
10598
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10598
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/scalars.js
|
|
10599
10599
|
const NULL_RE$1 = /^(?:null|Null|NULL|~)$/;
|
|
10600
10600
|
const TRUE_RE$1 = /^(?:true|True|TRUE)$/;
|
|
10601
10601
|
const FALSE_RE$1 = /^(?:false|False|FALSE)$/;
|
|
@@ -11521,7 +11521,7 @@ function shouldPreserveRaw(rawValue, value) {
|
|
|
11521
11521
|
return false;
|
|
11522
11522
|
}
|
|
11523
11523
|
//#endregion
|
|
11524
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
11524
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/block.js
|
|
11525
11525
|
/**
|
|
11526
11526
|
* Compose a block map from its CST children, with an optional external first key.
|
|
11527
11527
|
*
|
|
@@ -12894,7 +12894,7 @@ function composeFlatBlockMap(children, startIdx, parentCst, state, externalFirst
|
|
|
12894
12894
|
return map;
|
|
12895
12895
|
}
|
|
12896
12896
|
//#endregion
|
|
12897
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
12897
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/flow.js
|
|
12898
12898
|
/**
|
|
12899
12899
|
* Validate that flow collection entries are separated by commas.
|
|
12900
12900
|
*
|
|
@@ -13378,7 +13378,7 @@ function composeFlowSeqInner(cst, state, meta, parentBlockColumn) {
|
|
|
13378
13378
|
return seq;
|
|
13379
13379
|
}
|
|
13380
13380
|
//#endregion
|
|
13381
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
13381
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/document.js
|
|
13382
13382
|
/** The flow-composer dispatch wired into every state this module creates. */
|
|
13383
13383
|
const FLOW = {
|
|
13384
13384
|
composeFlowMap,
|
|
@@ -14170,7 +14170,7 @@ function stripOwnComment(node) {
|
|
|
14170
14170
|
});
|
|
14171
14171
|
}
|
|
14172
14172
|
//#endregion
|
|
14173
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
14173
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/fold.js
|
|
14174
14174
|
/**
|
|
14175
14175
|
* Column-based line folding for a single logical scalar line (YAML 1.2 flow
|
|
14176
14176
|
* folding, §7.3 / §8.2.1). Breaks the content at "safe" single-space
|
|
@@ -14418,7 +14418,7 @@ function renderBlockFolded(s, indent, explicitChomp, explicitIndent) {
|
|
|
14418
14418
|
return `>${indentIndicator}${chomp}\n${outputLines.join("\n")}`;
|
|
14419
14419
|
}
|
|
14420
14420
|
//#endregion
|
|
14421
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
14421
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/stringifier.js
|
|
14422
14422
|
/**
|
|
14423
14423
|
* Thrown by the stringifier on its failure paths (circular references). The
|
|
14424
14424
|
* facade catches this and materializes the public stringify error.
|
|
@@ -15454,7 +15454,7 @@ function deepEqualValues(a, b) {
|
|
|
15454
15454
|
return false;
|
|
15455
15455
|
}
|
|
15456
15456
|
//#endregion
|
|
15457
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15457
|
+
//#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
|
|
15458
15458
|
/**
|
|
15459
15459
|
* An empty YAML document composes to `null` (`Yaml.parseAll("")` is `[null]`,
|
|
15460
15460
|
* and the trailing document of an env-only `pnpm-lock.yaml` is `null` too).
|
|
@@ -15524,7 +15524,7 @@ const selectSoleDocument = (content) => effect.Effect.gen(function* () {
|
|
|
15524
15524
|
};
|
|
15525
15525
|
});
|
|
15526
15526
|
//#endregion
|
|
15527
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15527
|
+
//#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
|
|
15528
15528
|
const PnpmImporterDeps = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.Struct({
|
|
15529
15529
|
specifier: effect.Schema.String,
|
|
15530
15530
|
version: effect.Schema.String
|
|
@@ -15649,7 +15649,7 @@ const toFields$1 = (raw) => effect.Effect.gen(function* () {
|
|
|
15649
15649
|
};
|
|
15650
15650
|
});
|
|
15651
15651
|
//#endregion
|
|
15652
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15652
|
+
//#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
|
|
15653
15653
|
const YarnLockfileRaw = effect.Schema.Record(effect.Schema.String, effect.Schema.Unknown);
|
|
15654
15654
|
const DepRecord = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
15655
15655
|
const YarnEntry = effect.Schema.Struct({
|
|
@@ -15772,7 +15772,7 @@ const cleanYarnDeps = (deps) => {
|
|
|
15772
15772
|
return Object.fromEntries(Object.entries(deps).map(([name, value]) => [name, value.startsWith("npm:") ? value.slice(4) : value]));
|
|
15773
15773
|
};
|
|
15774
15774
|
//#endregion
|
|
15775
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15775
|
+
//#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
|
|
15776
15776
|
const EMPTY_IMPORTERS = [];
|
|
15777
15777
|
/**
|
|
15778
15778
|
* Failure of `Lockfile.parse`: the given content is not a valid lockfile of
|
|
@@ -16016,7 +16016,7 @@ var Lockfile = class Lockfile extends effect.Schema.Class("Lockfile")({
|
|
|
16016
16016
|
}
|
|
16017
16017
|
};
|
|
16018
16018
|
//#endregion
|
|
16019
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
16019
|
+
//#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
|
|
16020
16020
|
/**
|
|
16021
16021
|
* The minimal manifest shape {@link LockfileIntegrity.compare} checks a
|
|
16022
16022
|
* lockfile against: a package name plus the four optional dependency maps.
|
|
@@ -16132,7 +16132,7 @@ var LockfileIntegrity = class LockfileIntegrity extends effect.Schema.Class("Loc
|
|
|
16132
16132
|
}
|
|
16133
16133
|
};
|
|
16134
16134
|
//#endregion
|
|
16135
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
16135
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Dependency.js
|
|
16136
16136
|
/**
|
|
16137
16137
|
* A resolved dependency entry pairing a package name with its version
|
|
16138
16138
|
* specifier and the `kind` of map it came from (`@effected/npm`'s
|
|
@@ -16196,7 +16196,7 @@ var Dependency = class extends effect.Schema.Class("Dependency")({
|
|
|
16196
16196
|
}
|
|
16197
16197
|
};
|
|
16198
16198
|
//#endregion
|
|
16199
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
16199
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/DevEngines.js
|
|
16200
16200
|
/**
|
|
16201
16201
|
* A single `devEngines` constraint with a name and optional `version` / `onFail`.
|
|
16202
16202
|
*
|
|
@@ -16234,7 +16234,7 @@ const DevEnginesSchema = effect.Schema.Struct({
|
|
|
16234
16234
|
libc: effect.Schema.optionalKey(DevEngineOrArray)
|
|
16235
16235
|
});
|
|
16236
16236
|
//#endregion
|
|
16237
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
16237
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/internal/licenseIds.js
|
|
16238
16238
|
/** @internal */
|
|
16239
16239
|
const ACTIVE_LICENSE_IDS = [
|
|
16240
16240
|
"0BSD",
|
|
@@ -16967,7 +16967,7 @@ const LICENSE_IDS = new Set(ACTIVE_LICENSE_IDS);
|
|
|
16967
16967
|
/** @internal */
|
|
16968
16968
|
const DEPRECATED_LICENSE_IDS = new Set(DEPRECATED_LICENSE_ID_LIST);
|
|
16969
16969
|
//#endregion
|
|
16970
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
16970
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/License.js
|
|
16971
16971
|
/**
|
|
16972
16972
|
* Indicates that a string is not a valid SPDX expression fragment: an
|
|
16973
16973
|
* unrecognized license or exception identifier, or a malformed
|
|
@@ -17136,7 +17136,7 @@ var License = class License extends effect.Schema.Class("License")({
|
|
|
17136
17136
|
}
|
|
17137
17137
|
};
|
|
17138
17138
|
//#endregion
|
|
17139
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17139
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/internal/exceptions.js
|
|
17140
17140
|
/** @internal */
|
|
17141
17141
|
const ACTIVE_EXCEPTION_IDS = [
|
|
17142
17142
|
"389-exception",
|
|
@@ -17213,7 +17213,7 @@ const EXCEPTION_IDS = new Set(ACTIVE_EXCEPTION_IDS);
|
|
|
17213
17213
|
/** @internal */
|
|
17214
17214
|
const DEPRECATED_EXCEPTION_IDS = new Set(DEPRECATED_EXCEPTION_ID_LIST);
|
|
17215
17215
|
//#endregion
|
|
17216
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17216
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/LicenseException.js
|
|
17217
17217
|
/**
|
|
17218
17218
|
* A validated SPDX license-exception identifier: an Effect `Schema.Class` whose
|
|
17219
17219
|
* `id` is a member of the SPDX exception list. The class doubles as its own
|
|
@@ -17333,7 +17333,7 @@ var LicenseException = class LicenseException extends effect.Schema.Class("Licen
|
|
|
17333
17333
|
}
|
|
17334
17334
|
};
|
|
17335
17335
|
//#endregion
|
|
17336
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17336
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/internal/parser.js
|
|
17337
17337
|
const TOKEN_OPEN_PAREN = 0;
|
|
17338
17338
|
const TOKEN_CLOSE_PAREN = 1;
|
|
17339
17339
|
const TOKEN_PLUS = 2;
|
|
@@ -17562,7 +17562,7 @@ function parse$2(input) {
|
|
|
17562
17562
|
return node;
|
|
17563
17563
|
}
|
|
17564
17564
|
//#endregion
|
|
17565
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17565
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/SpdxExpression.js
|
|
17566
17566
|
/**
|
|
17567
17567
|
* Serialize a tagged SPDX AST node — a class instance OR its encoded POJO — to
|
|
17568
17568
|
* the canonical, fully-parenthesized SPDX string. This is the single source of
|
|
@@ -17751,7 +17751,7 @@ effect.Schema.String.pipe(effect.Schema.decodeTo(SpdxExpressionUnion, effect.Sch
|
|
|
17751
17751
|
encode: (expression) => effect.Effect.succeed(serialize$1(expression))
|
|
17752
17752
|
})));
|
|
17753
17753
|
//#endregion
|
|
17754
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
17754
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/License.js
|
|
17755
17755
|
/**
|
|
17756
17756
|
* Indicates that a string is not a valid SPDX license identifier or expression.
|
|
17757
17757
|
*
|
|
@@ -17786,7 +17786,7 @@ const isValidSpdx = (value) => {
|
|
|
17786
17786
|
*/
|
|
17787
17787
|
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"));
|
|
17788
17788
|
//#endregion
|
|
17789
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
17789
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/PackageManager.js
|
|
17790
17790
|
const PACKAGE_MANAGER_NAME_RE = /^[a-z]+$/;
|
|
17791
17791
|
const invalid$1 = (input, message) => effect.Effect.fail(new effect.SchemaIssue.InvalidValue({ message }, input));
|
|
17792
17792
|
/**
|
|
@@ -17897,7 +17897,7 @@ var PackageManager = class PackageManager extends effect.Schema.Class("PackageMa
|
|
|
17897
17897
|
}
|
|
17898
17898
|
};
|
|
17899
17899
|
//#endregion
|
|
17900
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
17900
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/PackageName.js
|
|
17901
17901
|
/**
|
|
17902
17902
|
* Indicates that a string could not be used as a valid npm package name.
|
|
17903
17903
|
*
|
|
@@ -17955,7 +17955,7 @@ const PackageName = Object.assign(effect.Schema.Union([ScopedPackageName, Unscop
|
|
|
17955
17955
|
isScoped
|
|
17956
17956
|
});
|
|
17957
17957
|
//#endregion
|
|
17958
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
17958
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Person.js
|
|
17959
17959
|
const parsePersonString = (input) => {
|
|
17960
17960
|
const emailMatch = input.match(/<([^>]+)>/);
|
|
17961
17961
|
const urlMatch = input.match(/\(([^)]+)\)/);
|
|
@@ -18101,7 +18101,7 @@ var Person = class Person extends effect.Schema.Class("Person")({
|
|
|
18101
18101
|
}
|
|
18102
18102
|
};
|
|
18103
18103
|
//#endregion
|
|
18104
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18104
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Repository.js
|
|
18105
18105
|
/** The shorthand hosts npm resolves without a scheme. */
|
|
18106
18106
|
const SHORTHAND_HOSTS = /* @__PURE__ */ new Map([
|
|
18107
18107
|
["github", "https://github.com"],
|
|
@@ -18276,7 +18276,7 @@ var Bugs = class Bugs extends effect.Schema.Class("Bugs")({
|
|
|
18276
18276
|
})));
|
|
18277
18277
|
};
|
|
18278
18278
|
//#endregion
|
|
18279
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18279
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/internal/format.js
|
|
18280
18280
|
const KEY_INDEX = new Map([
|
|
18281
18281
|
"$schema",
|
|
18282
18282
|
"name",
|
|
@@ -18511,7 +18511,7 @@ const renderJson = (raw, options) => {
|
|
|
18511
18511
|
return options.newline ? `${json}\n` : json;
|
|
18512
18512
|
};
|
|
18513
18513
|
//#endregion
|
|
18514
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18514
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/internal/wire.js
|
|
18515
18515
|
const RawJson = effect.Schema.Record(effect.Schema.String, effect.Schema.Unknown);
|
|
18516
18516
|
/**
|
|
18517
18517
|
* Build the open-JSON ↔ class wire codec for a `Schema.Class` carrying a
|
|
@@ -18542,7 +18542,7 @@ const makeWire = (Class) => {
|
|
|
18542
18542
|
})));
|
|
18543
18543
|
};
|
|
18544
18544
|
//#endregion
|
|
18545
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18545
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Package.js
|
|
18546
18546
|
const toHashMap = effect.SchemaTransformation.transform({
|
|
18547
18547
|
decode: (record) => effect.HashMap.fromIterable(Object.entries(record)),
|
|
18548
18548
|
encode: (map) => Object.fromEntries(effect.HashMap.toEntries(map))
|
|
@@ -18829,7 +18829,7 @@ var Package = class Package extends effect.Schema.Class("Package")({
|
|
|
18829
18829
|
}
|
|
18830
18830
|
};
|
|
18831
18831
|
//#endregion
|
|
18832
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
18832
|
+
//#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
|
|
18833
18833
|
const EMPTY$1 = Object.freeze(Object.create(null));
|
|
18834
18834
|
const EMPTY_MANIFEST = Object.freeze(Object.create(null));
|
|
18835
18835
|
/**
|
|
@@ -19108,7 +19108,7 @@ var WorkspacePackage = class WorkspacePackage extends effect.Schema.Class("Works
|
|
|
19108
19108
|
}
|
|
19109
19109
|
};
|
|
19110
19110
|
//#endregion
|
|
19111
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
19111
|
+
//#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
|
|
19112
19112
|
/**
|
|
19113
19113
|
* Typed failure raised by {@link descend}: a directory mid-walk was unreadable
|
|
19114
19114
|
* (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
|
|
@@ -19243,7 +19243,7 @@ const descend = effect.Effect.fn("Walker.descend")(function* (pattern, options)
|
|
|
19243
19243
|
return results;
|
|
19244
19244
|
});
|
|
19245
19245
|
//#endregion
|
|
19246
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
19246
|
+
//#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
|
|
19247
19247
|
/**
|
|
19248
19248
|
* Typed failure raised by {@link compileAndExpand}: the single error the
|
|
19249
19249
|
* compile+expand recipe fails with, so a caller catches one tag rather than
|
|
@@ -19333,7 +19333,7 @@ const compileAndExpand = effect.Effect.fn("Walker.compileAndExpand")(function* (
|
|
|
19333
19333
|
})));
|
|
19334
19334
|
});
|
|
19335
19335
|
//#endregion
|
|
19336
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
19336
|
+
//#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
|
|
19337
19337
|
const ascend = (start, options) => effect.Effect.gen(function* () {
|
|
19338
19338
|
const path = yield* effect.Path.Path;
|
|
19339
19339
|
const maxDepth = options?.maxDepth ?? 256;
|
|
@@ -19427,7 +19427,7 @@ var Walker$1 = class {
|
|
|
19427
19427
|
static findRoot = findRoot$1;
|
|
19428
19428
|
};
|
|
19429
19429
|
//#endregion
|
|
19430
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19430
|
+
//#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
|
|
19431
19431
|
/**
|
|
19432
19432
|
* The marker filenames {@link WorkspaceRoot} probes for, in priority order.
|
|
19433
19433
|
*
|
|
@@ -19614,7 +19614,7 @@ var WorkspaceRoot = class WorkspaceRoot extends effect.Context.Service()("@effec
|
|
|
19614
19614
|
static layerTest = (root) => effect.Layer.effect(WorkspaceRoot, WorkspaceRoot.makeTest(root)).pipe(effect.Layer.provide(effect.Path.layer));
|
|
19615
19615
|
};
|
|
19616
19616
|
//#endregion
|
|
19617
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19617
|
+
//#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
|
|
19618
19618
|
/**
|
|
19619
19619
|
* Hard ceiling on directories the enumerator will visit for one pattern set.
|
|
19620
19620
|
* Guards the pathological case a depth cap alone does not: a wide, shallow
|
|
@@ -19632,7 +19632,7 @@ const MAX_ENUMERATION_ENTRIES = 1e5;
|
|
|
19632
19632
|
*/
|
|
19633
19633
|
const PRUNED_DIRECTORIES = /* @__PURE__ */ new Set([".git", "node_modules"]);
|
|
19634
19634
|
//#endregion
|
|
19635
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19635
|
+
//#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
|
|
19636
19636
|
/** Directory names never descended into. */
|
|
19637
19637
|
const isPruned = (entry) => PRUNED_DIRECTORIES.has(entry);
|
|
19638
19638
|
/** Join root-relative POSIX segments; `""` is the root itself. */
|
|
@@ -19722,7 +19722,7 @@ var Traversal = class {
|
|
|
19722
19722
|
}
|
|
19723
19723
|
};
|
|
19724
19724
|
//#endregion
|
|
19725
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19725
|
+
//#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
|
|
19726
19726
|
/** Strip a trailing slash from `GlobPattern.enumerationPrefix` to get a relative directory. */
|
|
19727
19727
|
const baseOf = (pattern) => pattern.enumerationPrefix.replace(/\/$/, "");
|
|
19728
19728
|
/**
|
|
@@ -19792,7 +19792,7 @@ const enumerate = (root, globs, options) => effect.Effect.gen(function* () {
|
|
|
19792
19792
|
return results;
|
|
19793
19793
|
});
|
|
19794
19794
|
//#endregion
|
|
19795
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19795
|
+
//#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
|
|
19796
19796
|
const stringsOf = (value) => Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : void 0;
|
|
19797
19797
|
/** The `packages:` list of a `pnpm-workspace.yaml` document. Total on a parsed document. */
|
|
19798
19798
|
const pnpmPatternsOf = (document) => {
|
|
@@ -19849,7 +19849,7 @@ const readPatterns = (root) => effect.Effect.gen(function* () {
|
|
|
19849
19849
|
return manifestPatternsOf(manifest);
|
|
19850
19850
|
});
|
|
19851
19851
|
//#endregion
|
|
19852
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19852
|
+
//#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
|
|
19853
19853
|
/**
|
|
19854
19854
|
* Raised when a workspace member's `package.json` cannot be read, parsed, or
|
|
19855
19855
|
* used — it is missing, malformed, or lacks a `name` or `version`.
|
|
@@ -20305,7 +20305,7 @@ var WorkspaceDiscovery = class WorkspaceDiscovery extends effect.Context.Service
|
|
|
20305
20305
|
};
|
|
20306
20306
|
const isStringRecord$2 = (value) => value !== null && typeof value === "object" && !Array.isArray(value) && Object.values(value).every((entry) => typeof entry === "string");
|
|
20307
20307
|
//#endregion
|
|
20308
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
20308
|
+
//#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
|
|
20309
20309
|
/**
|
|
20310
20310
|
* Raised when the workspace dependency graph cannot be topologically ordered
|
|
20311
20311
|
* because it contains a cycle.
|
|
@@ -20604,7 +20604,7 @@ const kahn = (edges) => {
|
|
|
20604
20604
|
};
|
|
20605
20605
|
};
|
|
20606
20606
|
//#endregion
|
|
20607
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.
|
|
20607
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.9.0_effect@4.0.0-rc.109/node_modules/@effected/git/GitCommand.js
|
|
20608
20608
|
/** The mask every whole-value sensitive positional is replaced with. */
|
|
20609
20609
|
const REDACTED = "<redacted>";
|
|
20610
20610
|
const secretValue = (value) => ({
|
|
@@ -21757,7 +21757,7 @@ var GitCommand = class {
|
|
|
21757
21757
|
static lsFiles = lsFiles;
|
|
21758
21758
|
};
|
|
21759
21759
|
//#endregion
|
|
21760
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.
|
|
21760
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.9.0_effect@4.0.0-rc.109/node_modules/@effected/git/internal/run.js
|
|
21761
21761
|
/**
|
|
21762
21762
|
* Spawns `command` and collects its stdout, stderr, and exit code as a single
|
|
21763
21763
|
* triple.
|
|
@@ -21784,7 +21784,7 @@ const runCollected = (command) => effect.Effect.scoped(effect.Effect.gen(functio
|
|
|
21784
21784
|
};
|
|
21785
21785
|
}));
|
|
21786
21786
|
//#endregion
|
|
21787
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.
|
|
21787
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.9.0_effect@4.0.0-rc.109/node_modules/@effected/git/Git.js
|
|
21788
21788
|
/** git's own ceiling: a run that has not answered in 30s is not going to. */
|
|
21789
21789
|
const GIT_TIMEOUT = effect.Duration.seconds(30);
|
|
21790
21790
|
/**
|
|
@@ -24001,7 +24001,7 @@ var Git = class Git extends effect.Context.Service()("@effected/git/Git") {
|
|
|
24001
24001
|
static layerTest = (overrides = {}) => effect.Layer.succeed(Git, Git.makeTest(overrides));
|
|
24002
24002
|
};
|
|
24003
24003
|
//#endregion
|
|
24004
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24004
|
+
//#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
|
|
24005
24005
|
/**
|
|
24006
24006
|
* Which git refs to compare, and whether to fold in the working tree.
|
|
24007
24007
|
*
|
|
@@ -24257,7 +24257,7 @@ function resolveFromCatalog(catalogs, wantedDependency) {
|
|
|
24257
24257
|
};
|
|
24258
24258
|
}
|
|
24259
24259
|
//#endregion
|
|
24260
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24260
|
+
//#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
|
|
24261
24261
|
/** Project a pnpm-workspace manifest's `catalog` / `catalogs` fields into a `Catalogs` map. */
|
|
24262
24262
|
const inlineCatalogs = (manifest) => {
|
|
24263
24263
|
if (manifest.catalog === void 0 && manifest.catalogs === void 0) return {};
|
|
@@ -24321,7 +24321,7 @@ const rangeOf = (catalogs, dependency, specifier) => {
|
|
|
24321
24321
|
});
|
|
24322
24322
|
};
|
|
24323
24323
|
//#endregion
|
|
24324
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24324
|
+
//#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
|
|
24325
24325
|
/** Whether `value` is a non-null, non-array object. */
|
|
24326
24326
|
const isObject$2 = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
24327
24327
|
/**
|
|
@@ -24735,7 +24735,7 @@ var ConfigDependencyHooks = class ConfigDependencyHooks extends effect.Context.S
|
|
|
24735
24735
|
}));
|
|
24736
24736
|
};
|
|
24737
24737
|
//#endregion
|
|
24738
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24738
|
+
//#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
|
|
24739
24739
|
/**
|
|
24740
24740
|
* The four package managers this package understands.
|
|
24741
24741
|
*
|
|
@@ -25110,7 +25110,7 @@ var PackageManagerDetector = class PackageManagerDetector extends effect.Context
|
|
|
25110
25110
|
static layerTest = (overrides = {}) => effect.Layer.succeed(PackageManagerDetector, PackageManagerDetector.makeTest(overrides));
|
|
25111
25111
|
};
|
|
25112
25112
|
//#endregion
|
|
25113
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25113
|
+
//#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
|
|
25114
25114
|
/**
|
|
25115
25115
|
* Raised when the workspace's lockfile cannot be read off disk.
|
|
25116
25116
|
*
|
|
@@ -25290,7 +25290,7 @@ var LockfileReader = class LockfileReader extends effect.Context.Service()("@eff
|
|
|
25290
25290
|
static layerTest = (overrides = {}) => effect.Layer.succeed(LockfileReader, LockfileReader.makeTest(overrides));
|
|
25291
25291
|
};
|
|
25292
25292
|
//#endregion
|
|
25293
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25293
|
+
//#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
|
|
25294
25294
|
/** The public npm registry, used when `publishConfig.registry` says nothing. */
|
|
25295
25295
|
const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
|
|
25296
25296
|
/**
|
|
@@ -25449,7 +25449,7 @@ var PublishabilityDetector = class extends effect.Context.Service()("@effected/w
|
|
|
25449
25449
|
static layerNone = effect.Layer.succeed(this, this.none);
|
|
25450
25450
|
};
|
|
25451
25451
|
//#endregion
|
|
25452
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25452
|
+
//#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
|
|
25453
25453
|
/**
|
|
25454
25454
|
* Strip pnpm's peer-disambiguation suffix from a recorded importer version.
|
|
25455
25455
|
*
|
|
@@ -25535,7 +25535,7 @@ const unanimousVersionOf = (index, dependency) => {
|
|
|
25535
25535
|
return agreed;
|
|
25536
25536
|
};
|
|
25537
25537
|
//#endregion
|
|
25538
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25538
|
+
//#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
|
|
25539
25539
|
/**
|
|
25540
25540
|
* An immutable, fully-normalized catalog collection — the one catalog
|
|
25541
25541
|
* resolution semantic in the package.
|
|
@@ -26062,7 +26062,7 @@ var WorkspaceCatalogs = class WorkspaceCatalogs extends effect.Context.Service()
|
|
|
26062
26062
|
}));
|
|
26063
26063
|
};
|
|
26064
26064
|
//#endregion
|
|
26065
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
26065
|
+
//#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
|
|
26066
26066
|
const EMPTY = Object.freeze(Object.create(null));
|
|
26067
26067
|
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)));
|
|
26068
26068
|
/**
|
|
@@ -26285,7 +26285,7 @@ var WorkspaceStateSnapshot = class extends effect.Schema.Class("WorkspaceStateSn
|
|
|
26285
26285
|
}
|
|
26286
26286
|
};
|
|
26287
26287
|
//#endregion
|
|
26288
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
26288
|
+
//#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
|
|
26289
26289
|
/** Whether `value` is a non-null, non-array object. */
|
|
26290
26290
|
const isObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
26291
26291
|
/** Whether every value in a record is a string — a usable dependency map. */
|
|
@@ -26562,7 +26562,7 @@ var WorkspaceSnapshots = class WorkspaceSnapshots extends effect.Context.Service
|
|
|
26562
26562
|
static layerTest = (overrides = {}) => effect.Layer.succeed(WorkspaceSnapshots, WorkspaceSnapshots.makeTest(overrides));
|
|
26563
26563
|
};
|
|
26564
26564
|
//#endregion
|
|
26565
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
26565
|
+
//#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
|
|
26566
26566
|
const compose = (options, catalogsFactory) => {
|
|
26567
26567
|
const roots = WorkspaceRoot.layer;
|
|
26568
26568
|
const detector = PackageManagerDetector.layer;
|