@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.js
CHANGED
|
@@ -405,7 +405,7 @@ const trimTrailingSlashes = (s) => {
|
|
|
405
405
|
};
|
|
406
406
|
|
|
407
407
|
//#endregion
|
|
408
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
408
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/limits.js
|
|
409
409
|
/** Hard cap on pattern length. Upstream minimatch's MAX_PATTERN_LENGTH (64KB). */
|
|
410
410
|
const MAX_PATTERN_LENGTH = 65536;
|
|
411
411
|
/** Default brace-expansion output budget. Upstream brace-expansion's EXPANSION_MAX. */
|
|
@@ -440,7 +440,7 @@ const assertCap = (name, value) => {
|
|
|
440
440
|
};
|
|
441
441
|
|
|
442
442
|
//#endregion
|
|
443
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
443
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/unescape.js
|
|
444
444
|
/**
|
|
445
445
|
* Un-escape a string that has been escaped with `escape`.
|
|
446
446
|
*
|
|
@@ -464,12 +464,12 @@ const unescapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = true
|
|
|
464
464
|
};
|
|
465
465
|
|
|
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/types.js
|
|
468
468
|
/** The globstar marker in a compiled pattern set. */
|
|
469
469
|
const GLOBSTAR = Symbol("globstar **");
|
|
470
470
|
|
|
471
471
|
//#endregion
|
|
472
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
472
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/escape.js
|
|
473
473
|
/**
|
|
474
474
|
* Escape all magic characters in a glob pattern.
|
|
475
475
|
*
|
|
@@ -488,14 +488,14 @@ const escapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = false
|
|
|
488
488
|
};
|
|
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/assertValidPattern.js
|
|
492
492
|
const assertValidPattern = (pattern) => {
|
|
493
493
|
if (typeof pattern !== "string") throw new TypeError("invalid pattern");
|
|
494
494
|
if (pattern.length > 65536) throw new GuardExceeded("PatternTooLong", MAX_PATTERN_LENGTH, pattern.length);
|
|
495
495
|
};
|
|
496
496
|
|
|
497
497
|
//#endregion
|
|
498
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
498
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/braceExpressions.js
|
|
499
499
|
const posixClasses = {
|
|
500
500
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
501
501
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -619,7 +619,7 @@ const parseClass = (glob, position) => {
|
|
|
619
619
|
};
|
|
620
620
|
|
|
621
621
|
//#endregion
|
|
622
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
622
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/ast.js
|
|
623
623
|
const types = /* @__PURE__ */ new Set([
|
|
624
624
|
"!",
|
|
625
625
|
"?",
|
|
@@ -1137,7 +1137,7 @@ var AST = class AST {
|
|
|
1137
1137
|
};
|
|
1138
1138
|
|
|
1139
1139
|
//#endregion
|
|
1140
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
1140
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/balancedMatch.js
|
|
1141
1141
|
const maybeMatch = (reg, str) => {
|
|
1142
1142
|
const m = str.match(reg);
|
|
1143
1143
|
return m ? m[0] : null;
|
|
@@ -1196,7 +1196,7 @@ const range = (a, b, str) => {
|
|
|
1196
1196
|
};
|
|
1197
1197
|
|
|
1198
1198
|
//#endregion
|
|
1199
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
1199
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/braceExpansion.js
|
|
1200
1200
|
const escSlash = `\0SLASH${Math.random()}\0`;
|
|
1201
1201
|
const escOpen = `\0OPEN${Math.random()}\0`;
|
|
1202
1202
|
const escClose = `\0CLOSE${Math.random()}\0`;
|
|
@@ -1344,7 +1344,7 @@ function expand_(str, max, isTopInput, depth) {
|
|
|
1344
1344
|
}
|
|
1345
1345
|
|
|
1346
1346
|
//#endregion
|
|
1347
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
1347
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/internal/minimatch.js
|
|
1348
1348
|
const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
|
|
1349
1349
|
const starDotExtTest = (ext) => (f) => !f.startsWith(".") && f.endsWith(ext);
|
|
1350
1350
|
const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
|
|
@@ -1918,7 +1918,7 @@ var Minimatch = class {
|
|
|
1918
1918
|
};
|
|
1919
1919
|
|
|
1920
1920
|
//#endregion
|
|
1921
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
1921
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/GlobPattern.js
|
|
1922
1922
|
/**
|
|
1923
1923
|
* Typed failure raised when a glob pattern trips a compile-time guard:
|
|
1924
1924
|
* over-length, brace-expansion budget exhaustion, or nesting past the depth
|
|
@@ -2198,7 +2198,7 @@ var GlobPattern = class GlobPattern extends Schema.Class("GlobPattern")(Schema.S
|
|
|
2198
2198
|
};
|
|
2199
2199
|
|
|
2200
2200
|
//#endregion
|
|
2201
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.
|
|
2201
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.4.0_effect@4.0.0-rc.109/node_modules/@effected/glob/GlobSet.js
|
|
2202
2202
|
const exclusionTarget = (pattern) => pattern.startsWith("!") ? pattern.slice(1) : void 0;
|
|
2203
2203
|
const allCompileUnderDefaults = (patterns) => {
|
|
2204
2204
|
for (const pattern of patterns) {
|
|
@@ -2353,7 +2353,7 @@ var GlobSet = class GlobSet extends Schema.Class("GlobSet")(Schema.Struct({ patt
|
|
|
2353
2353
|
};
|
|
2354
2354
|
|
|
2355
2355
|
//#endregion
|
|
2356
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
2356
|
+
//#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
|
|
2357
2357
|
/**
|
|
2358
2358
|
* Extension data specific to bun lockfiles, attached to `Lockfile.extension`
|
|
2359
2359
|
* when the format is `"bun"`.
|
|
@@ -2375,7 +2375,7 @@ var BunExtension = class extends Schema.Class("BunExtension")({
|
|
|
2375
2375
|
}) {};
|
|
2376
2376
|
|
|
2377
2377
|
//#endregion
|
|
2378
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2378
|
+
//#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
|
|
2379
2379
|
/**
|
|
2380
2380
|
* Contract for resolving pnpm `catalog:` dependency specifiers to concrete
|
|
2381
2381
|
* version ranges.
|
|
@@ -2422,7 +2422,7 @@ var CatalogResolver = class CatalogResolver extends Context.Service()("@effected
|
|
|
2422
2422
|
};
|
|
2423
2423
|
|
|
2424
2424
|
//#endregion
|
|
2425
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2425
|
+
//#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
|
|
2426
2426
|
/**
|
|
2427
2427
|
* Raised when a `catalog:` or `workspace:` specifier cannot be resolved
|
|
2428
2428
|
* because the resolution mechanism itself failed — not for an ordinary
|
|
@@ -2484,7 +2484,7 @@ var WorkspaceResolver = class WorkspaceResolver extends Context.Service()("@effe
|
|
|
2484
2484
|
};
|
|
2485
2485
|
|
|
2486
2486
|
//#endregion
|
|
2487
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2487
|
+
//#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
|
|
2488
2488
|
/**
|
|
2489
2489
|
* Raised when a workspace's catalogs cannot be assembled — a `pnpm-workspace.yaml`
|
|
2490
2490
|
* that is unreadable or not valid YAML, a root `package.json` `workspaces` field
|
|
@@ -2529,7 +2529,7 @@ var CatalogAssemblyError = class extends Schema.TaggedError()("CatalogAssemblyEr
|
|
|
2529
2529
|
};
|
|
2530
2530
|
|
|
2531
2531
|
//#endregion
|
|
2532
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
2532
|
+
//#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
|
|
2533
2533
|
/**
|
|
2534
2534
|
* The short dependency kind: which dependency map an entry came from, named the
|
|
2535
2535
|
* way consumers branch on it.
|
|
@@ -2563,7 +2563,7 @@ const KIND_TO_FIELD = {
|
|
|
2563
2563
|
const FIELD_TO_KIND = Object.fromEntries(Object.entries(KIND_TO_FIELD).map(([kind, field]) => [field, kind]));
|
|
2564
2564
|
|
|
2565
2565
|
//#endregion
|
|
2566
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
2566
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/desugar.js
|
|
2567
2567
|
const sv = (major, minor, patch, prerelease = [], build = []) => ({
|
|
2568
2568
|
major,
|
|
2569
2569
|
minor,
|
|
@@ -2653,7 +2653,7 @@ const desugarHyphen = (lower, upper) => {
|
|
|
2653
2653
|
};
|
|
2654
2654
|
|
|
2655
2655
|
//#endregion
|
|
2656
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
2656
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/grammar.js
|
|
2657
2657
|
/** Private control-flow exception; never escapes the entry points. */
|
|
2658
2658
|
var ParseFailure = class {
|
|
2659
2659
|
position;
|
|
@@ -3054,7 +3054,7 @@ const formatComparator = (c) => {
|
|
|
3054
3054
|
const formatRange = (sets) => sets.map((set) => set.map(formatComparator).join(" ")).join(" || ");
|
|
3055
3055
|
|
|
3056
3056
|
//#endregion
|
|
3057
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3057
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/order.js
|
|
3058
3058
|
/**
|
|
3059
3059
|
* Compare two prerelease identifiers per SemVer 2.0.0 §11: numeric
|
|
3060
3060
|
* identifiers always have lower precedence than alphanumeric ones; numerics
|
|
@@ -3108,7 +3108,7 @@ const compareBuild = (a, b) => {
|
|
|
3108
3108
|
};
|
|
3109
3109
|
|
|
3110
3110
|
//#endregion
|
|
3111
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3111
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/SemVer.js
|
|
3112
3112
|
/**
|
|
3113
3113
|
* Indicates that a string could not be parsed as a valid SemVer 2.0.0 version.
|
|
3114
3114
|
*
|
|
@@ -3620,7 +3620,7 @@ var SemVerBump = class {
|
|
|
3620
3620
|
};
|
|
3621
3621
|
|
|
3622
3622
|
//#endregion
|
|
3623
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3623
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/Comparator.js
|
|
3624
3624
|
/**
|
|
3625
3625
|
* Indicates that a string could not be parsed as a single comparator.
|
|
3626
3626
|
*
|
|
@@ -3755,7 +3755,7 @@ var Comparator = class Comparator extends Schema.Class("Comparator")({
|
|
|
3755
3755
|
};
|
|
3756
3756
|
|
|
3757
3757
|
//#endregion
|
|
3758
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3758
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/internal/normalize.js
|
|
3759
3759
|
const operatorWeight = (op) => {
|
|
3760
3760
|
switch (op) {
|
|
3761
3761
|
case ">=": return 0;
|
|
@@ -3787,7 +3787,7 @@ const normalizeComparatorSet = (set) => sortComparators(removeDuplicates(set));
|
|
|
3787
3787
|
const normalizeSets = (sets) => sets.map(normalizeComparatorSet);
|
|
3788
3788
|
|
|
3789
3789
|
//#endregion
|
|
3790
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.
|
|
3790
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/semver/Range.js
|
|
3791
3791
|
/**
|
|
3792
3792
|
* Indicates that a string could not be parsed as a range expression.
|
|
3793
3793
|
*
|
|
@@ -4153,7 +4153,7 @@ const isComparatorSetSubset = (sub, sup) => {
|
|
|
4153
4153
|
};
|
|
4154
4154
|
|
|
4155
4155
|
//#endregion
|
|
4156
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
4156
|
+
//#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
|
|
4157
4157
|
/**
|
|
4158
4158
|
* Indicates that a string could not be parsed as a valid dependency specifier.
|
|
4159
4159
|
*
|
|
@@ -4361,7 +4361,7 @@ const DependencySpecifier = Object.assign(brandedSpecifier, {
|
|
|
4361
4361
|
});
|
|
4362
4362
|
|
|
4363
4363
|
//#endregion
|
|
4364
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
4364
|
+
//#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
|
|
4365
4365
|
const SRI_RE = /^(sha1|sha256|sha384|sha512)-[A-Za-z0-9+/]+={0,2}$/;
|
|
4366
4366
|
const COREPACK_RE = /^(sha1|sha224|sha256|sha384|sha512)\.[0-9a-f]+$/;
|
|
4367
4367
|
const YARN_RE = /^[0-9]+(c[0-9]+)?\/[0-9a-f]+$/;
|
|
@@ -4467,7 +4467,7 @@ const IntegrityHash = Object.assign(brandedIntegrity, {
|
|
|
4467
4467
|
const CorepackIntegrityHash = brandedIntegrity.pipe(Schema.check(Schema.makeFilter((value) => isCorepack(value) ? void 0 : "Expected a corepack (<algo>.<hex>) integrity hash")));
|
|
4468
4468
|
|
|
4469
4469
|
//#endregion
|
|
4470
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.
|
|
4470
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/commands/LocalExec.js
|
|
4471
4471
|
/**
|
|
4472
4472
|
* The package managers whose project-local exec argv this package knows.
|
|
4473
4473
|
*
|
|
@@ -4676,7 +4676,7 @@ var LocalExec = class LocalExec extends Context.Service()("@effected/commands/Lo
|
|
|
4676
4676
|
};
|
|
4677
4677
|
|
|
4678
4678
|
//#endregion
|
|
4679
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.
|
|
4679
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/commands/Redaction.js
|
|
4680
4680
|
/**
|
|
4681
4681
|
* Argument tokens whose *following* positional (or `=`-joined value) is a
|
|
4682
4682
|
* secret. Lowercase; matching is case-insensitive.
|
|
@@ -4800,7 +4800,7 @@ var Redaction = class {
|
|
|
4800
4800
|
};
|
|
4801
4801
|
|
|
4802
4802
|
//#endregion
|
|
4803
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.
|
|
4803
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/commands/internal/capture.js
|
|
4804
4804
|
/**
|
|
4805
4805
|
* Raised when a captured stream exceeds its byte budget.
|
|
4806
4806
|
*
|
|
@@ -4828,7 +4828,7 @@ const collectBounded = (stream, limit) => Effect.gen(function* () {
|
|
|
4828
4828
|
});
|
|
4829
4829
|
|
|
4830
4830
|
//#endregion
|
|
4831
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.
|
|
4831
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.5.0_effect@4.0.0-rc.109/node_modules/@effected/commands/Run.js
|
|
4832
4832
|
/**
|
|
4833
4833
|
* Default ceiling on captured bytes per stream (16 MiB).
|
|
4834
4834
|
*
|
|
@@ -5350,7 +5350,7 @@ var Run = class {
|
|
|
5350
5350
|
};
|
|
5351
5351
|
|
|
5352
5352
|
//#endregion
|
|
5353
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
5353
|
+
//#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
|
|
5354
5354
|
const MS_PER_MINUTE = 6e4;
|
|
5355
5355
|
/**
|
|
5356
5356
|
* A source's partial contribution to a {@link ReleaseAgeGate}: the effective
|
|
@@ -5521,7 +5521,7 @@ var ReleaseAgeGate = class ReleaseAgeGate extends Schema.Class("ReleaseAgeGate")
|
|
|
5521
5521
|
};
|
|
5522
5522
|
|
|
5523
5523
|
//#endregion
|
|
5524
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5524
|
+
//#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
|
|
5525
5525
|
/**
|
|
5526
5526
|
* One declared dependency of one workspace importer, as the lockfile records it.
|
|
5527
5527
|
*
|
|
@@ -5560,7 +5560,7 @@ var ImporterDependency = class extends Schema.Class("ImporterDependency")({
|
|
|
5560
5560
|
}) {};
|
|
5561
5561
|
|
|
5562
5562
|
//#endregion
|
|
5563
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5563
|
+
//#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
|
|
5564
5564
|
/**
|
|
5565
5565
|
* One workspace importer's declared dependencies, as the lockfile records them.
|
|
5566
5566
|
*
|
|
@@ -5585,7 +5585,7 @@ var LockfileImporter = class extends Schema.Class("LockfileImporter")({
|
|
|
5585
5585
|
}) {};
|
|
5586
5586
|
|
|
5587
5587
|
//#endregion
|
|
5588
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5588
|
+
//#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
|
|
5589
5589
|
const EMPTY_DEPENDENCIES = {};
|
|
5590
5590
|
/**
|
|
5591
5591
|
* A package resolved from a lockfile.
|
|
@@ -5621,7 +5621,7 @@ var ResolvedPackage = class extends Schema.Class("ResolvedPackage")({
|
|
|
5621
5621
|
}) {};
|
|
5622
5622
|
|
|
5623
5623
|
//#endregion
|
|
5624
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5624
|
+
//#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
|
|
5625
5625
|
/**
|
|
5626
5626
|
* A directed dependency edge between two workspace packages as recorded in
|
|
5627
5627
|
* the lockfile.
|
|
@@ -5644,7 +5644,7 @@ var WorkspaceDependency = class extends Schema.Class("WorkspaceDependency")({
|
|
|
5644
5644
|
}) {};
|
|
5645
5645
|
|
|
5646
5646
|
//#endregion
|
|
5647
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5647
|
+
//#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
|
|
5648
5648
|
/**
|
|
5649
5649
|
* Extension data specific to pnpm lockfiles, attached to `Lockfile.extension`
|
|
5650
5650
|
* when the format is `"pnpm"`.
|
|
@@ -5670,7 +5670,7 @@ var PnpmExtension = class extends Schema.Class("PnpmExtension")({
|
|
|
5670
5670
|
}) {};
|
|
5671
5671
|
|
|
5672
5672
|
//#endregion
|
|
5673
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5673
|
+
//#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
|
|
5674
5674
|
/**
|
|
5675
5675
|
* The lockfile formats this package parses: bun's `bun.lock` (JSONC), npm's
|
|
5676
5676
|
* `package-lock.json` (v2/v3 JSON), pnpm's `pnpm-lock.yaml` and yarn Berry's
|
|
@@ -5709,7 +5709,7 @@ const FILENAMES = {
|
|
|
5709
5709
|
const filenameFor = (format) => FILENAMES[format][0];
|
|
5710
5710
|
|
|
5711
5711
|
//#endregion
|
|
5712
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
5712
|
+
//#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
|
|
5713
5713
|
/**
|
|
5714
5714
|
* The four dependency sections of a manifest, in a stable order — the shared
|
|
5715
5715
|
* dependency-sections table (v3's `DEP_SECTIONS`). Each entry is both the
|
|
@@ -5868,7 +5868,7 @@ const extractWorkspaceDeps = (workspaces, workspaceNames) => {
|
|
|
5868
5868
|
};
|
|
5869
5869
|
|
|
5870
5870
|
//#endregion
|
|
5871
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
5871
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncNode.js
|
|
5872
5872
|
/**
|
|
5873
5873
|
* Discriminator values for JSONC AST node types: the JSON value types
|
|
5874
5874
|
* (`string`/`number`/`boolean`/`null`), the structural types
|
|
@@ -6044,7 +6044,7 @@ function evaluateNode(node, depth) {
|
|
|
6044
6044
|
}
|
|
6045
6045
|
|
|
6046
6046
|
//#endregion
|
|
6047
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
6047
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/scanner.js
|
|
6048
6048
|
const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
|
|
6049
6049
|
const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
|
|
6050
6050
|
const isDigit$1 = (ch) => ch >= 48 && ch <= 57;
|
|
@@ -6339,7 +6339,7 @@ const createScanner$2 = (text, ignoreTrivia = false) => {
|
|
|
6339
6339
|
};
|
|
6340
6340
|
|
|
6341
6341
|
//#endregion
|
|
6342
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
6342
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/skip.js
|
|
6343
6343
|
/**
|
|
6344
6344
|
* Iteratively consume the value beginning at the cursor's current token and
|
|
6345
6345
|
* return its tight end offset (excludes trailing whitespace/comments).
|
|
@@ -6370,7 +6370,7 @@ const skipBalancedValue = (cursor) => {
|
|
|
6370
6370
|
};
|
|
6371
6371
|
|
|
6372
6372
|
//#endregion
|
|
6373
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
6373
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/parser.js
|
|
6374
6374
|
/**
|
|
6375
6375
|
* The public parse-error code vocabulary. The facade builds its `@public`
|
|
6376
6376
|
* `JsoncParseErrorCode` schema from this array; the parser produces these codes
|
|
@@ -6784,7 +6784,7 @@ const parseTree$2 = (text, flags) => {
|
|
|
6784
6784
|
};
|
|
6785
6785
|
|
|
6786
6786
|
//#endregion
|
|
6787
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
6787
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/Jsonc.js
|
|
6788
6788
|
/**
|
|
6789
6789
|
* The single public parse-error code vocabulary, appearing as the `code` field
|
|
6790
6790
|
* of {@link JsoncParseErrorDetail}.
|
|
@@ -7353,7 +7353,7 @@ var Jsonc = class Jsonc {
|
|
|
7353
7353
|
};
|
|
7354
7354
|
|
|
7355
7355
|
//#endregion
|
|
7356
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
7356
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncEdit.js
|
|
7357
7357
|
/**
|
|
7358
7358
|
* A range within a JSONC document, expressed as a zero-based character
|
|
7359
7359
|
* `offset` and a `length` in UTF-16 code units. Pass to `JsoncFormatter.format`
|
|
@@ -7424,7 +7424,7 @@ var JsoncEdit = class extends Schema.Class("JsoncEdit")({
|
|
|
7424
7424
|
};
|
|
7425
7425
|
|
|
7426
7426
|
//#endregion
|
|
7427
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
7427
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/internal/navigate.js
|
|
7428
7428
|
/**
|
|
7429
7429
|
* Resolve `path` against `text`, returning where the target is (or where it
|
|
7430
7430
|
* would be inserted). `path` must be non-empty — the whole-document case is
|
|
@@ -7552,7 +7552,7 @@ function navigate(text, path) {
|
|
|
7552
7552
|
}
|
|
7553
7553
|
|
|
7554
7554
|
//#endregion
|
|
7555
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.
|
|
7555
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.7.0_effect@4.0.0-rc.109/node_modules/@effected/jsonc/JsoncModifier.js
|
|
7556
7556
|
/**
|
|
7557
7557
|
* Raised when `JsoncModifier.modify` cannot navigate the requested path: the
|
|
7558
7558
|
* value at `depth` is not the container kind (`expected`) the next path segment
|
|
@@ -7681,7 +7681,7 @@ var JsoncModifier = class {
|
|
|
7681
7681
|
};
|
|
7682
7682
|
|
|
7683
7683
|
//#endregion
|
|
7684
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
7684
|
+
//#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
|
|
7685
7685
|
const DepRecord$2 = Schema.optionalKey(Schema.Record(Schema.String, Schema.String));
|
|
7686
7686
|
const BunWorkspaceEntry = Schema.Struct({
|
|
7687
7687
|
name: Schema.optionalKey(Schema.String),
|
|
@@ -7775,7 +7775,7 @@ const toFields$3 = (raw) => Effect.gen(function* () {
|
|
|
7775
7775
|
});
|
|
7776
7776
|
|
|
7777
7777
|
//#endregion
|
|
7778
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
7778
|
+
//#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
|
|
7779
7779
|
const DepRecord$1 = Schema.optionalKey(Schema.Record(Schema.String, Schema.String));
|
|
7780
7780
|
const NpmPackageEntry = Schema.Struct({
|
|
7781
7781
|
name: Schema.optionalKey(Schema.String),
|
|
@@ -7874,7 +7874,7 @@ const toFields$2 = (raw) => Effect.gen(function* () {
|
|
|
7874
7874
|
});
|
|
7875
7875
|
|
|
7876
7876
|
//#endregion
|
|
7877
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
7877
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/YamlNode.js
|
|
7878
7878
|
/**
|
|
7879
7879
|
* YAML scalar presentation styles.
|
|
7880
7880
|
*
|
|
@@ -8316,7 +8316,7 @@ function nodeToValue(node, anchors, budget, counting = false) {
|
|
|
8316
8316
|
}
|
|
8317
8317
|
|
|
8318
8318
|
//#endregion
|
|
8319
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
8319
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/diagnostics.js
|
|
8320
8320
|
/** Error codes emitted by the lexer stage. */
|
|
8321
8321
|
const YAML_LEX_ERROR_CODES = [
|
|
8322
8322
|
"UnexpectedCharacter",
|
|
@@ -8404,7 +8404,7 @@ function isFatalCode(code) {
|
|
|
8404
8404
|
}
|
|
8405
8405
|
|
|
8406
8406
|
//#endregion
|
|
8407
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
8407
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/YamlDiagnostic.js
|
|
8408
8408
|
/**
|
|
8409
8409
|
* Error codes emitted by the lexer stage.
|
|
8410
8410
|
*
|
|
@@ -8526,7 +8526,7 @@ function lineChar(text, offset) {
|
|
|
8526
8526
|
}
|
|
8527
8527
|
|
|
8528
8528
|
//#endregion
|
|
8529
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
8529
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/lexer.js
|
|
8530
8530
|
/**
|
|
8531
8531
|
* Create a new YAML scanner for the given source text.
|
|
8532
8532
|
*
|
|
@@ -9490,7 +9490,7 @@ function lexAll(text) {
|
|
|
9490
9490
|
}
|
|
9491
9491
|
|
|
9492
9492
|
//#endregion
|
|
9493
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
9493
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/cst-parser.js
|
|
9494
9494
|
/**
|
|
9495
9495
|
* Hardening: cap CST nesting so hostile inputs cannot overflow the stack
|
|
9496
9496
|
* while the tree is being BUILT. Set slightly above the composer's
|
|
@@ -10212,7 +10212,7 @@ function parseCSTAll(text) {
|
|
|
10212
10212
|
}
|
|
10213
10213
|
|
|
10214
10214
|
//#endregion
|
|
10215
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10215
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/anchors.js
|
|
10216
10216
|
/**
|
|
10217
10217
|
* Check if a pending anchor is being applied to an alias node (invalid in YAML 1.2 §3.2.2).
|
|
10218
10218
|
* Aliases represent references to existing anchored nodes and cannot have their own anchors.
|
|
@@ -10281,7 +10281,7 @@ function scanName(text, start) {
|
|
|
10281
10281
|
}
|
|
10282
10282
|
|
|
10283
10283
|
//#endregion
|
|
10284
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10284
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/comments.js
|
|
10285
10285
|
/** True when there is no line break between `start` and `end` in `text`. */
|
|
10286
10286
|
function sameLineSpan(text, start, end) {
|
|
10287
10287
|
if (start < 0) return false;
|
|
@@ -10495,7 +10495,7 @@ function mergedCommentFields(existing, incoming) {
|
|
|
10495
10495
|
}
|
|
10496
10496
|
|
|
10497
10497
|
//#endregion
|
|
10498
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10498
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/state.js
|
|
10499
10499
|
let lineStartsText;
|
|
10500
10500
|
let lineStartsCache = [];
|
|
10501
10501
|
function getLineStarts(text) {
|
|
@@ -10616,7 +10616,7 @@ function exitNesting(state) {
|
|
|
10616
10616
|
}
|
|
10617
10617
|
|
|
10618
10618
|
//#endregion
|
|
10619
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10619
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/tags.js
|
|
10620
10620
|
/**
|
|
10621
10621
|
* Resolve a tag shorthand using the document's %TAG directives.
|
|
10622
10622
|
* For example, with `%TAG !! tag:example.com,2000:app/`, the tag `!!int`
|
|
@@ -10703,7 +10703,7 @@ function validateTagHandlesInDocument(docCst, state) {
|
|
|
10703
10703
|
}
|
|
10704
10704
|
|
|
10705
10705
|
//#endregion
|
|
10706
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
10706
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/scalars.js
|
|
10707
10707
|
const NULL_RE$1 = /^(?:null|Null|NULL|~)$/;
|
|
10708
10708
|
const TRUE_RE$1 = /^(?:true|True|TRUE)$/;
|
|
10709
10709
|
const FALSE_RE$1 = /^(?:false|False|FALSE)$/;
|
|
@@ -11630,7 +11630,7 @@ function shouldPreserveRaw(rawValue, value) {
|
|
|
11630
11630
|
}
|
|
11631
11631
|
|
|
11632
11632
|
//#endregion
|
|
11633
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
11633
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/block.js
|
|
11634
11634
|
/**
|
|
11635
11635
|
* Compose a block map from its CST children, with an optional external first key.
|
|
11636
11636
|
*
|
|
@@ -13013,7 +13013,7 @@ function composeFlatBlockMap(children, startIdx, parentCst, state, externalFirst
|
|
|
13013
13013
|
}
|
|
13014
13014
|
|
|
13015
13015
|
//#endregion
|
|
13016
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
13016
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/flow.js
|
|
13017
13017
|
/**
|
|
13018
13018
|
* Validate that flow collection entries are separated by commas.
|
|
13019
13019
|
*
|
|
@@ -13504,7 +13504,7 @@ function composeFlowSeqInner(cst, state, meta, parentBlockColumn) {
|
|
|
13504
13504
|
}
|
|
13505
13505
|
|
|
13506
13506
|
//#endregion
|
|
13507
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
13507
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/composer/document.js
|
|
13508
13508
|
/** The flow-composer dispatch wired into every state this module creates. */
|
|
13509
13509
|
const FLOW = {
|
|
13510
13510
|
composeFlowMap,
|
|
@@ -14297,7 +14297,7 @@ function stripOwnComment(node) {
|
|
|
14297
14297
|
}
|
|
14298
14298
|
|
|
14299
14299
|
//#endregion
|
|
14300
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
14300
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/fold.js
|
|
14301
14301
|
/**
|
|
14302
14302
|
* Column-based line folding for a single logical scalar line (YAML 1.2 flow
|
|
14303
14303
|
* folding, §7.3 / §8.2.1). Breaks the content at "safe" single-space
|
|
@@ -14546,7 +14546,7 @@ function renderBlockFolded(s, indent, explicitChomp, explicitIndent) {
|
|
|
14546
14546
|
}
|
|
14547
14547
|
|
|
14548
14548
|
//#endregion
|
|
14549
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
14549
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/internal/stringifier.js
|
|
14550
14550
|
/**
|
|
14551
14551
|
* Thrown by the stringifier on its failure paths (circular references). The
|
|
14552
14552
|
* facade catches this and materializes the public stringify error.
|
|
@@ -14956,7 +14956,7 @@ function stringifyValue(value, options) {
|
|
|
14956
14956
|
}
|
|
14957
14957
|
|
|
14958
14958
|
//#endregion
|
|
14959
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.
|
|
14959
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/yaml/Yaml.js
|
|
14960
14960
|
/**
|
|
14961
14961
|
* Options controlling parse behavior. All fields are omissible; absent fields
|
|
14962
14962
|
* resolve to `strict` `true`, `maxAliasCount` `100` (the alias-based
|
|
@@ -15657,7 +15657,7 @@ function deepEqualValues(a, b) {
|
|
|
15657
15657
|
}
|
|
15658
15658
|
|
|
15659
15659
|
//#endregion
|
|
15660
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15660
|
+
//#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
|
|
15661
15661
|
/**
|
|
15662
15662
|
* An empty YAML document composes to `null` (`Yaml.parseAll("")` is `[null]`,
|
|
15663
15663
|
* and the trailing document of an env-only `pnpm-lock.yaml` is `null` too).
|
|
@@ -15728,7 +15728,7 @@ const selectSoleDocument = (content) => Effect.gen(function* () {
|
|
|
15728
15728
|
});
|
|
15729
15729
|
|
|
15730
15730
|
//#endregion
|
|
15731
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15731
|
+
//#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
|
|
15732
15732
|
const PnpmImporterDeps = Schema.optionalKey(Schema.Record(Schema.String, Schema.Struct({
|
|
15733
15733
|
specifier: Schema.String,
|
|
15734
15734
|
version: Schema.String
|
|
@@ -15854,7 +15854,7 @@ const toFields$1 = (raw) => Effect.gen(function* () {
|
|
|
15854
15854
|
});
|
|
15855
15855
|
|
|
15856
15856
|
//#endregion
|
|
15857
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15857
|
+
//#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
|
|
15858
15858
|
const YarnLockfileRaw = Schema.Record(Schema.String, Schema.Unknown);
|
|
15859
15859
|
const DepRecord = Schema.optionalKey(Schema.Record(Schema.String, Schema.String));
|
|
15860
15860
|
const YarnEntry = Schema.Struct({
|
|
@@ -15978,7 +15978,7 @@ const cleanYarnDeps = (deps) => {
|
|
|
15978
15978
|
};
|
|
15979
15979
|
|
|
15980
15980
|
//#endregion
|
|
15981
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
15981
|
+
//#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
|
|
15982
15982
|
const EMPTY_IMPORTERS = [];
|
|
15983
15983
|
/**
|
|
15984
15984
|
* Failure of `Lockfile.parse`: the given content is not a valid lockfile of
|
|
@@ -16223,7 +16223,7 @@ var Lockfile = class Lockfile extends Schema.Class("Lockfile")({
|
|
|
16223
16223
|
};
|
|
16224
16224
|
|
|
16225
16225
|
//#endregion
|
|
16226
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.
|
|
16226
|
+
//#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
|
|
16227
16227
|
/**
|
|
16228
16228
|
* The minimal manifest shape {@link LockfileIntegrity.compare} checks a
|
|
16229
16229
|
* lockfile against: a package name plus the four optional dependency maps.
|
|
@@ -16340,7 +16340,7 @@ var LockfileIntegrity = class LockfileIntegrity extends Schema.Class("LockfileIn
|
|
|
16340
16340
|
};
|
|
16341
16341
|
|
|
16342
16342
|
//#endregion
|
|
16343
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
16343
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Dependency.js
|
|
16344
16344
|
/**
|
|
16345
16345
|
* A resolved dependency entry pairing a package name with its version
|
|
16346
16346
|
* specifier and the `kind` of map it came from (`@effected/npm`'s
|
|
@@ -16405,7 +16405,7 @@ var Dependency = class extends Schema.Class("Dependency")({
|
|
|
16405
16405
|
};
|
|
16406
16406
|
|
|
16407
16407
|
//#endregion
|
|
16408
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
16408
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/DevEngines.js
|
|
16409
16409
|
/**
|
|
16410
16410
|
* A single `devEngines` constraint with a name and optional `version` / `onFail`.
|
|
16411
16411
|
*
|
|
@@ -16444,7 +16444,7 @@ const DevEnginesSchema = Schema.Struct({
|
|
|
16444
16444
|
});
|
|
16445
16445
|
|
|
16446
16446
|
//#endregion
|
|
16447
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
16447
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/internal/licenseIds.js
|
|
16448
16448
|
/** @internal */
|
|
16449
16449
|
const ACTIVE_LICENSE_IDS = [
|
|
16450
16450
|
"0BSD",
|
|
@@ -17178,7 +17178,7 @@ const LICENSE_IDS = new Set(ACTIVE_LICENSE_IDS);
|
|
|
17178
17178
|
const DEPRECATED_LICENSE_IDS = new Set(DEPRECATED_LICENSE_ID_LIST);
|
|
17179
17179
|
|
|
17180
17180
|
//#endregion
|
|
17181
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17181
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/License.js
|
|
17182
17182
|
/**
|
|
17183
17183
|
* Indicates that a string is not a valid SPDX expression fragment: an
|
|
17184
17184
|
* unrecognized license or exception identifier, or a malformed
|
|
@@ -17348,7 +17348,7 @@ var License = class License extends Schema.Class("License")({
|
|
|
17348
17348
|
};
|
|
17349
17349
|
|
|
17350
17350
|
//#endregion
|
|
17351
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17351
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/internal/exceptions.js
|
|
17352
17352
|
/** @internal */
|
|
17353
17353
|
const ACTIVE_EXCEPTION_IDS = [
|
|
17354
17354
|
"389-exception",
|
|
@@ -17426,7 +17426,7 @@ const EXCEPTION_IDS = new Set(ACTIVE_EXCEPTION_IDS);
|
|
|
17426
17426
|
const DEPRECATED_EXCEPTION_IDS = new Set(DEPRECATED_EXCEPTION_ID_LIST);
|
|
17427
17427
|
|
|
17428
17428
|
//#endregion
|
|
17429
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17429
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/LicenseException.js
|
|
17430
17430
|
/**
|
|
17431
17431
|
* A validated SPDX license-exception identifier: an Effect `Schema.Class` whose
|
|
17432
17432
|
* `id` is a member of the SPDX exception list. The class doubles as its own
|
|
@@ -17547,7 +17547,7 @@ var LicenseException = class LicenseException extends Schema.Class("LicenseExcep
|
|
|
17547
17547
|
};
|
|
17548
17548
|
|
|
17549
17549
|
//#endregion
|
|
17550
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17550
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/internal/parser.js
|
|
17551
17551
|
const TOKEN_OPEN_PAREN = 0;
|
|
17552
17552
|
const TOKEN_CLOSE_PAREN = 1;
|
|
17553
17553
|
const TOKEN_PLUS = 2;
|
|
@@ -17777,7 +17777,7 @@ function parse$2(input) {
|
|
|
17777
17777
|
}
|
|
17778
17778
|
|
|
17779
17779
|
//#endregion
|
|
17780
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.
|
|
17780
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.3.0_effect@4.0.0-rc.109/node_modules/@effected/spdx/SpdxExpression.js
|
|
17781
17781
|
/**
|
|
17782
17782
|
* Serialize a tagged SPDX AST node — a class instance OR its encoded POJO — to
|
|
17783
17783
|
* the canonical, fully-parenthesized SPDX string. This is the single source of
|
|
@@ -18003,7 +18003,7 @@ const SpdxExpression = {
|
|
|
18003
18003
|
};
|
|
18004
18004
|
|
|
18005
18005
|
//#endregion
|
|
18006
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18006
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/License.js
|
|
18007
18007
|
/**
|
|
18008
18008
|
* Indicates that a string is not a valid SPDX license identifier or expression.
|
|
18009
18009
|
*
|
|
@@ -18039,7 +18039,7 @@ const isValidSpdx = (value) => {
|
|
|
18039
18039
|
const SpdxLicense = Schema.String.pipe(Schema.check(Schema.makeFilter((value) => isValidSpdx(value) ? void 0 : "Expected a valid SPDX license expression")), Schema.brand("SpdxLicense"));
|
|
18040
18040
|
|
|
18041
18041
|
//#endregion
|
|
18042
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18042
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/PackageManager.js
|
|
18043
18043
|
const PACKAGE_MANAGER_NAME_RE = /^[a-z]+$/;
|
|
18044
18044
|
const invalid$1 = (input, message) => Effect.fail(new SchemaIssue.InvalidValue({ message }, input));
|
|
18045
18045
|
/**
|
|
@@ -18151,7 +18151,7 @@ var PackageManager = class PackageManager extends Schema.Class("PackageManager")
|
|
|
18151
18151
|
};
|
|
18152
18152
|
|
|
18153
18153
|
//#endregion
|
|
18154
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18154
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/PackageName.js
|
|
18155
18155
|
/**
|
|
18156
18156
|
* Indicates that a string could not be used as a valid npm package name.
|
|
18157
18157
|
*
|
|
@@ -18210,7 +18210,7 @@ const PackageName = Object.assign(Schema.Union([ScopedPackageName, UnscopedPacka
|
|
|
18210
18210
|
});
|
|
18211
18211
|
|
|
18212
18212
|
//#endregion
|
|
18213
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18213
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Person.js
|
|
18214
18214
|
const parsePersonString = (input) => {
|
|
18215
18215
|
const emailMatch = input.match(/<([^>]+)>/);
|
|
18216
18216
|
const urlMatch = input.match(/\(([^)]+)\)/);
|
|
@@ -18357,7 +18357,7 @@ var Person = class Person extends Schema.Class("Person")({
|
|
|
18357
18357
|
};
|
|
18358
18358
|
|
|
18359
18359
|
//#endregion
|
|
18360
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18360
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Repository.js
|
|
18361
18361
|
/** The shorthand hosts npm resolves without a scheme. */
|
|
18362
18362
|
const SHORTHAND_HOSTS = /* @__PURE__ */ new Map([
|
|
18363
18363
|
["github", "https://github.com"],
|
|
@@ -18533,7 +18533,7 @@ var Bugs = class Bugs extends Schema.Class("Bugs")({
|
|
|
18533
18533
|
};
|
|
18534
18534
|
|
|
18535
18535
|
//#endregion
|
|
18536
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18536
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/internal/format.js
|
|
18537
18537
|
const KEY_INDEX = new Map([
|
|
18538
18538
|
"$schema",
|
|
18539
18539
|
"name",
|
|
@@ -18769,7 +18769,7 @@ const renderJson = (raw, options) => {
|
|
|
18769
18769
|
};
|
|
18770
18770
|
|
|
18771
18771
|
//#endregion
|
|
18772
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18772
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/internal/wire.js
|
|
18773
18773
|
const RawJson = Schema.Record(Schema.String, Schema.Unknown);
|
|
18774
18774
|
/**
|
|
18775
18775
|
* Build the open-JSON ↔ class wire codec for a `Schema.Class` carrying a
|
|
@@ -18801,7 +18801,7 @@ const makeWire = (Class) => {
|
|
|
18801
18801
|
};
|
|
18802
18802
|
|
|
18803
18803
|
//#endregion
|
|
18804
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.
|
|
18804
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.0_effect@4.0.0-rc.109/node_modules/@effected/package-json/Package.js
|
|
18805
18805
|
const toHashMap = SchemaTransformation.transform({
|
|
18806
18806
|
decode: (record) => HashMap.fromIterable(Object.entries(record)),
|
|
18807
18807
|
encode: (map) => Object.fromEntries(HashMap.toEntries(map))
|
|
@@ -19099,7 +19099,7 @@ var Package = class Package extends Schema.Class("Package")({
|
|
|
19099
19099
|
};
|
|
19100
19100
|
|
|
19101
19101
|
//#endregion
|
|
19102
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19102
|
+
//#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
|
|
19103
19103
|
const EMPTY$1 = Object.freeze(Object.create(null));
|
|
19104
19104
|
const EMPTY_MANIFEST = Object.freeze(Object.create(null));
|
|
19105
19105
|
/**
|
|
@@ -19379,7 +19379,7 @@ var WorkspacePackage = class WorkspacePackage extends Schema.Class("WorkspacePac
|
|
|
19379
19379
|
};
|
|
19380
19380
|
|
|
19381
19381
|
//#endregion
|
|
19382
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
19382
|
+
//#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
|
|
19383
19383
|
/**
|
|
19384
19384
|
* Typed failure raised by {@link descend}: a directory mid-walk was unreadable
|
|
19385
19385
|
* (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
|
|
@@ -19515,7 +19515,7 @@ const descend = Effect.fn("Walker.descend")(function* (pattern, options) {
|
|
|
19515
19515
|
});
|
|
19516
19516
|
|
|
19517
19517
|
//#endregion
|
|
19518
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
19518
|
+
//#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
|
|
19519
19519
|
/**
|
|
19520
19520
|
* Typed failure raised by {@link compileAndExpand}: the single error the
|
|
19521
19521
|
* compile+expand recipe fails with, so a caller catches one tag rather than
|
|
@@ -19606,7 +19606,7 @@ const compileAndExpand = Effect.fn("Walker.compileAndExpand")(function* (pattern
|
|
|
19606
19606
|
});
|
|
19607
19607
|
|
|
19608
19608
|
//#endregion
|
|
19609
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
19609
|
+
//#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
|
|
19610
19610
|
const ascend = (start, options) => Effect.gen(function* () {
|
|
19611
19611
|
const path = yield* Path.Path;
|
|
19612
19612
|
const maxDepth = options?.maxDepth ?? 256;
|
|
@@ -19701,7 +19701,7 @@ var Walker$1 = class {
|
|
|
19701
19701
|
};
|
|
19702
19702
|
|
|
19703
19703
|
//#endregion
|
|
19704
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19704
|
+
//#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
|
|
19705
19705
|
/**
|
|
19706
19706
|
* The marker filenames {@link WorkspaceRoot} probes for, in priority order.
|
|
19707
19707
|
*
|
|
@@ -19889,7 +19889,7 @@ var WorkspaceRoot = class WorkspaceRoot extends Context.Service()("@effected/wor
|
|
|
19889
19889
|
};
|
|
19890
19890
|
|
|
19891
19891
|
//#endregion
|
|
19892
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19892
|
+
//#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
|
|
19893
19893
|
/**
|
|
19894
19894
|
* Hard ceiling on directories the enumerator will visit for one pattern set.
|
|
19895
19895
|
* Guards the pathological case a depth cap alone does not: a wide, shallow
|
|
@@ -19908,7 +19908,7 @@ const MAX_ENUMERATION_ENTRIES = 1e5;
|
|
|
19908
19908
|
const PRUNED_DIRECTORIES = /* @__PURE__ */ new Set([".git", "node_modules"]);
|
|
19909
19909
|
|
|
19910
19910
|
//#endregion
|
|
19911
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
19911
|
+
//#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
|
|
19912
19912
|
/** Directory names never descended into. */
|
|
19913
19913
|
const isPruned = (entry) => PRUNED_DIRECTORIES.has(entry);
|
|
19914
19914
|
/** Join root-relative POSIX segments; `""` is the root itself. */
|
|
@@ -19999,7 +19999,7 @@ var Traversal = class {
|
|
|
19999
19999
|
};
|
|
20000
20000
|
|
|
20001
20001
|
//#endregion
|
|
20002
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
20002
|
+
//#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
|
|
20003
20003
|
/** Strip a trailing slash from `GlobPattern.enumerationPrefix` to get a relative directory. */
|
|
20004
20004
|
const baseOf = (pattern) => pattern.enumerationPrefix.replace(/\/$/, "");
|
|
20005
20005
|
/**
|
|
@@ -20070,7 +20070,7 @@ const enumerate = (root, globs, options) => Effect.gen(function* () {
|
|
|
20070
20070
|
});
|
|
20071
20071
|
|
|
20072
20072
|
//#endregion
|
|
20073
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
20073
|
+
//#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
|
|
20074
20074
|
const stringsOf = (value) => Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : void 0;
|
|
20075
20075
|
/** The `packages:` list of a `pnpm-workspace.yaml` document. Total on a parsed document. */
|
|
20076
20076
|
const pnpmPatternsOf = (document) => {
|
|
@@ -20128,7 +20128,7 @@ const readPatterns = (root) => Effect.gen(function* () {
|
|
|
20128
20128
|
});
|
|
20129
20129
|
|
|
20130
20130
|
//#endregion
|
|
20131
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
20131
|
+
//#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
|
|
20132
20132
|
/**
|
|
20133
20133
|
* Raised when a workspace member's `package.json` cannot be read, parsed, or
|
|
20134
20134
|
* used — it is missing, malformed, or lacks a `name` or `version`.
|
|
@@ -20585,7 +20585,7 @@ var WorkspaceDiscovery = class WorkspaceDiscovery extends Context.Service()("@ef
|
|
|
20585
20585
|
const isStringRecord$2 = (value) => value !== null && typeof value === "object" && !Array.isArray(value) && Object.values(value).every((entry) => typeof entry === "string");
|
|
20586
20586
|
|
|
20587
20587
|
//#endregion
|
|
20588
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
20588
|
+
//#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
|
|
20589
20589
|
/**
|
|
20590
20590
|
* Raised when the workspace dependency graph cannot be topologically ordered
|
|
20591
20591
|
* because it contains a cycle.
|
|
@@ -20885,7 +20885,7 @@ const kahn = (edges) => {
|
|
|
20885
20885
|
};
|
|
20886
20886
|
|
|
20887
20887
|
//#endregion
|
|
20888
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.
|
|
20888
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.9.0_effect@4.0.0-rc.109/node_modules/@effected/git/GitCommand.js
|
|
20889
20889
|
/** The mask every whole-value sensitive positional is replaced with. */
|
|
20890
20890
|
const REDACTED = "<redacted>";
|
|
20891
20891
|
const secretValue = (value) => ({
|
|
@@ -22039,7 +22039,7 @@ var GitCommand = class {
|
|
|
22039
22039
|
};
|
|
22040
22040
|
|
|
22041
22041
|
//#endregion
|
|
22042
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.
|
|
22042
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.9.0_effect@4.0.0-rc.109/node_modules/@effected/git/internal/run.js
|
|
22043
22043
|
/**
|
|
22044
22044
|
* Spawns `command` and collects its stdout, stderr, and exit code as a single
|
|
22045
22045
|
* triple.
|
|
@@ -22067,7 +22067,7 @@ const runCollected = (command) => Effect.scoped(Effect.gen(function* () {
|
|
|
22067
22067
|
}));
|
|
22068
22068
|
|
|
22069
22069
|
//#endregion
|
|
22070
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.
|
|
22070
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.9.0_effect@4.0.0-rc.109/node_modules/@effected/git/Git.js
|
|
22071
22071
|
/** git's own ceiling: a run that has not answered in 30s is not going to. */
|
|
22072
22072
|
const GIT_TIMEOUT = Duration.seconds(30);
|
|
22073
22073
|
/**
|
|
@@ -24285,7 +24285,7 @@ var Git = class Git extends Context.Service()("@effected/git/Git") {
|
|
|
24285
24285
|
};
|
|
24286
24286
|
|
|
24287
24287
|
//#endregion
|
|
24288
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24288
|
+
//#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
|
|
24289
24289
|
/**
|
|
24290
24290
|
* Which git refs to compare, and whether to fold in the working tree.
|
|
24291
24291
|
*
|
|
@@ -24585,7 +24585,7 @@ function resolveFromCatalog(catalogs, wantedDependency) {
|
|
|
24585
24585
|
}
|
|
24586
24586
|
|
|
24587
24587
|
//#endregion
|
|
24588
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24588
|
+
//#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
|
|
24589
24589
|
/** Project a pnpm-workspace manifest's `catalog` / `catalogs` fields into a `Catalogs` map. */
|
|
24590
24590
|
const inlineCatalogs = (manifest) => {
|
|
24591
24591
|
if (manifest.catalog === void 0 && manifest.catalogs === void 0) return {};
|
|
@@ -24651,7 +24651,7 @@ const rangeOf = (catalogs, dependency, specifier) => {
|
|
|
24651
24651
|
};
|
|
24652
24652
|
|
|
24653
24653
|
//#endregion
|
|
24654
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
24654
|
+
//#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
|
|
24655
24655
|
/** Whether `value` is a non-null, non-array object. */
|
|
24656
24656
|
const isObject$2 = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
24657
24657
|
/**
|
|
@@ -25066,7 +25066,7 @@ var ConfigDependencyHooks = class ConfigDependencyHooks extends Context.Service(
|
|
|
25066
25066
|
};
|
|
25067
25067
|
|
|
25068
25068
|
//#endregion
|
|
25069
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25069
|
+
//#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
|
|
25070
25070
|
/**
|
|
25071
25071
|
* The four package managers this package understands.
|
|
25072
25072
|
*
|
|
@@ -25442,7 +25442,7 @@ var PackageManagerDetector = class PackageManagerDetector extends Context.Servic
|
|
|
25442
25442
|
};
|
|
25443
25443
|
|
|
25444
25444
|
//#endregion
|
|
25445
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25445
|
+
//#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
|
|
25446
25446
|
/**
|
|
25447
25447
|
* Raised when the workspace's lockfile cannot be read off disk.
|
|
25448
25448
|
*
|
|
@@ -25623,7 +25623,7 @@ var LockfileReader = class LockfileReader extends Context.Service()("@effected/w
|
|
|
25623
25623
|
};
|
|
25624
25624
|
|
|
25625
25625
|
//#endregion
|
|
25626
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25626
|
+
//#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
|
|
25627
25627
|
/** The public npm registry, used when `publishConfig.registry` says nothing. */
|
|
25628
25628
|
const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
|
|
25629
25629
|
/**
|
|
@@ -25783,7 +25783,7 @@ var PublishabilityDetector = class extends Context.Service()("@effected/workspac
|
|
|
25783
25783
|
};
|
|
25784
25784
|
|
|
25785
25785
|
//#endregion
|
|
25786
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25786
|
+
//#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
|
|
25787
25787
|
/**
|
|
25788
25788
|
* Strip pnpm's peer-disambiguation suffix from a recorded importer version.
|
|
25789
25789
|
*
|
|
@@ -25870,7 +25870,7 @@ const unanimousVersionOf = (index, dependency) => {
|
|
|
25870
25870
|
};
|
|
25871
25871
|
|
|
25872
25872
|
//#endregion
|
|
25873
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
25873
|
+
//#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
|
|
25874
25874
|
/**
|
|
25875
25875
|
* An immutable, fully-normalized catalog collection — the one catalog
|
|
25876
25876
|
* resolution semantic in the package.
|
|
@@ -26398,7 +26398,7 @@ var WorkspaceCatalogs = class WorkspaceCatalogs extends Context.Service()("@effe
|
|
|
26398
26398
|
};
|
|
26399
26399
|
|
|
26400
26400
|
//#endregion
|
|
26401
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
26401
|
+
//#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
|
|
26402
26402
|
const EMPTY = Object.freeze(Object.create(null));
|
|
26403
26403
|
const DependencyMap = Schema.Record(Schema.String, Schema.String).pipe(Schema.withDecodingDefaultKey(Effect.succeed(EMPTY)), Schema.withConstructorDefault(Effect.succeed(EMPTY)));
|
|
26404
26404
|
/**
|
|
@@ -26622,7 +26622,7 @@ var WorkspaceStateSnapshot = class extends Schema.Class("WorkspaceStateSnapshot"
|
|
|
26622
26622
|
};
|
|
26623
26623
|
|
|
26624
26624
|
//#endregion
|
|
26625
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
26625
|
+
//#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
|
|
26626
26626
|
/** Whether `value` is a non-null, non-array object. */
|
|
26627
26627
|
const isObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
26628
26628
|
/** Whether every value in a record is a string — a usable dependency map. */
|
|
@@ -26900,7 +26900,7 @@ var WorkspaceSnapshots = class WorkspaceSnapshots extends Context.Service()("@ef
|
|
|
26900
26900
|
};
|
|
26901
26901
|
|
|
26902
26902
|
//#endregion
|
|
26903
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
26903
|
+
//#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
|
|
26904
26904
|
const compose = (options, catalogsFactory) => {
|
|
26905
26905
|
const roots = WorkspaceRoot.layer;
|
|
26906
26906
|
const detector = PackageManagerDetector.layer;
|