@savvy-web/silk 3.1.2 → 3.2.1
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 +106 -106
- package/changesets-changelog.d.cts +8 -8
- package/changesets-changelog.d.ts +8 -8
- package/changesets-changelog.js +109 -109
- package/changesets-markdownlint.cjs +106 -106
- package/changesets-markdownlint.d.cts +8 -8
- package/changesets-markdownlint.d.ts +8 -8
- package/changesets-markdownlint.js +109 -109
- package/package.json +5 -5
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -1
package/changesets-changelog.cjs
CHANGED
|
@@ -419,7 +419,7 @@ const trimTrailingSlashes = (s) => {
|
|
|
419
419
|
return s.slice(0, end);
|
|
420
420
|
};
|
|
421
421
|
//#endregion
|
|
422
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
422
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/limits.js
|
|
423
423
|
/** Hard cap on pattern length. Upstream minimatch's MAX_PATTERN_LENGTH (64KB). */
|
|
424
424
|
const MAX_PATTERN_LENGTH = 1024 * 64;
|
|
425
425
|
/** Default brace-expansion output budget. Upstream brace-expansion's EXPANSION_MAX. */
|
|
@@ -453,7 +453,7 @@ const assertCap = (name, value) => {
|
|
|
453
453
|
return value;
|
|
454
454
|
};
|
|
455
455
|
//#endregion
|
|
456
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
456
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/unescape.js
|
|
457
457
|
/**
|
|
458
458
|
* Un-escape a string that has been escaped with `escape`.
|
|
459
459
|
*
|
|
@@ -476,11 +476,11 @@ const unescapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = true
|
|
|
476
476
|
return windowsPathsNoEscape ? s.replace(/\[([^/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\{}])\]/g, "$1$2").replace(/\\([^/{}])/g, "$1");
|
|
477
477
|
};
|
|
478
478
|
//#endregion
|
|
479
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
479
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/types.js
|
|
480
480
|
/** The globstar marker in a compiled pattern set. */
|
|
481
481
|
const GLOBSTAR = Symbol("globstar **");
|
|
482
482
|
//#endregion
|
|
483
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
483
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/escape.js
|
|
484
484
|
/**
|
|
485
485
|
* Escape all magic characters in a glob pattern.
|
|
486
486
|
*
|
|
@@ -498,13 +498,13 @@ const escapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = false
|
|
|
498
498
|
return windowsPathsNoEscape ? s.replace(/[?*()[\]]/g, "[$&]") : s.replace(/[?*()[\]\\]/g, "\\$&");
|
|
499
499
|
};
|
|
500
500
|
//#endregion
|
|
501
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
501
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/assertValidPattern.js
|
|
502
502
|
const assertValidPattern = (pattern) => {
|
|
503
503
|
if (typeof pattern !== "string") throw new TypeError("invalid pattern");
|
|
504
504
|
if (pattern.length > 65536) throw new GuardExceeded("PatternTooLong", MAX_PATTERN_LENGTH, pattern.length);
|
|
505
505
|
};
|
|
506
506
|
//#endregion
|
|
507
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
507
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/braceExpressions.js
|
|
508
508
|
const posixClasses = {
|
|
509
509
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
510
510
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -627,7 +627,7 @@ const parseClass = (glob, position) => {
|
|
|
627
627
|
];
|
|
628
628
|
};
|
|
629
629
|
//#endregion
|
|
630
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
630
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/ast.js
|
|
631
631
|
const types = /* @__PURE__ */ new Set([
|
|
632
632
|
"!",
|
|
633
633
|
"?",
|
|
@@ -1144,7 +1144,7 @@ var AST = class AST {
|
|
|
1144
1144
|
}
|
|
1145
1145
|
};
|
|
1146
1146
|
//#endregion
|
|
1147
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1147
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/balancedMatch.js
|
|
1148
1148
|
const maybeMatch = (reg, str) => {
|
|
1149
1149
|
const m = str.match(reg);
|
|
1150
1150
|
return m ? m[0] : null;
|
|
@@ -1202,7 +1202,7 @@ const range = (a, b, str) => {
|
|
|
1202
1202
|
return result;
|
|
1203
1203
|
};
|
|
1204
1204
|
//#endregion
|
|
1205
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1205
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/braceExpansion.js
|
|
1206
1206
|
const escSlash = `\0SLASH${Math.random()}\0`;
|
|
1207
1207
|
const escOpen = `\0OPEN${Math.random()}\0`;
|
|
1208
1208
|
const escClose = `\0CLOSE${Math.random()}\0`;
|
|
@@ -1349,7 +1349,7 @@ function expand_(str, max, isTopInput, depth) {
|
|
|
1349
1349
|
}
|
|
1350
1350
|
}
|
|
1351
1351
|
//#endregion
|
|
1352
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1352
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/minimatch.js
|
|
1353
1353
|
const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
|
|
1354
1354
|
const starDotExtTest = (ext) => (f) => !f.startsWith(".") && f.endsWith(ext);
|
|
1355
1355
|
const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
|
|
@@ -1920,7 +1920,7 @@ var Minimatch = class {
|
|
|
1920
1920
|
}
|
|
1921
1921
|
};
|
|
1922
1922
|
//#endregion
|
|
1923
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1923
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/GlobPattern.js
|
|
1924
1924
|
/**
|
|
1925
1925
|
* Typed failure raised when a glob pattern trips a compile-time guard:
|
|
1926
1926
|
* over-length, brace-expansion budget exhaustion, or nesting past the depth
|
|
@@ -2199,7 +2199,7 @@ var GlobPattern = class GlobPattern extends effect.Schema.Class("GlobPattern")(e
|
|
|
2199
2199
|
})));
|
|
2200
2200
|
};
|
|
2201
2201
|
//#endregion
|
|
2202
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
2202
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/GlobSet.js
|
|
2203
2203
|
const exclusionTarget = (pattern) => pattern.startsWith("!") ? pattern.slice(1) : void 0;
|
|
2204
2204
|
const allCompileUnderDefaults = (patterns) => {
|
|
2205
2205
|
for (const pattern of patterns) {
|
|
@@ -2353,7 +2353,7 @@ var GlobSet = class GlobSet extends effect.Schema.Class("GlobSet")(effect.Schema
|
|
|
2353
2353
|
}
|
|
2354
2354
|
};
|
|
2355
2355
|
//#endregion
|
|
2356
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
2356
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/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"`.
|
|
@@ -2374,7 +2374,7 @@ var BunExtension = class extends effect.Schema.Class("BunExtension")({
|
|
|
2374
2374
|
trustedDependencies: effect.Schema.optionalKey(effect.Schema.Array(effect.Schema.String))
|
|
2375
2375
|
}) {};
|
|
2376
2376
|
//#endregion
|
|
2377
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
2377
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.3.1_@effected+semver@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/CatalogResolver.js
|
|
2378
2378
|
/**
|
|
2379
2379
|
* Contract for resolving pnpm `catalog:` dependency specifiers to concrete
|
|
2380
2380
|
* version ranges.
|
|
@@ -2420,7 +2420,7 @@ var CatalogResolver = class CatalogResolver extends effect.Context.Service()("@e
|
|
|
2420
2420
|
static noop = effect.Layer.succeed(CatalogResolver, { rangeOf: () => effect.Effect.succeed(effect.Option.none()) });
|
|
2421
2421
|
};
|
|
2422
2422
|
//#endregion
|
|
2423
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
2423
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.3.1_@effected+semver@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/WorkspaceResolver.js
|
|
2424
2424
|
/**
|
|
2425
2425
|
* Raised when a `catalog:` or `workspace:` specifier cannot be resolved
|
|
2426
2426
|
* because the resolution mechanism itself failed — not for an ordinary
|
|
@@ -2481,7 +2481,7 @@ var WorkspaceResolver = class WorkspaceResolver extends effect.Context.Service()
|
|
|
2481
2481
|
static noop = effect.Layer.succeed(WorkspaceResolver, { versionOf: () => effect.Effect.succeed(effect.Option.none()) });
|
|
2482
2482
|
};
|
|
2483
2483
|
//#endregion
|
|
2484
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
2484
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.3.1_@effected+semver@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/CatalogAssemblyError.js
|
|
2485
2485
|
/**
|
|
2486
2486
|
* Raised when a workspace's catalogs cannot be assembled — a `pnpm-workspace.yaml`
|
|
2487
2487
|
* that is unreadable or not valid YAML, a root `package.json` `workspaces` field
|
|
@@ -2525,7 +2525,7 @@ var CatalogAssemblyError = class extends effect.Schema.TaggedErrorClass()("Catal
|
|
|
2525
2525
|
}
|
|
2526
2526
|
};
|
|
2527
2527
|
//#endregion
|
|
2528
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
2528
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.3.1_@effected+semver@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/DependencySection.js
|
|
2529
2529
|
/**
|
|
2530
2530
|
* The short dependency kind: which dependency map an entry came from, named the
|
|
2531
2531
|
* way consumers branch on it.
|
|
@@ -2557,7 +2557,7 @@ Object.fromEntries(Object.entries({
|
|
|
2557
2557
|
optional: "optionalDependencies"
|
|
2558
2558
|
}).map(([kind, field]) => [field, kind]));
|
|
2559
2559
|
//#endregion
|
|
2560
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
2560
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/desugar.js
|
|
2561
2561
|
const sv = (major, minor, patch, prerelease = [], build = []) => ({
|
|
2562
2562
|
major,
|
|
2563
2563
|
minor,
|
|
@@ -2646,7 +2646,7 @@ const desugarHyphen = (lower, upper) => {
|
|
|
2646
2646
|
return [comp(">=", lowerVersion)];
|
|
2647
2647
|
};
|
|
2648
2648
|
//#endregion
|
|
2649
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
2649
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/grammar.js
|
|
2650
2650
|
/** Private control-flow exception; never escapes the entry points. */
|
|
2651
2651
|
var ParseFailure = class {
|
|
2652
2652
|
position;
|
|
@@ -3041,7 +3041,7 @@ const formatComparator = (c) => {
|
|
|
3041
3041
|
/** Print comparator sets as `a b || c d`. */
|
|
3042
3042
|
const formatRange = (sets) => sets.map((set) => set.map(formatComparator).join(" ")).join(" || ");
|
|
3043
3043
|
//#endregion
|
|
3044
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
3044
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/order.js
|
|
3045
3045
|
/**
|
|
3046
3046
|
* Compare two prerelease identifiers per SemVer 2.0.0 §11: numeric
|
|
3047
3047
|
* identifiers always have lower precedence than alphanumeric ones; numerics
|
|
@@ -3094,7 +3094,7 @@ const compareBuild = (a, b) => {
|
|
|
3094
3094
|
return 0;
|
|
3095
3095
|
};
|
|
3096
3096
|
//#endregion
|
|
3097
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
3097
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/SemVer.js
|
|
3098
3098
|
/**
|
|
3099
3099
|
* Indicates that a string could not be parsed as a valid SemVer 2.0.0 version.
|
|
3100
3100
|
*
|
|
@@ -3529,7 +3529,7 @@ var SemVerBump = class {
|
|
|
3529
3529
|
}
|
|
3530
3530
|
};
|
|
3531
3531
|
//#endregion
|
|
3532
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
3532
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/Comparator.js
|
|
3533
3533
|
/**
|
|
3534
3534
|
* Indicates that a string could not be parsed as a single comparator.
|
|
3535
3535
|
*
|
|
@@ -3663,7 +3663,7 @@ var Comparator = class Comparator extends effect.Schema.Class("Comparator")({
|
|
|
3663
3663
|
}
|
|
3664
3664
|
};
|
|
3665
3665
|
//#endregion
|
|
3666
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
3666
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/normalize.js
|
|
3667
3667
|
const operatorWeight = (op) => {
|
|
3668
3668
|
switch (op) {
|
|
3669
3669
|
case ">=": return 0;
|
|
@@ -3694,7 +3694,7 @@ const normalizeComparatorSet = (set) => sortComparators(removeDuplicates(set));
|
|
|
3694
3694
|
/** Normalize every comparator set in a range: sort and deduplicate each independently. */
|
|
3695
3695
|
const normalizeSets = (sets) => sets.map(normalizeComparatorSet);
|
|
3696
3696
|
//#endregion
|
|
3697
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
3697
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/Range.js
|
|
3698
3698
|
/**
|
|
3699
3699
|
* Indicates that a string could not be parsed as a range expression.
|
|
3700
3700
|
*
|
|
@@ -4026,7 +4026,7 @@ const isComparatorSetSubset = (sub, sup) => {
|
|
|
4026
4026
|
return true;
|
|
4027
4027
|
};
|
|
4028
4028
|
//#endregion
|
|
4029
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
4029
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.3.1_@effected+semver@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/DependencySpecifier.js
|
|
4030
4030
|
/**
|
|
4031
4031
|
* Indicates that a string could not be parsed as a valid dependency specifier.
|
|
4032
4032
|
*
|
|
@@ -4233,7 +4233,7 @@ const DependencySpecifier = Object.assign(brandedSpecifier, {
|
|
|
4233
4233
|
FromString: fromString
|
|
4234
4234
|
});
|
|
4235
4235
|
//#endregion
|
|
4236
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
4236
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.3.1_@effected+semver@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/IntegrityHash.js
|
|
4237
4237
|
const SRI_RE = /^(sha1|sha256|sha384|sha512)-[A-Za-z0-9+/]+={0,2}$/;
|
|
4238
4238
|
const COREPACK_RE = /^(sha1|sha256|sha384|sha512)\.[0-9a-f]+$/;
|
|
4239
4239
|
const YARN_RE = /^[0-9]+(c[0-9]+)?\/[0-9a-f]+$/;
|
|
@@ -4286,7 +4286,7 @@ const IntegrityHash = Object.assign(brandedIntegrity, {
|
|
|
4286
4286
|
decode: decode$2
|
|
4287
4287
|
});
|
|
4288
4288
|
//#endregion
|
|
4289
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
4289
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.3.1_@effected+semver@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/ReleaseAgeGate.js
|
|
4290
4290
|
const MS_PER_MINUTE = 6e4;
|
|
4291
4291
|
/**
|
|
4292
4292
|
* A source's partial contribution to a {@link ReleaseAgeGate}: the effective
|
|
@@ -4454,7 +4454,7 @@ var ReleaseAgeGate = class ReleaseAgeGate extends effect.Schema.Class("ReleaseAg
|
|
|
4454
4454
|
}
|
|
4455
4455
|
};
|
|
4456
4456
|
//#endregion
|
|
4457
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4457
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/ImporterDependency.js
|
|
4458
4458
|
/**
|
|
4459
4459
|
* One declared dependency of one workspace importer, as the lockfile records it.
|
|
4460
4460
|
*
|
|
@@ -4482,7 +4482,7 @@ var ImporterDependency = class extends effect.Schema.Class("ImporterDependency")
|
|
|
4482
4482
|
depType: DependencyField
|
|
4483
4483
|
}) {};
|
|
4484
4484
|
//#endregion
|
|
4485
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4485
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/LockfileImporter.js
|
|
4486
4486
|
/**
|
|
4487
4487
|
* One workspace importer's declared dependencies, as the lockfile records them.
|
|
4488
4488
|
*
|
|
@@ -4506,7 +4506,7 @@ var LockfileImporter = class extends effect.Schema.Class("LockfileImporter")({
|
|
|
4506
4506
|
dependencies: effect.Schema.Array(ImporterDependency)
|
|
4507
4507
|
}) {};
|
|
4508
4508
|
//#endregion
|
|
4509
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4509
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/ResolvedPackage.js
|
|
4510
4510
|
const EMPTY_DEPENDENCIES = {};
|
|
4511
4511
|
/**
|
|
4512
4512
|
* A package resolved from a lockfile.
|
|
@@ -4541,7 +4541,7 @@ var ResolvedPackage = class extends effect.Schema.Class("ResolvedPackage")({
|
|
|
4541
4541
|
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)))
|
|
4542
4542
|
}) {};
|
|
4543
4543
|
//#endregion
|
|
4544
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4544
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/WorkspaceDependency.js
|
|
4545
4545
|
/**
|
|
4546
4546
|
* A directed dependency edge between two workspace packages as recorded in
|
|
4547
4547
|
* the lockfile.
|
|
@@ -4563,7 +4563,7 @@ var WorkspaceDependency = class extends effect.Schema.Class("WorkspaceDependency
|
|
|
4563
4563
|
constraint: effect.Schema.String
|
|
4564
4564
|
}) {};
|
|
4565
4565
|
//#endregion
|
|
4566
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4566
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/PnpmExtension.js
|
|
4567
4567
|
/**
|
|
4568
4568
|
* Extension data specific to pnpm lockfiles, attached to `Lockfile.extension`
|
|
4569
4569
|
* when the format is `"pnpm"`.
|
|
@@ -4588,7 +4588,7 @@ var PnpmExtension = class extends effect.Schema.Class("PnpmExtension")({
|
|
|
4588
4588
|
}))
|
|
4589
4589
|
}) {};
|
|
4590
4590
|
//#endregion
|
|
4591
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4591
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/LockfileFormat.js
|
|
4592
4592
|
/**
|
|
4593
4593
|
* The lockfile formats this package parses: bun's `bun.lock` (JSONC), npm's
|
|
4594
4594
|
* `package-lock.json` (v2/v3 JSON), pnpm's `pnpm-lock.yaml` and yarn Berry's
|
|
@@ -4622,7 +4622,7 @@ const FILENAMES = {
|
|
|
4622
4622
|
*/
|
|
4623
4623
|
const filenameFor = (format) => FILENAMES[format];
|
|
4624
4624
|
//#endregion
|
|
4625
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4625
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/internal/shared.js
|
|
4626
4626
|
/**
|
|
4627
4627
|
* The four dependency sections of a manifest, in a stable order — the shared
|
|
4628
4628
|
* dependency-sections table (v3's `DEP_SECTIONS`). Each entry is both the
|
|
@@ -4748,7 +4748,7 @@ const extractWorkspaceDeps = (workspaces, workspaceNames) => {
|
|
|
4748
4748
|
return deps;
|
|
4749
4749
|
};
|
|
4750
4750
|
//#endregion
|
|
4751
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
4751
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/JsoncNode.js
|
|
4752
4752
|
/**
|
|
4753
4753
|
* Discriminator values for JSONC AST node types: the JSON value types
|
|
4754
4754
|
* (`string`/`number`/`boolean`/`null`), the structural types
|
|
@@ -4923,7 +4923,7 @@ function evaluateNode(node, depth) {
|
|
|
4923
4923
|
}
|
|
4924
4924
|
}
|
|
4925
4925
|
//#endregion
|
|
4926
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
4926
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/scanner.js
|
|
4927
4927
|
const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
|
|
4928
4928
|
const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
|
|
4929
4929
|
const isDigit$1 = (ch) => ch >= 48 && ch <= 57;
|
|
@@ -5219,7 +5219,7 @@ const createScanner$2 = (text, ignoreTrivia = false) => {
|
|
|
5219
5219
|
};
|
|
5220
5220
|
};
|
|
5221
5221
|
//#endregion
|
|
5222
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
5222
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/skip.js
|
|
5223
5223
|
/**
|
|
5224
5224
|
* Iteratively consume the value beginning at the cursor's current token and
|
|
5225
5225
|
* return its tight end offset (excludes trailing whitespace/comments).
|
|
@@ -5249,7 +5249,7 @@ const skipBalancedValue = (cursor) => {
|
|
|
5249
5249
|
return end;
|
|
5250
5250
|
};
|
|
5251
5251
|
//#endregion
|
|
5252
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
5252
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/parser.js
|
|
5253
5253
|
/**
|
|
5254
5254
|
* The public parse-error code vocabulary. The facade builds its `@public`
|
|
5255
5255
|
* `JsoncParseErrorCode` schema from this array; the parser produces these codes
|
|
@@ -5662,7 +5662,7 @@ const parseTree$2 = (text, flags) => {
|
|
|
5662
5662
|
};
|
|
5663
5663
|
};
|
|
5664
5664
|
//#endregion
|
|
5665
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
5665
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/Jsonc.js
|
|
5666
5666
|
/**
|
|
5667
5667
|
* The single public parse-error code vocabulary, appearing as the `code` field
|
|
5668
5668
|
* of {@link JsoncParseErrorDetail}.
|
|
@@ -6266,7 +6266,7 @@ var JsoncEdit = class extends effect.Schema.Class("JsoncEdit")({
|
|
|
6266
6266
|
}
|
|
6267
6267
|
};
|
|
6268
6268
|
//#endregion
|
|
6269
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
6269
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/navigate.js
|
|
6270
6270
|
/**
|
|
6271
6271
|
* Resolve `path` against `text`, returning where the target is (or where it
|
|
6272
6272
|
* would be inserted). `path` must be non-empty — the whole-document case is
|
|
@@ -6393,7 +6393,7 @@ function navigate(text, path) {
|
|
|
6393
6393
|
return { _tag: "NoOp" };
|
|
6394
6394
|
}
|
|
6395
6395
|
//#endregion
|
|
6396
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
6396
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/JsoncModifier.js
|
|
6397
6397
|
/**
|
|
6398
6398
|
* Raised when `JsoncModifier.modify` cannot navigate the requested path: the
|
|
6399
6399
|
* value at `depth` is not the container kind (`expected`) the next path segment
|
|
@@ -6521,7 +6521,7 @@ var JsoncModifier = class {
|
|
|
6521
6521
|
});
|
|
6522
6522
|
};
|
|
6523
6523
|
//#endregion
|
|
6524
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
6524
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/internal/bun.js
|
|
6525
6525
|
const DepRecord$2 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
6526
6526
|
const BunWorkspaceEntry = effect.Schema.Struct({
|
|
6527
6527
|
name: effect.Schema.optionalKey(effect.Schema.String),
|
|
@@ -6614,7 +6614,7 @@ const toFields$3 = (raw) => effect.Effect.gen(function* () {
|
|
|
6614
6614
|
};
|
|
6615
6615
|
});
|
|
6616
6616
|
//#endregion
|
|
6617
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
6617
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/internal/npm.js
|
|
6618
6618
|
const DepRecord$1 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
6619
6619
|
const NpmPackageEntry = effect.Schema.Struct({
|
|
6620
6620
|
name: effect.Schema.optionalKey(effect.Schema.String),
|
|
@@ -6712,7 +6712,7 @@ const toFields$2 = (raw) => effect.Effect.gen(function* () {
|
|
|
6712
6712
|
};
|
|
6713
6713
|
});
|
|
6714
6714
|
//#endregion
|
|
6715
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
6715
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/YamlNode.js
|
|
6716
6716
|
/**
|
|
6717
6717
|
* YAML scalar presentation styles.
|
|
6718
6718
|
*
|
|
@@ -7114,7 +7114,7 @@ function nodeToValue(node, anchors, budget, counting = false) {
|
|
|
7114
7114
|
return null;
|
|
7115
7115
|
}
|
|
7116
7116
|
//#endregion
|
|
7117
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
7117
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/diagnostics.js
|
|
7118
7118
|
/** Error codes emitted by the lexer stage. */
|
|
7119
7119
|
const YAML_LEX_ERROR_CODES = [
|
|
7120
7120
|
"UnexpectedCharacter",
|
|
@@ -7192,7 +7192,7 @@ function isFatalCode(code) {
|
|
|
7192
7192
|
return FATAL_CODES.has(code);
|
|
7193
7193
|
}
|
|
7194
7194
|
//#endregion
|
|
7195
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
7195
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/YamlDiagnostic.js
|
|
7196
7196
|
/**
|
|
7197
7197
|
* Error codes emitted by the lexer stage.
|
|
7198
7198
|
*
|
|
@@ -7313,7 +7313,7 @@ function lineChar(text, offset) {
|
|
|
7313
7313
|
};
|
|
7314
7314
|
}
|
|
7315
7315
|
//#endregion
|
|
7316
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
7316
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/anchors.js
|
|
7317
7317
|
/**
|
|
7318
7318
|
* Check if a pending anchor is being applied to an alias node (invalid in YAML 1.2 §3.2.2).
|
|
7319
7319
|
* Aliases represent references to existing anchored nodes and cannot have their own anchors.
|
|
@@ -7406,7 +7406,7 @@ function collectAnchors(node, anchors) {
|
|
|
7406
7406
|
}
|
|
7407
7407
|
}
|
|
7408
7408
|
//#endregion
|
|
7409
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
7409
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/lexer.js
|
|
7410
7410
|
/**
|
|
7411
7411
|
* Create a new YAML scanner for the given source text.
|
|
7412
7412
|
*
|
|
@@ -8363,7 +8363,7 @@ function lexAll(text) {
|
|
|
8363
8363
|
return tokens;
|
|
8364
8364
|
}
|
|
8365
8365
|
//#endregion
|
|
8366
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
8366
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/cst-parser.js
|
|
8367
8367
|
/**
|
|
8368
8368
|
* Hardening: cap CST nesting so hostile inputs cannot overflow the stack
|
|
8369
8369
|
* while the tree is being BUILT. Set slightly above the composer's
|
|
@@ -9075,7 +9075,7 @@ function parseCSTAll(text) {
|
|
|
9075
9075
|
return parseDocuments(lexAll(text), text);
|
|
9076
9076
|
}
|
|
9077
9077
|
//#endregion
|
|
9078
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
9078
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/state.js
|
|
9079
9079
|
let lineStartsText;
|
|
9080
9080
|
let lineStartsCache = [];
|
|
9081
9081
|
function getLineStarts(text) {
|
|
@@ -9181,7 +9181,7 @@ function exitNesting(state) {
|
|
|
9181
9181
|
state.depth--;
|
|
9182
9182
|
}
|
|
9183
9183
|
//#endregion
|
|
9184
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
9184
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/tags.js
|
|
9185
9185
|
/**
|
|
9186
9186
|
* Resolve a tag shorthand using the document's %TAG directives.
|
|
9187
9187
|
* For example, with `%TAG !! tag:example.com,2000:app/`, the tag `!!int`
|
|
@@ -9267,7 +9267,7 @@ function validateTagHandlesInDocument(docCst, state) {
|
|
|
9267
9267
|
}
|
|
9268
9268
|
}
|
|
9269
9269
|
//#endregion
|
|
9270
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
9270
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/scalars.js
|
|
9271
9271
|
const NULL_RE$1 = /^(?:null|Null|NULL|~)$/;
|
|
9272
9272
|
const TRUE_RE$1 = /^(?:true|True|TRUE)$/;
|
|
9273
9273
|
const FALSE_RE$1 = /^(?:false|False|FALSE)$/;
|
|
@@ -10145,7 +10145,7 @@ function shouldPreserveRaw(rawValue, value) {
|
|
|
10145
10145
|
return false;
|
|
10146
10146
|
}
|
|
10147
10147
|
//#endregion
|
|
10148
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
10148
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/block.js
|
|
10149
10149
|
/**
|
|
10150
10150
|
* Compose a block map from its CST children, with an optional external first key.
|
|
10151
10151
|
*
|
|
@@ -11293,7 +11293,7 @@ function composeFlatBlockMap(children, startIdx, parentCst, state, externalFirst
|
|
|
11293
11293
|
return map;
|
|
11294
11294
|
}
|
|
11295
11295
|
//#endregion
|
|
11296
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
11296
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/flow.js
|
|
11297
11297
|
/**
|
|
11298
11298
|
* Validate that flow collection entries are separated by commas.
|
|
11299
11299
|
*
|
|
@@ -11685,7 +11685,7 @@ function composeFlowSeqInner(cst, state, meta, parentBlockColumn) {
|
|
|
11685
11685
|
return seq;
|
|
11686
11686
|
}
|
|
11687
11687
|
//#endregion
|
|
11688
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
11688
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/document.js
|
|
11689
11689
|
/** The flow-composer dispatch wired into every state this module creates. */
|
|
11690
11690
|
const FLOW = {
|
|
11691
11691
|
composeFlowMap,
|
|
@@ -12351,7 +12351,7 @@ function composeAllDocuments(text, options) {
|
|
|
12351
12351
|
};
|
|
12352
12352
|
}
|
|
12353
12353
|
//#endregion
|
|
12354
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
12354
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/fold.js
|
|
12355
12355
|
/**
|
|
12356
12356
|
* Column-based line folding for a single logical scalar line (YAML 1.2 flow
|
|
12357
12357
|
* folding, §7.3 / §8.2.1). Breaks the content at "safe" single-space
|
|
@@ -12587,7 +12587,7 @@ function renderBlockFolded(s, indent) {
|
|
|
12587
12587
|
return `>${indentIndicator}${chomp}\n${outputLines.join("\n")}`;
|
|
12588
12588
|
}
|
|
12589
12589
|
//#endregion
|
|
12590
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
12590
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/stringifier.js
|
|
12591
12591
|
/**
|
|
12592
12592
|
* Thrown by the stringifier on its failure paths (circular references). The
|
|
12593
12593
|
* facade catches this and materializes the public stringify error.
|
|
@@ -13536,7 +13536,7 @@ function deepEqualValues(a, b) {
|
|
|
13536
13536
|
return false;
|
|
13537
13537
|
}
|
|
13538
13538
|
//#endregion
|
|
13539
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
13539
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/internal/documents.js
|
|
13540
13540
|
/**
|
|
13541
13541
|
* An empty YAML document composes to `null` (`Yaml.parseAll("")` is `[null]`,
|
|
13542
13542
|
* and the trailing document of an env-only `pnpm-lock.yaml` is `null` too).
|
|
@@ -13606,7 +13606,7 @@ const selectSoleDocument = (content) => effect.Effect.gen(function* () {
|
|
|
13606
13606
|
};
|
|
13607
13607
|
});
|
|
13608
13608
|
//#endregion
|
|
13609
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
13609
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/internal/pnpm.js
|
|
13610
13610
|
const PnpmImporterDeps = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.Struct({
|
|
13611
13611
|
specifier: effect.Schema.String,
|
|
13612
13612
|
version: effect.Schema.String
|
|
@@ -13732,7 +13732,7 @@ const toFields$1 = (raw) => effect.Effect.gen(function* () {
|
|
|
13732
13732
|
};
|
|
13733
13733
|
});
|
|
13734
13734
|
//#endregion
|
|
13735
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
13735
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/internal/yarn.js
|
|
13736
13736
|
const YarnLockfileRaw = effect.Schema.Record(effect.Schema.String, effect.Schema.Unknown);
|
|
13737
13737
|
const DepRecord = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
13738
13738
|
const YarnEntry = effect.Schema.Struct({
|
|
@@ -13855,7 +13855,7 @@ const cleanYarnDeps = (deps) => {
|
|
|
13855
13855
|
return Object.fromEntries(Object.entries(deps).map(([name, value]) => [name, value.startsWith("npm:") ? value.slice(4) : value]));
|
|
13856
13856
|
};
|
|
13857
13857
|
//#endregion
|
|
13858
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
13858
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/Lockfile.js
|
|
13859
13859
|
const EMPTY_IMPORTERS = [];
|
|
13860
13860
|
/**
|
|
13861
13861
|
* Failure of `Lockfile.parse`: the given content is not a valid lockfile of
|
|
@@ -14099,7 +14099,7 @@ var Lockfile = class Lockfile extends effect.Schema.Class("Lockfile")({
|
|
|
14099
14099
|
}
|
|
14100
14100
|
};
|
|
14101
14101
|
//#endregion
|
|
14102
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
14102
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.10_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__@effected+npm@0_baf93f2c33d0504f713f685ac5710e50/node_modules/@effected/lockfiles/LockfileIntegrity.js
|
|
14103
14103
|
/**
|
|
14104
14104
|
* The minimal manifest shape {@link LockfileIntegrity.compare} checks a
|
|
14105
14105
|
* lockfile against: a package name plus the four optional dependency maps.
|
|
@@ -14215,7 +14215,7 @@ var LockfileIntegrity = class LockfileIntegrity extends effect.Schema.Class("Loc
|
|
|
14215
14215
|
}
|
|
14216
14216
|
};
|
|
14217
14217
|
//#endregion
|
|
14218
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
14218
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/Dependency.js
|
|
14219
14219
|
/**
|
|
14220
14220
|
* A resolved dependency entry pairing a package name with its version
|
|
14221
14221
|
* specifier and the `kind` of map it came from (`@effected/npm`'s
|
|
@@ -14279,7 +14279,7 @@ var Dependency = class extends effect.Schema.Class("Dependency")({
|
|
|
14279
14279
|
}
|
|
14280
14280
|
};
|
|
14281
14281
|
//#endregion
|
|
14282
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
14282
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/DevEngines.js
|
|
14283
14283
|
/**
|
|
14284
14284
|
* A single `devEngines` constraint with a name and optional `version` / `onFail`.
|
|
14285
14285
|
*
|
|
@@ -14317,7 +14317,7 @@ const DevEnginesSchema = effect.Schema.Struct({
|
|
|
14317
14317
|
libc: effect.Schema.optionalKey(DevEngineOrArray)
|
|
14318
14318
|
});
|
|
14319
14319
|
//#endregion
|
|
14320
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
14320
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/licenseIds.js
|
|
14321
14321
|
/** @internal */
|
|
14322
14322
|
const ACTIVE_LICENSE_IDS = [
|
|
14323
14323
|
"0BSD",
|
|
@@ -15050,7 +15050,7 @@ const LICENSE_IDS = new Set(ACTIVE_LICENSE_IDS);
|
|
|
15050
15050
|
/** @internal */
|
|
15051
15051
|
const DEPRECATED_LICENSE_IDS = new Set(DEPRECATED_LICENSE_ID_LIST);
|
|
15052
15052
|
//#endregion
|
|
15053
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15053
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/License.js
|
|
15054
15054
|
/**
|
|
15055
15055
|
* Indicates that a string is not a valid SPDX expression fragment: an
|
|
15056
15056
|
* unrecognized license or exception identifier, or a malformed
|
|
@@ -15219,7 +15219,7 @@ var License = class License extends effect.Schema.Class("License")({
|
|
|
15219
15219
|
}
|
|
15220
15220
|
};
|
|
15221
15221
|
//#endregion
|
|
15222
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15222
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/exceptions.js
|
|
15223
15223
|
/** @internal */
|
|
15224
15224
|
const ACTIVE_EXCEPTION_IDS = [
|
|
15225
15225
|
"389-exception",
|
|
@@ -15296,7 +15296,7 @@ const EXCEPTION_IDS = new Set(ACTIVE_EXCEPTION_IDS);
|
|
|
15296
15296
|
/** @internal */
|
|
15297
15297
|
const DEPRECATED_EXCEPTION_IDS = new Set(DEPRECATED_EXCEPTION_ID_LIST);
|
|
15298
15298
|
//#endregion
|
|
15299
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15299
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/LicenseException.js
|
|
15300
15300
|
/**
|
|
15301
15301
|
* A validated SPDX license-exception identifier: an Effect `Schema.Class` whose
|
|
15302
15302
|
* `id` is a member of the SPDX exception list. The class doubles as its own
|
|
@@ -15416,7 +15416,7 @@ var LicenseException = class LicenseException extends effect.Schema.Class("Licen
|
|
|
15416
15416
|
}
|
|
15417
15417
|
};
|
|
15418
15418
|
//#endregion
|
|
15419
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15419
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/parser.js
|
|
15420
15420
|
const TOKEN_OPEN_PAREN = 0;
|
|
15421
15421
|
const TOKEN_CLOSE_PAREN = 1;
|
|
15422
15422
|
const TOKEN_PLUS = 2;
|
|
@@ -15645,7 +15645,7 @@ function parse$2(input) {
|
|
|
15645
15645
|
return node;
|
|
15646
15646
|
}
|
|
15647
15647
|
//#endregion
|
|
15648
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15648
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/SpdxExpression.js
|
|
15649
15649
|
/**
|
|
15650
15650
|
* Serialize a tagged SPDX AST node — a class instance OR its encoded POJO — to
|
|
15651
15651
|
* the canonical, fully-parenthesized SPDX string. This is the single source of
|
|
@@ -15834,7 +15834,7 @@ effect.Schema.String.pipe(effect.Schema.decodeTo(SpdxExpressionUnion, effect.Sch
|
|
|
15834
15834
|
encode: (expression) => effect.Effect.succeed(serialize$1(expression))
|
|
15835
15835
|
})));
|
|
15836
15836
|
//#endregion
|
|
15837
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
15837
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/License.js
|
|
15838
15838
|
/**
|
|
15839
15839
|
* Indicates that a string is not a valid SPDX license identifier or expression.
|
|
15840
15840
|
*
|
|
@@ -15869,7 +15869,7 @@ const isValidSpdx = (value) => {
|
|
|
15869
15869
|
*/
|
|
15870
15870
|
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"));
|
|
15871
15871
|
//#endregion
|
|
15872
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
15872
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/PackageManager.js
|
|
15873
15873
|
const PACKAGE_MANAGER_RE = /^([a-z]+)@(\d+\.\d+\.\d+(?:-[a-zA-Z0-9._-]+)?)(?:\+(.+))?$/;
|
|
15874
15874
|
/**
|
|
15875
15875
|
* The `packageManager` field only ever carries corepack's `<algo>.<hex>`
|
|
@@ -15927,7 +15927,7 @@ var PackageManager = class PackageManager extends effect.Schema.Class("PackageMa
|
|
|
15927
15927
|
}
|
|
15928
15928
|
};
|
|
15929
15929
|
//#endregion
|
|
15930
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
15930
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/PackageName.js
|
|
15931
15931
|
/**
|
|
15932
15932
|
* Indicates that a string could not be used as a valid npm package name.
|
|
15933
15933
|
*
|
|
@@ -15985,7 +15985,7 @@ const PackageName = Object.assign(effect.Schema.Union([ScopedPackageName, Unscop
|
|
|
15985
15985
|
isScoped
|
|
15986
15986
|
});
|
|
15987
15987
|
//#endregion
|
|
15988
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
15988
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/Person.js
|
|
15989
15989
|
const parsePersonString = (input) => {
|
|
15990
15990
|
const emailMatch = input.match(/<([^>]+)>/);
|
|
15991
15991
|
const urlMatch = input.match(/\(([^)]+)\)/);
|
|
@@ -16128,7 +16128,7 @@ var Person = class Person extends effect.Schema.Class("Person")({
|
|
|
16128
16128
|
}
|
|
16129
16129
|
};
|
|
16130
16130
|
//#endregion
|
|
16131
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
16131
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/internal/format.js
|
|
16132
16132
|
const KEY_INDEX = new Map([
|
|
16133
16133
|
"$schema",
|
|
16134
16134
|
"name",
|
|
@@ -16351,7 +16351,7 @@ const renderJson = (raw, options) => {
|
|
|
16351
16351
|
return options.newline ? `${json}\n` : json;
|
|
16352
16352
|
};
|
|
16353
16353
|
//#endregion
|
|
16354
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
16354
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/Package.js
|
|
16355
16355
|
const toHashMap = effect.SchemaTransformation.transform({
|
|
16356
16356
|
decode: (record) => effect.HashMap.fromIterable(Object.entries(record)),
|
|
16357
16357
|
encode: (map) => Object.fromEntries(effect.HashMap.toEntries(map))
|
|
@@ -16669,7 +16669,7 @@ var Package = class Package extends effect.Schema.Class("Package")({
|
|
|
16669
16669
|
}
|
|
16670
16670
|
};
|
|
16671
16671
|
//#endregion
|
|
16672
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
16672
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspacePackage.js
|
|
16673
16673
|
const EMPTY$1 = Object.freeze(Object.create(null));
|
|
16674
16674
|
const EMPTY_MANIFEST = Object.freeze(Object.create(null));
|
|
16675
16675
|
/**
|
|
@@ -16948,7 +16948,7 @@ var WorkspacePackage = class WorkspacePackage extends effect.Schema.Class("Works
|
|
|
16948
16948
|
}
|
|
16949
16949
|
};
|
|
16950
16950
|
//#endregion
|
|
16951
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.3.
|
|
16951
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.3.2_@effected+glob@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Descend.js
|
|
16952
16952
|
/**
|
|
16953
16953
|
* Typed failure raised by {@link descend}: a directory mid-walk was unreadable
|
|
16954
16954
|
* (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
|
|
@@ -17083,7 +17083,7 @@ const descend = effect.Effect.fn("Walker.descend")(function* (pattern, options)
|
|
|
17083
17083
|
return results;
|
|
17084
17084
|
});
|
|
17085
17085
|
//#endregion
|
|
17086
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.3.
|
|
17086
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.3.2_@effected+glob@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Expand.js
|
|
17087
17087
|
/**
|
|
17088
17088
|
* Typed failure raised by {@link compileAndExpand}: the single error the
|
|
17089
17089
|
* compile+expand recipe fails with, so a caller catches one tag rather than
|
|
@@ -17173,7 +17173,7 @@ const compileAndExpand = effect.Effect.fn("Walker.compileAndExpand")(function* (
|
|
|
17173
17173
|
})));
|
|
17174
17174
|
});
|
|
17175
17175
|
//#endregion
|
|
17176
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.3.
|
|
17176
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.3.2_@effected+glob@0.2.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Walker.js
|
|
17177
17177
|
/**
|
|
17178
17178
|
* Ascend from `start` toward the filesystem root, yielding each directory,
|
|
17179
17179
|
* nearest first.
|
|
@@ -17274,7 +17274,7 @@ const Walker$1 = {
|
|
|
17274
17274
|
findRoot: findRoot$1
|
|
17275
17275
|
};
|
|
17276
17276
|
//#endregion
|
|
17277
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17277
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceRoot.js
|
|
17278
17278
|
/**
|
|
17279
17279
|
* The marker filenames {@link WorkspaceRoot} probes for, in priority order.
|
|
17280
17280
|
*
|
|
@@ -17461,7 +17461,7 @@ var WorkspaceRoot = class WorkspaceRoot extends effect.Context.Service()("@effec
|
|
|
17461
17461
|
static layerTest = (root) => effect.Layer.effect(WorkspaceRoot, WorkspaceRoot.makeTest(root)).pipe(effect.Layer.provide(effect.Path.layer));
|
|
17462
17462
|
};
|
|
17463
17463
|
//#endregion
|
|
17464
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17464
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/limits.js
|
|
17465
17465
|
/**
|
|
17466
17466
|
* Hard ceiling on directories the enumerator will visit for one pattern set.
|
|
17467
17467
|
* Guards the pathological case a depth cap alone does not: a wide, shallow
|
|
@@ -17479,7 +17479,7 @@ const MAX_ENUMERATION_ENTRIES = 1e5;
|
|
|
17479
17479
|
*/
|
|
17480
17480
|
const PRUNED_DIRECTORIES = /* @__PURE__ */ new Set([".git", "node_modules"]);
|
|
17481
17481
|
//#endregion
|
|
17482
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17482
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/traverse.js
|
|
17483
17483
|
/** Directory names never descended into. */
|
|
17484
17484
|
const isPruned = (entry) => PRUNED_DIRECTORIES.has(entry);
|
|
17485
17485
|
/** Join root-relative POSIX segments; `""` is the root itself. */
|
|
@@ -17569,7 +17569,7 @@ var Traversal = class {
|
|
|
17569
17569
|
}
|
|
17570
17570
|
};
|
|
17571
17571
|
//#endregion
|
|
17572
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17572
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/enumerate.js
|
|
17573
17573
|
/** Strip a trailing slash from `GlobPattern.enumerationPrefix` to get a relative directory. */
|
|
17574
17574
|
const baseOf = (pattern) => pattern.enumerationPrefix.replace(/\/$/, "");
|
|
17575
17575
|
/**
|
|
@@ -17639,7 +17639,7 @@ const enumerate = (root, globs, options) => effect.Effect.gen(function* () {
|
|
|
17639
17639
|
return results;
|
|
17640
17640
|
});
|
|
17641
17641
|
//#endregion
|
|
17642
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17642
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/patterns.js
|
|
17643
17643
|
const stringsOf = (value) => Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : void 0;
|
|
17644
17644
|
/** The `packages:` list of a `pnpm-workspace.yaml` document. Total on a parsed document. */
|
|
17645
17645
|
const pnpmPatternsOf = (document) => {
|
|
@@ -17696,7 +17696,7 @@ const readPatterns = (root) => effect.Effect.gen(function* () {
|
|
|
17696
17696
|
return manifestPatternsOf(manifest);
|
|
17697
17697
|
});
|
|
17698
17698
|
//#endregion
|
|
17699
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17699
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceDiscovery.js
|
|
17700
17700
|
/**
|
|
17701
17701
|
* Raised when a workspace member's `package.json` cannot be read, parsed, or
|
|
17702
17702
|
* used — it is missing, malformed, or lacks a `name` or `version`.
|
|
@@ -18130,7 +18130,7 @@ var WorkspaceDiscovery = class WorkspaceDiscovery extends effect.Context.Service
|
|
|
18130
18130
|
};
|
|
18131
18131
|
const isStringRecord$2 = (value) => value !== null && typeof value === "object" && !Array.isArray(value) && Object.values(value).every((entry) => typeof entry === "string");
|
|
18132
18132
|
//#endregion
|
|
18133
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
18133
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/DependencyGraph.js
|
|
18134
18134
|
/**
|
|
18135
18135
|
* Raised when the workspace dependency graph cannot be topologically ordered
|
|
18136
18136
|
* because it contains a cycle.
|
|
@@ -18365,7 +18365,7 @@ const kahn = (edges) => {
|
|
|
18365
18365
|
};
|
|
18366
18366
|
};
|
|
18367
18367
|
//#endregion
|
|
18368
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.4.
|
|
18368
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.4.2_effect@4.0.0-beta.101/node_modules/@effected/git/GitCommand.js
|
|
18369
18369
|
/**
|
|
18370
18370
|
* Builds a `git` `ChildProcess.StandardCommand` with the argv this package
|
|
18371
18371
|
* classifies against.
|
|
@@ -18784,7 +18784,7 @@ const GitCommand = {
|
|
|
18784
18784
|
status
|
|
18785
18785
|
};
|
|
18786
18786
|
//#endregion
|
|
18787
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.4.
|
|
18787
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.4.2_effect@4.0.0-beta.101/node_modules/@effected/git/internal/run.js
|
|
18788
18788
|
/**
|
|
18789
18789
|
* Spawns `command` and collects its stdout, stderr, and exit code as a single
|
|
18790
18790
|
* triple.
|
|
@@ -18811,7 +18811,7 @@ const runCollected = (command) => effect.Effect.scoped(effect.Effect.gen(functio
|
|
|
18811
18811
|
};
|
|
18812
18812
|
}));
|
|
18813
18813
|
//#endregion
|
|
18814
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.4.
|
|
18814
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.4.2_effect@4.0.0-beta.101/node_modules/@effected/git/Git.js
|
|
18815
18815
|
/** git's own ceiling: a run that has not answered in 30s is not going to. */
|
|
18816
18816
|
const GIT_TIMEOUT = effect.Duration.seconds(30);
|
|
18817
18817
|
/**
|
|
@@ -19728,7 +19728,7 @@ var Git = class extends effect.Context.Service()("@effected/git/Git") {
|
|
|
19728
19728
|
}));
|
|
19729
19729
|
};
|
|
19730
19730
|
//#endregion
|
|
19731
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
19731
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/ChangeDetector.js
|
|
19732
19732
|
/**
|
|
19733
19733
|
* Which git refs to compare, and whether to fold in the working tree.
|
|
19734
19734
|
*
|
|
@@ -19858,7 +19858,7 @@ var ChangeDetector = class ChangeDetector extends effect.Context.Service()("@eff
|
|
|
19858
19858
|
};
|
|
19859
19859
|
`${process.platform}${process.arch}${process.version.split(".")[0].substring(1)}`;
|
|
19860
19860
|
//#endregion
|
|
19861
|
-
//#region ../../node_modules/.pnpm/@pnpm+error@1100.0
|
|
19861
|
+
//#region ../../node_modules/.pnpm/@pnpm+error@1100.1.0/node_modules/@pnpm/error/lib/index.js
|
|
19862
19862
|
var PnpmError = class extends Error {
|
|
19863
19863
|
code;
|
|
19864
19864
|
hint;
|
|
@@ -19873,7 +19873,7 @@ var PnpmError = class extends Error {
|
|
|
19873
19873
|
}
|
|
19874
19874
|
};
|
|
19875
19875
|
//#endregion
|
|
19876
|
-
//#region ../../node_modules/.pnpm/@pnpm+catalogs.config@1100.0.
|
|
19876
|
+
//#region ../../node_modules/.pnpm/@pnpm+catalogs.config@1100.0.3/node_modules/@pnpm/catalogs.config/lib/getCatalogsFromWorkspaceManifest.js
|
|
19877
19877
|
function getCatalogsFromWorkspaceManifest(workspaceManifest) {
|
|
19878
19878
|
if (workspaceManifest == null) return {};
|
|
19879
19879
|
checkDefaultCatalogIsDefinedOnce(workspaceManifest);
|
|
@@ -19886,7 +19886,7 @@ function checkDefaultCatalogIsDefinedOnce(manifest) {
|
|
|
19886
19886
|
if (manifest.catalog != null && manifest.catalogs?.default != null) throw new PnpmError("INVALID_CATALOGS_CONFIGURATION", "The 'default' catalog was defined multiple times. Use the 'catalog' field or 'catalogs.default', but not both.");
|
|
19887
19887
|
}
|
|
19888
19888
|
//#endregion
|
|
19889
|
-
//#region ../../node_modules/.pnpm/@pnpm+catalogs.config@1100.0.
|
|
19889
|
+
//#region ../../node_modules/.pnpm/@pnpm+catalogs.config@1100.0.3/node_modules/@pnpm/catalogs.config/lib/mergeCatalogs.js
|
|
19890
19890
|
/**
|
|
19891
19891
|
* Deep-merges catalog definitions, later arguments taking precedence over
|
|
19892
19892
|
* earlier ones at the individual entry level. Use it to fold the catalog
|
|
@@ -19924,7 +19924,7 @@ function mergeCatalogs(...catalogsList) {
|
|
|
19924
19924
|
return result;
|
|
19925
19925
|
}
|
|
19926
19926
|
//#endregion
|
|
19927
|
-
//#region ../../node_modules/.pnpm/@pnpm+catalogs.protocol-parser@1100.0.
|
|
19927
|
+
//#region ../../node_modules/.pnpm/@pnpm+catalogs.protocol-parser@1100.0.1/node_modules/@pnpm/catalogs.protocol-parser/lib/parseCatalogProtocol.js
|
|
19928
19928
|
const CATALOG_PROTOCOL = "catalog:";
|
|
19929
19929
|
/**
|
|
19930
19930
|
* Parse a package.json dependency specifier using the catalog: protocol.
|
|
@@ -19936,7 +19936,7 @@ function parseCatalogProtocol(bareSpecifier) {
|
|
|
19936
19936
|
return catalogNameRaw === "" ? "default" : catalogNameRaw;
|
|
19937
19937
|
}
|
|
19938
19938
|
//#endregion
|
|
19939
|
-
//#region ../../node_modules/.pnpm/@pnpm+catalogs.resolver@1100.0.
|
|
19939
|
+
//#region ../../node_modules/.pnpm/@pnpm+catalogs.resolver@1100.0.1/node_modules/@pnpm/catalogs.resolver/lib/matchCatalogResolveResult.js
|
|
19940
19940
|
function matchCatalogResolveResult(result, matcher) {
|
|
19941
19941
|
switch (result.type) {
|
|
19942
19942
|
case "found": return matcher.found(result);
|
|
@@ -19945,7 +19945,7 @@ function matchCatalogResolveResult(result, matcher) {
|
|
|
19945
19945
|
}
|
|
19946
19946
|
}
|
|
19947
19947
|
//#endregion
|
|
19948
|
-
//#region ../../node_modules/.pnpm/@pnpm+catalogs.resolver@1100.0.
|
|
19948
|
+
//#region ../../node_modules/.pnpm/@pnpm+catalogs.resolver@1100.0.1/node_modules/@pnpm/catalogs.resolver/lib/resolveFromCatalog.js
|
|
19949
19949
|
function resolveFromCatalog(catalogs, wantedDependency) {
|
|
19950
19950
|
const catalogName = parseCatalogProtocol(wantedDependency.bareSpecifier);
|
|
19951
19951
|
if (catalogName == null) return { type: "unused" };
|
|
@@ -19980,7 +19980,7 @@ function resolveFromCatalog(catalogs, wantedDependency) {
|
|
|
19980
19980
|
};
|
|
19981
19981
|
}
|
|
19982
19982
|
//#endregion
|
|
19983
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
19983
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/catalogs.js
|
|
19984
19984
|
/** Project a pnpm-workspace manifest's `catalog` / `catalogs` fields into a `Catalogs` map. */
|
|
19985
19985
|
const inlineCatalogs = (manifest) => {
|
|
19986
19986
|
if (manifest.catalog === void 0 && manifest.catalogs === void 0) return {};
|
|
@@ -20044,7 +20044,7 @@ const rangeOf = (catalogs, dependency, specifier) => {
|
|
|
20044
20044
|
});
|
|
20045
20045
|
};
|
|
20046
20046
|
//#endregion
|
|
20047
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
20047
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/ConfigDependencyHooks.js
|
|
20048
20048
|
/** Whether `value` is a non-null, non-array object. */
|
|
20049
20049
|
const isObject$2 = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
20050
20050
|
/**
|
|
@@ -20230,7 +20230,7 @@ var ConfigDependencyHooks = class ConfigDependencyHooks extends effect.Context.S
|
|
|
20230
20230
|
}) });
|
|
20231
20231
|
};
|
|
20232
20232
|
//#endregion
|
|
20233
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
20233
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/PackageManagerName.js
|
|
20234
20234
|
/**
|
|
20235
20235
|
* The four package managers this package understands.
|
|
20236
20236
|
*
|
|
@@ -20472,7 +20472,7 @@ var PackageManagerDetector = class PackageManagerDetector extends effect.Context
|
|
|
20472
20472
|
static layer = effect.Layer.effect(PackageManagerDetector, PackageManagerDetector.make);
|
|
20473
20473
|
};
|
|
20474
20474
|
//#endregion
|
|
20475
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
20475
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/LockfileReader.js
|
|
20476
20476
|
/**
|
|
20477
20477
|
* Raised when the workspace's lockfile cannot be read off disk.
|
|
20478
20478
|
*
|
|
@@ -20582,7 +20582,7 @@ var LockfileReader = class LockfileReader extends effect.Context.Service()("@eff
|
|
|
20582
20582
|
static layer = (options) => effect.Layer.effect(LockfileReader, LockfileReader.make(options));
|
|
20583
20583
|
};
|
|
20584
20584
|
//#endregion
|
|
20585
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
20585
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/Publishability.js
|
|
20586
20586
|
/** The public npm registry, used when `publishConfig.registry` says nothing. */
|
|
20587
20587
|
const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
|
|
20588
20588
|
/**
|
|
@@ -20682,7 +20682,7 @@ var PublishabilityDetector = class PublishabilityDetector extends effect.Context
|
|
|
20682
20682
|
}) });
|
|
20683
20683
|
};
|
|
20684
20684
|
//#endregion
|
|
20685
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
20685
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceCatalogs.js
|
|
20686
20686
|
/**
|
|
20687
20687
|
* An immutable, fully-normalized catalog collection — the one catalog
|
|
20688
20688
|
* resolution semantic in the package.
|
|
@@ -21112,7 +21112,7 @@ var WorkspaceCatalogs = class WorkspaceCatalogs extends effect.Context.Service()
|
|
|
21112
21112
|
}));
|
|
21113
21113
|
};
|
|
21114
21114
|
//#endregion
|
|
21115
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
21115
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceStateSnapshot.js
|
|
21116
21116
|
const EMPTY = Object.freeze(Object.create(null));
|
|
21117
21117
|
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)));
|
|
21118
21118
|
/**
|
|
@@ -21277,7 +21277,7 @@ var WorkspaceStateSnapshot = class extends effect.Schema.Class("WorkspaceStateSn
|
|
|
21277
21277
|
}
|
|
21278
21278
|
};
|
|
21279
21279
|
//#endregion
|
|
21280
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
21280
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceSnapshots.js
|
|
21281
21281
|
/** Whether `value` is a non-null, non-array object. */
|
|
21282
21282
|
const isObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
21283
21283
|
/** Whether every value in a record is a string — a usable dependency map. */
|
|
@@ -21469,7 +21469,7 @@ var WorkspaceSnapshots = class WorkspaceSnapshots extends effect.Context.Service
|
|
|
21469
21469
|
static layer = (options) => effect.Layer.effect(WorkspaceSnapshots, WorkspaceSnapshots.make(options));
|
|
21470
21470
|
};
|
|
21471
21471
|
//#endregion
|
|
21472
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
21472
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.2_@effected+jsonc@0.5.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/Workspaces.js
|
|
21473
21473
|
/**
|
|
21474
21474
|
* Every service that needs only a filesystem: root, package-manager detection,
|
|
21475
21475
|
* discovery, lockfile reading, catalogs and publishability.
|