@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
|
@@ -423,7 +423,7 @@ const trimTrailingSlashes = (s) => {
|
|
|
423
423
|
return s.slice(0, end);
|
|
424
424
|
};
|
|
425
425
|
//#endregion
|
|
426
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
426
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/limits.js
|
|
427
427
|
/** Hard cap on pattern length. Upstream minimatch's MAX_PATTERN_LENGTH (64KB). */
|
|
428
428
|
const MAX_PATTERN_LENGTH = 1024 * 64;
|
|
429
429
|
/** Default brace-expansion output budget. Upstream brace-expansion's EXPANSION_MAX. */
|
|
@@ -457,7 +457,7 @@ const assertCap = (name, value) => {
|
|
|
457
457
|
return value;
|
|
458
458
|
};
|
|
459
459
|
//#endregion
|
|
460
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
460
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/unescape.js
|
|
461
461
|
/**
|
|
462
462
|
* Un-escape a string that has been escaped with `escape`.
|
|
463
463
|
*
|
|
@@ -480,11 +480,11 @@ const unescapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = true
|
|
|
480
480
|
return windowsPathsNoEscape ? s.replace(/\[([^/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\{}])\]/g, "$1$2").replace(/\\([^/{}])/g, "$1");
|
|
481
481
|
};
|
|
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/types.js
|
|
484
484
|
/** The globstar marker in a compiled pattern set. */
|
|
485
485
|
const GLOBSTAR = Symbol("globstar **");
|
|
486
486
|
//#endregion
|
|
487
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
487
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/escape.js
|
|
488
488
|
/**
|
|
489
489
|
* Escape all magic characters in a glob pattern.
|
|
490
490
|
*
|
|
@@ -502,13 +502,13 @@ const escapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = false
|
|
|
502
502
|
return windowsPathsNoEscape ? s.replace(/[?*()[\]]/g, "[$&]") : s.replace(/[?*()[\]\\]/g, "\\$&");
|
|
503
503
|
};
|
|
504
504
|
//#endregion
|
|
505
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
505
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/assertValidPattern.js
|
|
506
506
|
const assertValidPattern = (pattern) => {
|
|
507
507
|
if (typeof pattern !== "string") throw new TypeError("invalid pattern");
|
|
508
508
|
if (pattern.length > 65536) throw new GuardExceeded("PatternTooLong", MAX_PATTERN_LENGTH, pattern.length);
|
|
509
509
|
};
|
|
510
510
|
//#endregion
|
|
511
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
511
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/braceExpressions.js
|
|
512
512
|
const posixClasses = {
|
|
513
513
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
514
514
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -631,7 +631,7 @@ const parseClass = (glob, position) => {
|
|
|
631
631
|
];
|
|
632
632
|
};
|
|
633
633
|
//#endregion
|
|
634
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
634
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/ast.js
|
|
635
635
|
const types = /* @__PURE__ */ new Set([
|
|
636
636
|
"!",
|
|
637
637
|
"?",
|
|
@@ -1148,7 +1148,7 @@ var AST = class AST {
|
|
|
1148
1148
|
}
|
|
1149
1149
|
};
|
|
1150
1150
|
//#endregion
|
|
1151
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1151
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/balancedMatch.js
|
|
1152
1152
|
const maybeMatch = (reg, str) => {
|
|
1153
1153
|
const m = str.match(reg);
|
|
1154
1154
|
return m ? m[0] : null;
|
|
@@ -1206,7 +1206,7 @@ const range = (a, b, str) => {
|
|
|
1206
1206
|
return result;
|
|
1207
1207
|
};
|
|
1208
1208
|
//#endregion
|
|
1209
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1209
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/braceExpansion.js
|
|
1210
1210
|
const escSlash = `\0SLASH${Math.random()}\0`;
|
|
1211
1211
|
const escOpen = `\0OPEN${Math.random()}\0`;
|
|
1212
1212
|
const escClose = `\0CLOSE${Math.random()}\0`;
|
|
@@ -1353,7 +1353,7 @@ function expand_(str, max, isTopInput, depth) {
|
|
|
1353
1353
|
}
|
|
1354
1354
|
}
|
|
1355
1355
|
//#endregion
|
|
1356
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1356
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/minimatch.js
|
|
1357
1357
|
const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
|
|
1358
1358
|
const starDotExtTest = (ext) => (f) => !f.startsWith(".") && f.endsWith(ext);
|
|
1359
1359
|
const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
|
|
@@ -1924,7 +1924,7 @@ var Minimatch = class {
|
|
|
1924
1924
|
}
|
|
1925
1925
|
};
|
|
1926
1926
|
//#endregion
|
|
1927
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1927
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/GlobPattern.js
|
|
1928
1928
|
/**
|
|
1929
1929
|
* Typed failure raised when a glob pattern trips a compile-time guard:
|
|
1930
1930
|
* over-length, brace-expansion budget exhaustion, or nesting past the depth
|
|
@@ -2203,7 +2203,7 @@ var GlobPattern = class GlobPattern extends effect.Schema.Class("GlobPattern")(e
|
|
|
2203
2203
|
})));
|
|
2204
2204
|
};
|
|
2205
2205
|
//#endregion
|
|
2206
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
2206
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/glob/GlobSet.js
|
|
2207
2207
|
const exclusionTarget = (pattern) => pattern.startsWith("!") ? pattern.slice(1) : void 0;
|
|
2208
2208
|
const allCompileUnderDefaults = (patterns) => {
|
|
2209
2209
|
for (const pattern of patterns) {
|
|
@@ -2357,7 +2357,7 @@ var GlobSet = class GlobSet extends effect.Schema.Class("GlobSet")(effect.Schema
|
|
|
2357
2357
|
}
|
|
2358
2358
|
};
|
|
2359
2359
|
//#endregion
|
|
2360
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
2360
|
+
//#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
|
|
2361
2361
|
/**
|
|
2362
2362
|
* Extension data specific to bun lockfiles, attached to `Lockfile.extension`
|
|
2363
2363
|
* when the format is `"bun"`.
|
|
@@ -2378,7 +2378,7 @@ var BunExtension = class extends effect.Schema.Class("BunExtension")({
|
|
|
2378
2378
|
trustedDependencies: effect.Schema.optionalKey(effect.Schema.Array(effect.Schema.String))
|
|
2379
2379
|
}) {};
|
|
2380
2380
|
//#endregion
|
|
2381
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
2381
|
+
//#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
|
|
2382
2382
|
/**
|
|
2383
2383
|
* Contract for resolving pnpm `catalog:` dependency specifiers to concrete
|
|
2384
2384
|
* version ranges.
|
|
@@ -2424,7 +2424,7 @@ var CatalogResolver = class CatalogResolver extends effect.Context.Service()("@e
|
|
|
2424
2424
|
static noop = effect.Layer.succeed(CatalogResolver, { rangeOf: () => effect.Effect.succeed(effect.Option.none()) });
|
|
2425
2425
|
};
|
|
2426
2426
|
//#endregion
|
|
2427
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
2427
|
+
//#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
|
|
2428
2428
|
/**
|
|
2429
2429
|
* Raised when a `catalog:` or `workspace:` specifier cannot be resolved
|
|
2430
2430
|
* because the resolution mechanism itself failed — not for an ordinary
|
|
@@ -2485,7 +2485,7 @@ var WorkspaceResolver = class WorkspaceResolver extends effect.Context.Service()
|
|
|
2485
2485
|
static noop = effect.Layer.succeed(WorkspaceResolver, { versionOf: () => effect.Effect.succeed(effect.Option.none()) });
|
|
2486
2486
|
};
|
|
2487
2487
|
//#endregion
|
|
2488
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
2488
|
+
//#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
|
|
2489
2489
|
/**
|
|
2490
2490
|
* Raised when a workspace's catalogs cannot be assembled — a `pnpm-workspace.yaml`
|
|
2491
2491
|
* that is unreadable or not valid YAML, a root `package.json` `workspaces` field
|
|
@@ -2529,7 +2529,7 @@ var CatalogAssemblyError = class extends effect.Schema.TaggedErrorClass()("Catal
|
|
|
2529
2529
|
}
|
|
2530
2530
|
};
|
|
2531
2531
|
//#endregion
|
|
2532
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
2532
|
+
//#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
|
|
2533
2533
|
/**
|
|
2534
2534
|
* The short dependency kind: which dependency map an entry came from, named the
|
|
2535
2535
|
* way consumers branch on it.
|
|
@@ -2561,7 +2561,7 @@ Object.fromEntries(Object.entries({
|
|
|
2561
2561
|
optional: "optionalDependencies"
|
|
2562
2562
|
}).map(([kind, field]) => [field, kind]));
|
|
2563
2563
|
//#endregion
|
|
2564
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
2564
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/desugar.js
|
|
2565
2565
|
const sv = (major, minor, patch, prerelease = [], build = []) => ({
|
|
2566
2566
|
major,
|
|
2567
2567
|
minor,
|
|
@@ -2650,7 +2650,7 @@ const desugarHyphen = (lower, upper) => {
|
|
|
2650
2650
|
return [comp(">=", lowerVersion)];
|
|
2651
2651
|
};
|
|
2652
2652
|
//#endregion
|
|
2653
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
2653
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/grammar.js
|
|
2654
2654
|
/** Private control-flow exception; never escapes the entry points. */
|
|
2655
2655
|
var ParseFailure = class {
|
|
2656
2656
|
position;
|
|
@@ -3045,7 +3045,7 @@ const formatComparator = (c) => {
|
|
|
3045
3045
|
/** Print comparator sets as `a b || c d`. */
|
|
3046
3046
|
const formatRange = (sets) => sets.map((set) => set.map(formatComparator).join(" ")).join(" || ");
|
|
3047
3047
|
//#endregion
|
|
3048
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
3048
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/order.js
|
|
3049
3049
|
/**
|
|
3050
3050
|
* Compare two prerelease identifiers per SemVer 2.0.0 §11: numeric
|
|
3051
3051
|
* identifiers always have lower precedence than alphanumeric ones; numerics
|
|
@@ -3098,7 +3098,7 @@ const compareBuild = (a, b) => {
|
|
|
3098
3098
|
return 0;
|
|
3099
3099
|
};
|
|
3100
3100
|
//#endregion
|
|
3101
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
3101
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/SemVer.js
|
|
3102
3102
|
/**
|
|
3103
3103
|
* Indicates that a string could not be parsed as a valid SemVer 2.0.0 version.
|
|
3104
3104
|
*
|
|
@@ -3533,7 +3533,7 @@ var SemVerBump = class {
|
|
|
3533
3533
|
}
|
|
3534
3534
|
};
|
|
3535
3535
|
//#endregion
|
|
3536
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
3536
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/Comparator.js
|
|
3537
3537
|
/**
|
|
3538
3538
|
* Indicates that a string could not be parsed as a single comparator.
|
|
3539
3539
|
*
|
|
@@ -3667,7 +3667,7 @@ var Comparator = class Comparator extends effect.Schema.Class("Comparator")({
|
|
|
3667
3667
|
}
|
|
3668
3668
|
};
|
|
3669
3669
|
//#endregion
|
|
3670
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
3670
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/normalize.js
|
|
3671
3671
|
const operatorWeight = (op) => {
|
|
3672
3672
|
switch (op) {
|
|
3673
3673
|
case ">=": return 0;
|
|
@@ -3698,7 +3698,7 @@ const normalizeComparatorSet = (set) => sortComparators(removeDuplicates(set));
|
|
|
3698
3698
|
/** Normalize every comparator set in a range: sort and deduplicate each independently. */
|
|
3699
3699
|
const normalizeSets = (sets) => sets.map(normalizeComparatorSet);
|
|
3700
3700
|
//#endregion
|
|
3701
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.2.
|
|
3701
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.2.1_effect@4.0.0-beta.101/node_modules/@effected/semver/Range.js
|
|
3702
3702
|
/**
|
|
3703
3703
|
* Indicates that a string could not be parsed as a range expression.
|
|
3704
3704
|
*
|
|
@@ -4030,7 +4030,7 @@ const isComparatorSetSubset = (sub, sup) => {
|
|
|
4030
4030
|
return true;
|
|
4031
4031
|
};
|
|
4032
4032
|
//#endregion
|
|
4033
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
4033
|
+
//#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
|
|
4034
4034
|
/**
|
|
4035
4035
|
* Indicates that a string could not be parsed as a valid dependency specifier.
|
|
4036
4036
|
*
|
|
@@ -4237,7 +4237,7 @@ const DependencySpecifier = Object.assign(brandedSpecifier, {
|
|
|
4237
4237
|
FromString: fromString
|
|
4238
4238
|
});
|
|
4239
4239
|
//#endregion
|
|
4240
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
4240
|
+
//#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
|
|
4241
4241
|
const SRI_RE = /^(sha1|sha256|sha384|sha512)-[A-Za-z0-9+/]+={0,2}$/;
|
|
4242
4242
|
const COREPACK_RE = /^(sha1|sha256|sha384|sha512)\.[0-9a-f]+$/;
|
|
4243
4243
|
const YARN_RE = /^[0-9]+(c[0-9]+)?\/[0-9a-f]+$/;
|
|
@@ -4290,7 +4290,7 @@ const IntegrityHash = Object.assign(brandedIntegrity, {
|
|
|
4290
4290
|
decode: decode$2
|
|
4291
4291
|
});
|
|
4292
4292
|
//#endregion
|
|
4293
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.3.
|
|
4293
|
+
//#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
|
|
4294
4294
|
const MS_PER_MINUTE = 6e4;
|
|
4295
4295
|
/**
|
|
4296
4296
|
* A source's partial contribution to a {@link ReleaseAgeGate}: the effective
|
|
@@ -4458,7 +4458,7 @@ var ReleaseAgeGate = class ReleaseAgeGate extends effect.Schema.Class("ReleaseAg
|
|
|
4458
4458
|
}
|
|
4459
4459
|
};
|
|
4460
4460
|
//#endregion
|
|
4461
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4461
|
+
//#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
|
|
4462
4462
|
/**
|
|
4463
4463
|
* One declared dependency of one workspace importer, as the lockfile records it.
|
|
4464
4464
|
*
|
|
@@ -4486,7 +4486,7 @@ var ImporterDependency = class extends effect.Schema.Class("ImporterDependency")
|
|
|
4486
4486
|
depType: DependencyField
|
|
4487
4487
|
}) {};
|
|
4488
4488
|
//#endregion
|
|
4489
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4489
|
+
//#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
|
|
4490
4490
|
/**
|
|
4491
4491
|
* One workspace importer's declared dependencies, as the lockfile records them.
|
|
4492
4492
|
*
|
|
@@ -4510,7 +4510,7 @@ var LockfileImporter = class extends effect.Schema.Class("LockfileImporter")({
|
|
|
4510
4510
|
dependencies: effect.Schema.Array(ImporterDependency)
|
|
4511
4511
|
}) {};
|
|
4512
4512
|
//#endregion
|
|
4513
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4513
|
+
//#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
|
|
4514
4514
|
const EMPTY_DEPENDENCIES = {};
|
|
4515
4515
|
/**
|
|
4516
4516
|
* A package resolved from a lockfile.
|
|
@@ -4545,7 +4545,7 @@ var ResolvedPackage = class extends effect.Schema.Class("ResolvedPackage")({
|
|
|
4545
4545
|
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)))
|
|
4546
4546
|
}) {};
|
|
4547
4547
|
//#endregion
|
|
4548
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4548
|
+
//#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
|
|
4549
4549
|
/**
|
|
4550
4550
|
* A directed dependency edge between two workspace packages as recorded in
|
|
4551
4551
|
* the lockfile.
|
|
@@ -4567,7 +4567,7 @@ var WorkspaceDependency = class extends effect.Schema.Class("WorkspaceDependency
|
|
|
4567
4567
|
constraint: effect.Schema.String
|
|
4568
4568
|
}) {};
|
|
4569
4569
|
//#endregion
|
|
4570
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4570
|
+
//#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
|
|
4571
4571
|
/**
|
|
4572
4572
|
* Extension data specific to pnpm lockfiles, attached to `Lockfile.extension`
|
|
4573
4573
|
* when the format is `"pnpm"`.
|
|
@@ -4592,7 +4592,7 @@ var PnpmExtension = class extends effect.Schema.Class("PnpmExtension")({
|
|
|
4592
4592
|
}))
|
|
4593
4593
|
}) {};
|
|
4594
4594
|
//#endregion
|
|
4595
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4595
|
+
//#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
|
|
4596
4596
|
/**
|
|
4597
4597
|
* The lockfile formats this package parses: bun's `bun.lock` (JSONC), npm's
|
|
4598
4598
|
* `package-lock.json` (v2/v3 JSON), pnpm's `pnpm-lock.yaml` and yarn Berry's
|
|
@@ -4626,7 +4626,7 @@ const FILENAMES = {
|
|
|
4626
4626
|
*/
|
|
4627
4627
|
const filenameFor = (format) => FILENAMES[format];
|
|
4628
4628
|
//#endregion
|
|
4629
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
4629
|
+
//#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
|
|
4630
4630
|
/**
|
|
4631
4631
|
* The four dependency sections of a manifest, in a stable order — the shared
|
|
4632
4632
|
* dependency-sections table (v3's `DEP_SECTIONS`). Each entry is both the
|
|
@@ -4752,7 +4752,7 @@ const extractWorkspaceDeps = (workspaces, workspaceNames) => {
|
|
|
4752
4752
|
return deps;
|
|
4753
4753
|
};
|
|
4754
4754
|
//#endregion
|
|
4755
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
4755
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/JsoncNode.js
|
|
4756
4756
|
/**
|
|
4757
4757
|
* Discriminator values for JSONC AST node types: the JSON value types
|
|
4758
4758
|
* (`string`/`number`/`boolean`/`null`), the structural types
|
|
@@ -4927,7 +4927,7 @@ function evaluateNode(node, depth) {
|
|
|
4927
4927
|
}
|
|
4928
4928
|
}
|
|
4929
4929
|
//#endregion
|
|
4930
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
4930
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/scanner.js
|
|
4931
4931
|
const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
|
|
4932
4932
|
const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
|
|
4933
4933
|
const isDigit$1 = (ch) => ch >= 48 && ch <= 57;
|
|
@@ -5223,7 +5223,7 @@ const createScanner$2 = (text, ignoreTrivia = false) => {
|
|
|
5223
5223
|
};
|
|
5224
5224
|
};
|
|
5225
5225
|
//#endregion
|
|
5226
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
5226
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/skip.js
|
|
5227
5227
|
/**
|
|
5228
5228
|
* Iteratively consume the value beginning at the cursor's current token and
|
|
5229
5229
|
* return its tight end offset (excludes trailing whitespace/comments).
|
|
@@ -5253,7 +5253,7 @@ const skipBalancedValue = (cursor) => {
|
|
|
5253
5253
|
return end;
|
|
5254
5254
|
};
|
|
5255
5255
|
//#endregion
|
|
5256
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
5256
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/parser.js
|
|
5257
5257
|
/**
|
|
5258
5258
|
* The public parse-error code vocabulary. The facade builds its `@public`
|
|
5259
5259
|
* `JsoncParseErrorCode` schema from this array; the parser produces these codes
|
|
@@ -5666,7 +5666,7 @@ const parseTree$2 = (text, flags) => {
|
|
|
5666
5666
|
};
|
|
5667
5667
|
};
|
|
5668
5668
|
//#endregion
|
|
5669
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
5669
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/Jsonc.js
|
|
5670
5670
|
/**
|
|
5671
5671
|
* The single public parse-error code vocabulary, appearing as the `code` field
|
|
5672
5672
|
* of {@link JsoncParseErrorDetail}.
|
|
@@ -6270,7 +6270,7 @@ var JsoncEdit = class extends effect.Schema.Class("JsoncEdit")({
|
|
|
6270
6270
|
}
|
|
6271
6271
|
};
|
|
6272
6272
|
//#endregion
|
|
6273
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
6273
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/navigate.js
|
|
6274
6274
|
/**
|
|
6275
6275
|
* Resolve `path` against `text`, returning where the target is (or where it
|
|
6276
6276
|
* would be inserted). `path` must be non-empty — the whole-document case is
|
|
@@ -6397,7 +6397,7 @@ function navigate(text, path) {
|
|
|
6397
6397
|
return { _tag: "NoOp" };
|
|
6398
6398
|
}
|
|
6399
6399
|
//#endregion
|
|
6400
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
6400
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/jsonc/JsoncModifier.js
|
|
6401
6401
|
/**
|
|
6402
6402
|
* Raised when `JsoncModifier.modify` cannot navigate the requested path: the
|
|
6403
6403
|
* value at `depth` is not the container kind (`expected`) the next path segment
|
|
@@ -6525,7 +6525,7 @@ var JsoncModifier = class {
|
|
|
6525
6525
|
});
|
|
6526
6526
|
};
|
|
6527
6527
|
//#endregion
|
|
6528
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
6528
|
+
//#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
|
|
6529
6529
|
const DepRecord$2 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
6530
6530
|
const BunWorkspaceEntry = effect.Schema.Struct({
|
|
6531
6531
|
name: effect.Schema.optionalKey(effect.Schema.String),
|
|
@@ -6618,7 +6618,7 @@ const toFields$3 = (raw) => effect.Effect.gen(function* () {
|
|
|
6618
6618
|
};
|
|
6619
6619
|
});
|
|
6620
6620
|
//#endregion
|
|
6621
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
6621
|
+
//#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
|
|
6622
6622
|
const DepRecord$1 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
6623
6623
|
const NpmPackageEntry = effect.Schema.Struct({
|
|
6624
6624
|
name: effect.Schema.optionalKey(effect.Schema.String),
|
|
@@ -6716,7 +6716,7 @@ const toFields$2 = (raw) => effect.Effect.gen(function* () {
|
|
|
6716
6716
|
};
|
|
6717
6717
|
});
|
|
6718
6718
|
//#endregion
|
|
6719
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
6719
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/YamlNode.js
|
|
6720
6720
|
/**
|
|
6721
6721
|
* YAML scalar presentation styles.
|
|
6722
6722
|
*
|
|
@@ -7118,7 +7118,7 @@ function nodeToValue(node, anchors, budget, counting = false) {
|
|
|
7118
7118
|
return null;
|
|
7119
7119
|
}
|
|
7120
7120
|
//#endregion
|
|
7121
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
7121
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/diagnostics.js
|
|
7122
7122
|
/** Error codes emitted by the lexer stage. */
|
|
7123
7123
|
const YAML_LEX_ERROR_CODES = [
|
|
7124
7124
|
"UnexpectedCharacter",
|
|
@@ -7196,7 +7196,7 @@ function isFatalCode(code) {
|
|
|
7196
7196
|
return FATAL_CODES.has(code);
|
|
7197
7197
|
}
|
|
7198
7198
|
//#endregion
|
|
7199
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
7199
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/YamlDiagnostic.js
|
|
7200
7200
|
/**
|
|
7201
7201
|
* Error codes emitted by the lexer stage.
|
|
7202
7202
|
*
|
|
@@ -7317,7 +7317,7 @@ function lineChar(text, offset) {
|
|
|
7317
7317
|
};
|
|
7318
7318
|
}
|
|
7319
7319
|
//#endregion
|
|
7320
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
7320
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/anchors.js
|
|
7321
7321
|
/**
|
|
7322
7322
|
* Check if a pending anchor is being applied to an alias node (invalid in YAML 1.2 §3.2.2).
|
|
7323
7323
|
* Aliases represent references to existing anchored nodes and cannot have their own anchors.
|
|
@@ -7410,7 +7410,7 @@ function collectAnchors(node, anchors) {
|
|
|
7410
7410
|
}
|
|
7411
7411
|
}
|
|
7412
7412
|
//#endregion
|
|
7413
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
7413
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/lexer.js
|
|
7414
7414
|
/**
|
|
7415
7415
|
* Create a new YAML scanner for the given source text.
|
|
7416
7416
|
*
|
|
@@ -8367,7 +8367,7 @@ function lexAll(text) {
|
|
|
8367
8367
|
return tokens;
|
|
8368
8368
|
}
|
|
8369
8369
|
//#endregion
|
|
8370
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
8370
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/cst-parser.js
|
|
8371
8371
|
/**
|
|
8372
8372
|
* Hardening: cap CST nesting so hostile inputs cannot overflow the stack
|
|
8373
8373
|
* while the tree is being BUILT. Set slightly above the composer's
|
|
@@ -9079,7 +9079,7 @@ function parseCSTAll(text) {
|
|
|
9079
9079
|
return parseDocuments(lexAll(text), text);
|
|
9080
9080
|
}
|
|
9081
9081
|
//#endregion
|
|
9082
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
9082
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/state.js
|
|
9083
9083
|
let lineStartsText;
|
|
9084
9084
|
let lineStartsCache = [];
|
|
9085
9085
|
function getLineStarts(text) {
|
|
@@ -9185,7 +9185,7 @@ function exitNesting(state) {
|
|
|
9185
9185
|
state.depth--;
|
|
9186
9186
|
}
|
|
9187
9187
|
//#endregion
|
|
9188
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
9188
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/tags.js
|
|
9189
9189
|
/**
|
|
9190
9190
|
* Resolve a tag shorthand using the document's %TAG directives.
|
|
9191
9191
|
* For example, with `%TAG !! tag:example.com,2000:app/`, the tag `!!int`
|
|
@@ -9271,7 +9271,7 @@ function validateTagHandlesInDocument(docCst, state) {
|
|
|
9271
9271
|
}
|
|
9272
9272
|
}
|
|
9273
9273
|
//#endregion
|
|
9274
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
9274
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/scalars.js
|
|
9275
9275
|
const NULL_RE$1 = /^(?:null|Null|NULL|~)$/;
|
|
9276
9276
|
const TRUE_RE$1 = /^(?:true|True|TRUE)$/;
|
|
9277
9277
|
const FALSE_RE$1 = /^(?:false|False|FALSE)$/;
|
|
@@ -10149,7 +10149,7 @@ function shouldPreserveRaw(rawValue, value) {
|
|
|
10149
10149
|
return false;
|
|
10150
10150
|
}
|
|
10151
10151
|
//#endregion
|
|
10152
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
10152
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/block.js
|
|
10153
10153
|
/**
|
|
10154
10154
|
* Compose a block map from its CST children, with an optional external first key.
|
|
10155
10155
|
*
|
|
@@ -11297,7 +11297,7 @@ function composeFlatBlockMap(children, startIdx, parentCst, state, externalFirst
|
|
|
11297
11297
|
return map;
|
|
11298
11298
|
}
|
|
11299
11299
|
//#endregion
|
|
11300
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
11300
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/flow.js
|
|
11301
11301
|
/**
|
|
11302
11302
|
* Validate that flow collection entries are separated by commas.
|
|
11303
11303
|
*
|
|
@@ -11689,7 +11689,7 @@ function composeFlowSeqInner(cst, state, meta, parentBlockColumn) {
|
|
|
11689
11689
|
return seq;
|
|
11690
11690
|
}
|
|
11691
11691
|
//#endregion
|
|
11692
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
11692
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/document.js
|
|
11693
11693
|
/** The flow-composer dispatch wired into every state this module creates. */
|
|
11694
11694
|
const FLOW = {
|
|
11695
11695
|
composeFlowMap,
|
|
@@ -12355,7 +12355,7 @@ function composeAllDocuments(text, options) {
|
|
|
12355
12355
|
};
|
|
12356
12356
|
}
|
|
12357
12357
|
//#endregion
|
|
12358
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
12358
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/fold.js
|
|
12359
12359
|
/**
|
|
12360
12360
|
* Column-based line folding for a single logical scalar line (YAML 1.2 flow
|
|
12361
12361
|
* folding, §7.3 / §8.2.1). Breaks the content at "safe" single-space
|
|
@@ -12591,7 +12591,7 @@ function renderBlockFolded(s, indent) {
|
|
|
12591
12591
|
return `>${indentIndicator}${chomp}\n${outputLines.join("\n")}`;
|
|
12592
12592
|
}
|
|
12593
12593
|
//#endregion
|
|
12594
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.
|
|
12594
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/stringifier.js
|
|
12595
12595
|
/**
|
|
12596
12596
|
* Thrown by the stringifier on its failure paths (circular references). The
|
|
12597
12597
|
* facade catches this and materializes the public stringify error.
|
|
@@ -13540,7 +13540,7 @@ function deepEqualValues(a, b) {
|
|
|
13540
13540
|
return false;
|
|
13541
13541
|
}
|
|
13542
13542
|
//#endregion
|
|
13543
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
13543
|
+
//#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
|
|
13544
13544
|
/**
|
|
13545
13545
|
* An empty YAML document composes to `null` (`Yaml.parseAll("")` is `[null]`,
|
|
13546
13546
|
* and the trailing document of an env-only `pnpm-lock.yaml` is `null` too).
|
|
@@ -13610,7 +13610,7 @@ const selectSoleDocument = (content) => effect.Effect.gen(function* () {
|
|
|
13610
13610
|
};
|
|
13611
13611
|
});
|
|
13612
13612
|
//#endregion
|
|
13613
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
13613
|
+
//#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
|
|
13614
13614
|
const PnpmImporterDeps = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.Struct({
|
|
13615
13615
|
specifier: effect.Schema.String,
|
|
13616
13616
|
version: effect.Schema.String
|
|
@@ -13736,7 +13736,7 @@ const toFields$1 = (raw) => effect.Effect.gen(function* () {
|
|
|
13736
13736
|
};
|
|
13737
13737
|
});
|
|
13738
13738
|
//#endregion
|
|
13739
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
13739
|
+
//#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
|
|
13740
13740
|
const YarnLockfileRaw = effect.Schema.Record(effect.Schema.String, effect.Schema.Unknown);
|
|
13741
13741
|
const DepRecord = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
13742
13742
|
const YarnEntry = effect.Schema.Struct({
|
|
@@ -13859,7 +13859,7 @@ const cleanYarnDeps = (deps) => {
|
|
|
13859
13859
|
return Object.fromEntries(Object.entries(deps).map(([name, value]) => [name, value.startsWith("npm:") ? value.slice(4) : value]));
|
|
13860
13860
|
};
|
|
13861
13861
|
//#endregion
|
|
13862
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
13862
|
+
//#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
|
|
13863
13863
|
const EMPTY_IMPORTERS = [];
|
|
13864
13864
|
/**
|
|
13865
13865
|
* Failure of `Lockfile.parse`: the given content is not a valid lockfile of
|
|
@@ -14103,7 +14103,7 @@ var Lockfile = class Lockfile extends effect.Schema.Class("Lockfile")({
|
|
|
14103
14103
|
}
|
|
14104
14104
|
};
|
|
14105
14105
|
//#endregion
|
|
14106
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.1.
|
|
14106
|
+
//#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
|
|
14107
14107
|
/**
|
|
14108
14108
|
* The minimal manifest shape {@link LockfileIntegrity.compare} checks a
|
|
14109
14109
|
* lockfile against: a package name plus the four optional dependency maps.
|
|
@@ -14219,7 +14219,7 @@ var LockfileIntegrity = class LockfileIntegrity extends effect.Schema.Class("Loc
|
|
|
14219
14219
|
}
|
|
14220
14220
|
};
|
|
14221
14221
|
//#endregion
|
|
14222
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
14222
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/Dependency.js
|
|
14223
14223
|
/**
|
|
14224
14224
|
* A resolved dependency entry pairing a package name with its version
|
|
14225
14225
|
* specifier and the `kind` of map it came from (`@effected/npm`'s
|
|
@@ -14283,7 +14283,7 @@ var Dependency = class extends effect.Schema.Class("Dependency")({
|
|
|
14283
14283
|
}
|
|
14284
14284
|
};
|
|
14285
14285
|
//#endregion
|
|
14286
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
14286
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/DevEngines.js
|
|
14287
14287
|
/**
|
|
14288
14288
|
* A single `devEngines` constraint with a name and optional `version` / `onFail`.
|
|
14289
14289
|
*
|
|
@@ -14321,7 +14321,7 @@ const DevEnginesSchema = effect.Schema.Struct({
|
|
|
14321
14321
|
libc: effect.Schema.optionalKey(DevEngineOrArray)
|
|
14322
14322
|
});
|
|
14323
14323
|
//#endregion
|
|
14324
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
14324
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/licenseIds.js
|
|
14325
14325
|
/** @internal */
|
|
14326
14326
|
const ACTIVE_LICENSE_IDS = [
|
|
14327
14327
|
"0BSD",
|
|
@@ -15054,7 +15054,7 @@ const LICENSE_IDS = new Set(ACTIVE_LICENSE_IDS);
|
|
|
15054
15054
|
/** @internal */
|
|
15055
15055
|
const DEPRECATED_LICENSE_IDS = new Set(DEPRECATED_LICENSE_ID_LIST);
|
|
15056
15056
|
//#endregion
|
|
15057
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15057
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/License.js
|
|
15058
15058
|
/**
|
|
15059
15059
|
* Indicates that a string is not a valid SPDX expression fragment: an
|
|
15060
15060
|
* unrecognized license or exception identifier, or a malformed
|
|
@@ -15223,7 +15223,7 @@ var License = class License extends effect.Schema.Class("License")({
|
|
|
15223
15223
|
}
|
|
15224
15224
|
};
|
|
15225
15225
|
//#endregion
|
|
15226
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15226
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/exceptions.js
|
|
15227
15227
|
/** @internal */
|
|
15228
15228
|
const ACTIVE_EXCEPTION_IDS = [
|
|
15229
15229
|
"389-exception",
|
|
@@ -15300,7 +15300,7 @@ const EXCEPTION_IDS = new Set(ACTIVE_EXCEPTION_IDS);
|
|
|
15300
15300
|
/** @internal */
|
|
15301
15301
|
const DEPRECATED_EXCEPTION_IDS = new Set(DEPRECATED_EXCEPTION_ID_LIST);
|
|
15302
15302
|
//#endregion
|
|
15303
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15303
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/LicenseException.js
|
|
15304
15304
|
/**
|
|
15305
15305
|
* A validated SPDX license-exception identifier: an Effect `Schema.Class` whose
|
|
15306
15306
|
* `id` is a member of the SPDX exception list. The class doubles as its own
|
|
@@ -15420,7 +15420,7 @@ var LicenseException = class LicenseException extends effect.Schema.Class("Licen
|
|
|
15420
15420
|
}
|
|
15421
15421
|
};
|
|
15422
15422
|
//#endregion
|
|
15423
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15423
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/parser.js
|
|
15424
15424
|
const TOKEN_OPEN_PAREN = 0;
|
|
15425
15425
|
const TOKEN_CLOSE_PAREN = 1;
|
|
15426
15426
|
const TOKEN_PLUS = 2;
|
|
@@ -15649,7 +15649,7 @@ function parse$2(input) {
|
|
|
15649
15649
|
return node;
|
|
15650
15650
|
}
|
|
15651
15651
|
//#endregion
|
|
15652
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15652
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.1_effect@4.0.0-beta.101/node_modules/@effected/spdx/SpdxExpression.js
|
|
15653
15653
|
/**
|
|
15654
15654
|
* Serialize a tagged SPDX AST node — a class instance OR its encoded POJO — to
|
|
15655
15655
|
* the canonical, fully-parenthesized SPDX string. This is the single source of
|
|
@@ -15838,7 +15838,7 @@ effect.Schema.String.pipe(effect.Schema.decodeTo(SpdxExpressionUnion, effect.Sch
|
|
|
15838
15838
|
encode: (expression) => effect.Effect.succeed(serialize$1(expression))
|
|
15839
15839
|
})));
|
|
15840
15840
|
//#endregion
|
|
15841
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
15841
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/License.js
|
|
15842
15842
|
/**
|
|
15843
15843
|
* Indicates that a string is not a valid SPDX license identifier or expression.
|
|
15844
15844
|
*
|
|
@@ -15873,7 +15873,7 @@ const isValidSpdx = (value) => {
|
|
|
15873
15873
|
*/
|
|
15874
15874
|
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"));
|
|
15875
15875
|
//#endregion
|
|
15876
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
15876
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/PackageManager.js
|
|
15877
15877
|
const PACKAGE_MANAGER_RE = /^([a-z]+)@(\d+\.\d+\.\d+(?:-[a-zA-Z0-9._-]+)?)(?:\+(.+))?$/;
|
|
15878
15878
|
/**
|
|
15879
15879
|
* The `packageManager` field only ever carries corepack's `<algo>.<hex>`
|
|
@@ -15931,7 +15931,7 @@ var PackageManager = class PackageManager extends effect.Schema.Class("PackageMa
|
|
|
15931
15931
|
}
|
|
15932
15932
|
};
|
|
15933
15933
|
//#endregion
|
|
15934
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
15934
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/PackageName.js
|
|
15935
15935
|
/**
|
|
15936
15936
|
* Indicates that a string could not be used as a valid npm package name.
|
|
15937
15937
|
*
|
|
@@ -15989,7 +15989,7 @@ const PackageName = Object.assign(effect.Schema.Union([ScopedPackageName, Unscop
|
|
|
15989
15989
|
isScoped
|
|
15990
15990
|
});
|
|
15991
15991
|
//#endregion
|
|
15992
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
15992
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/Person.js
|
|
15993
15993
|
const parsePersonString = (input) => {
|
|
15994
15994
|
const emailMatch = input.match(/<([^>]+)>/);
|
|
15995
15995
|
const urlMatch = input.match(/\(([^)]+)\)/);
|
|
@@ -16132,7 +16132,7 @@ var Person = class Person extends effect.Schema.Class("Person")({
|
|
|
16132
16132
|
}
|
|
16133
16133
|
};
|
|
16134
16134
|
//#endregion
|
|
16135
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
16135
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/internal/format.js
|
|
16136
16136
|
const KEY_INDEX = new Map([
|
|
16137
16137
|
"$schema",
|
|
16138
16138
|
"name",
|
|
@@ -16355,7 +16355,7 @@ const renderJson = (raw, options) => {
|
|
|
16355
16355
|
return options.newline ? `${json}\n` : json;
|
|
16356
16356
|
};
|
|
16357
16357
|
//#endregion
|
|
16358
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.
|
|
16358
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.5.1_effect@4.0.0-beta.101/node_modules/@effected/package-json/Package.js
|
|
16359
16359
|
const toHashMap = effect.SchemaTransformation.transform({
|
|
16360
16360
|
decode: (record) => effect.HashMap.fromIterable(Object.entries(record)),
|
|
16361
16361
|
encode: (map) => Object.fromEntries(effect.HashMap.toEntries(map))
|
|
@@ -16673,7 +16673,7 @@ var Package = class Package extends effect.Schema.Class("Package")({
|
|
|
16673
16673
|
}
|
|
16674
16674
|
};
|
|
16675
16675
|
//#endregion
|
|
16676
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
16676
|
+
//#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
|
|
16677
16677
|
const EMPTY$1 = Object.freeze(Object.create(null));
|
|
16678
16678
|
const EMPTY_MANIFEST = Object.freeze(Object.create(null));
|
|
16679
16679
|
/**
|
|
@@ -16952,7 +16952,7 @@ var WorkspacePackage = class WorkspacePackage extends effect.Schema.Class("Works
|
|
|
16952
16952
|
}
|
|
16953
16953
|
};
|
|
16954
16954
|
//#endregion
|
|
16955
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.3.
|
|
16955
|
+
//#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
|
|
16956
16956
|
/**
|
|
16957
16957
|
* Typed failure raised by {@link descend}: a directory mid-walk was unreadable
|
|
16958
16958
|
* (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
|
|
@@ -17087,7 +17087,7 @@ const descend = effect.Effect.fn("Walker.descend")(function* (pattern, options)
|
|
|
17087
17087
|
return results;
|
|
17088
17088
|
});
|
|
17089
17089
|
//#endregion
|
|
17090
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.3.
|
|
17090
|
+
//#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
|
|
17091
17091
|
/**
|
|
17092
17092
|
* Typed failure raised by {@link compileAndExpand}: the single error the
|
|
17093
17093
|
* compile+expand recipe fails with, so a caller catches one tag rather than
|
|
@@ -17177,7 +17177,7 @@ const compileAndExpand = effect.Effect.fn("Walker.compileAndExpand")(function* (
|
|
|
17177
17177
|
})));
|
|
17178
17178
|
});
|
|
17179
17179
|
//#endregion
|
|
17180
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.3.
|
|
17180
|
+
//#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
|
|
17181
17181
|
/**
|
|
17182
17182
|
* Ascend from `start` toward the filesystem root, yielding each directory,
|
|
17183
17183
|
* nearest first.
|
|
@@ -17278,7 +17278,7 @@ const Walker$1 = {
|
|
|
17278
17278
|
findRoot: findRoot$1
|
|
17279
17279
|
};
|
|
17280
17280
|
//#endregion
|
|
17281
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17281
|
+
//#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
|
|
17282
17282
|
/**
|
|
17283
17283
|
* The marker filenames {@link WorkspaceRoot} probes for, in priority order.
|
|
17284
17284
|
*
|
|
@@ -17465,7 +17465,7 @@ var WorkspaceRoot = class WorkspaceRoot extends effect.Context.Service()("@effec
|
|
|
17465
17465
|
static layerTest = (root) => effect.Layer.effect(WorkspaceRoot, WorkspaceRoot.makeTest(root)).pipe(effect.Layer.provide(effect.Path.layer));
|
|
17466
17466
|
};
|
|
17467
17467
|
//#endregion
|
|
17468
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17468
|
+
//#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
|
|
17469
17469
|
/**
|
|
17470
17470
|
* Hard ceiling on directories the enumerator will visit for one pattern set.
|
|
17471
17471
|
* Guards the pathological case a depth cap alone does not: a wide, shallow
|
|
@@ -17483,7 +17483,7 @@ const MAX_ENUMERATION_ENTRIES = 1e5;
|
|
|
17483
17483
|
*/
|
|
17484
17484
|
const PRUNED_DIRECTORIES = /* @__PURE__ */ new Set([".git", "node_modules"]);
|
|
17485
17485
|
//#endregion
|
|
17486
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17486
|
+
//#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
|
|
17487
17487
|
/** Directory names never descended into. */
|
|
17488
17488
|
const isPruned = (entry) => PRUNED_DIRECTORIES.has(entry);
|
|
17489
17489
|
/** Join root-relative POSIX segments; `""` is the root itself. */
|
|
@@ -17573,7 +17573,7 @@ var Traversal = class {
|
|
|
17573
17573
|
}
|
|
17574
17574
|
};
|
|
17575
17575
|
//#endregion
|
|
17576
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17576
|
+
//#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
|
|
17577
17577
|
/** Strip a trailing slash from `GlobPattern.enumerationPrefix` to get a relative directory. */
|
|
17578
17578
|
const baseOf = (pattern) => pattern.enumerationPrefix.replace(/\/$/, "");
|
|
17579
17579
|
/**
|
|
@@ -17643,7 +17643,7 @@ const enumerate = (root, globs, options) => effect.Effect.gen(function* () {
|
|
|
17643
17643
|
return results;
|
|
17644
17644
|
});
|
|
17645
17645
|
//#endregion
|
|
17646
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17646
|
+
//#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
|
|
17647
17647
|
const stringsOf = (value) => Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : void 0;
|
|
17648
17648
|
/** The `packages:` list of a `pnpm-workspace.yaml` document. Total on a parsed document. */
|
|
17649
17649
|
const pnpmPatternsOf = (document) => {
|
|
@@ -17700,7 +17700,7 @@ const readPatterns = (root) => effect.Effect.gen(function* () {
|
|
|
17700
17700
|
return manifestPatternsOf(manifest);
|
|
17701
17701
|
});
|
|
17702
17702
|
//#endregion
|
|
17703
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
17703
|
+
//#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
|
|
17704
17704
|
/**
|
|
17705
17705
|
* Raised when a workspace member's `package.json` cannot be read, parsed, or
|
|
17706
17706
|
* used — it is missing, malformed, or lacks a `name` or `version`.
|
|
@@ -18134,7 +18134,7 @@ var WorkspaceDiscovery = class WorkspaceDiscovery extends effect.Context.Service
|
|
|
18134
18134
|
};
|
|
18135
18135
|
const isStringRecord$2 = (value) => value !== null && typeof value === "object" && !Array.isArray(value) && Object.values(value).every((entry) => typeof entry === "string");
|
|
18136
18136
|
//#endregion
|
|
18137
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
18137
|
+
//#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
|
|
18138
18138
|
/**
|
|
18139
18139
|
* Raised when the workspace dependency graph cannot be topologically ordered
|
|
18140
18140
|
* because it contains a cycle.
|
|
@@ -18369,7 +18369,7 @@ const kahn = (edges) => {
|
|
|
18369
18369
|
};
|
|
18370
18370
|
};
|
|
18371
18371
|
//#endregion
|
|
18372
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.4.
|
|
18372
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.4.2_effect@4.0.0-beta.101/node_modules/@effected/git/GitCommand.js
|
|
18373
18373
|
/**
|
|
18374
18374
|
* Builds a `git` `ChildProcess.StandardCommand` with the argv this package
|
|
18375
18375
|
* classifies against.
|
|
@@ -18788,7 +18788,7 @@ const GitCommand = {
|
|
|
18788
18788
|
status
|
|
18789
18789
|
};
|
|
18790
18790
|
//#endregion
|
|
18791
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.4.
|
|
18791
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.4.2_effect@4.0.0-beta.101/node_modules/@effected/git/internal/run.js
|
|
18792
18792
|
/**
|
|
18793
18793
|
* Spawns `command` and collects its stdout, stderr, and exit code as a single
|
|
18794
18794
|
* triple.
|
|
@@ -18815,7 +18815,7 @@ const runCollected = (command) => effect.Effect.scoped(effect.Effect.gen(functio
|
|
|
18815
18815
|
};
|
|
18816
18816
|
}));
|
|
18817
18817
|
//#endregion
|
|
18818
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.4.
|
|
18818
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.4.2_effect@4.0.0-beta.101/node_modules/@effected/git/Git.js
|
|
18819
18819
|
/** git's own ceiling: a run that has not answered in 30s is not going to. */
|
|
18820
18820
|
const GIT_TIMEOUT = effect.Duration.seconds(30);
|
|
18821
18821
|
/**
|
|
@@ -19732,7 +19732,7 @@ var Git = class extends effect.Context.Service()("@effected/git/Git") {
|
|
|
19732
19732
|
}));
|
|
19733
19733
|
};
|
|
19734
19734
|
//#endregion
|
|
19735
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
19735
|
+
//#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
|
|
19736
19736
|
/**
|
|
19737
19737
|
* Which git refs to compare, and whether to fold in the working tree.
|
|
19738
19738
|
*
|
|
@@ -19862,7 +19862,7 @@ var ChangeDetector = class ChangeDetector extends effect.Context.Service()("@eff
|
|
|
19862
19862
|
};
|
|
19863
19863
|
`${process.platform}${process.arch}${process.version.split(".")[0].substring(1)}`;
|
|
19864
19864
|
//#endregion
|
|
19865
|
-
//#region ../../node_modules/.pnpm/@pnpm+error@1100.0
|
|
19865
|
+
//#region ../../node_modules/.pnpm/@pnpm+error@1100.1.0/node_modules/@pnpm/error/lib/index.js
|
|
19866
19866
|
var PnpmError = class extends Error {
|
|
19867
19867
|
code;
|
|
19868
19868
|
hint;
|
|
@@ -19877,7 +19877,7 @@ var PnpmError = class extends Error {
|
|
|
19877
19877
|
}
|
|
19878
19878
|
};
|
|
19879
19879
|
//#endregion
|
|
19880
|
-
//#region ../../node_modules/.pnpm/@pnpm+catalogs.config@1100.0.
|
|
19880
|
+
//#region ../../node_modules/.pnpm/@pnpm+catalogs.config@1100.0.3/node_modules/@pnpm/catalogs.config/lib/getCatalogsFromWorkspaceManifest.js
|
|
19881
19881
|
function getCatalogsFromWorkspaceManifest(workspaceManifest) {
|
|
19882
19882
|
if (workspaceManifest == null) return {};
|
|
19883
19883
|
checkDefaultCatalogIsDefinedOnce(workspaceManifest);
|
|
@@ -19890,7 +19890,7 @@ function checkDefaultCatalogIsDefinedOnce(manifest) {
|
|
|
19890
19890
|
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.");
|
|
19891
19891
|
}
|
|
19892
19892
|
//#endregion
|
|
19893
|
-
//#region ../../node_modules/.pnpm/@pnpm+catalogs.config@1100.0.
|
|
19893
|
+
//#region ../../node_modules/.pnpm/@pnpm+catalogs.config@1100.0.3/node_modules/@pnpm/catalogs.config/lib/mergeCatalogs.js
|
|
19894
19894
|
/**
|
|
19895
19895
|
* Deep-merges catalog definitions, later arguments taking precedence over
|
|
19896
19896
|
* earlier ones at the individual entry level. Use it to fold the catalog
|
|
@@ -19928,7 +19928,7 @@ function mergeCatalogs(...catalogsList) {
|
|
|
19928
19928
|
return result;
|
|
19929
19929
|
}
|
|
19930
19930
|
//#endregion
|
|
19931
|
-
//#region ../../node_modules/.pnpm/@pnpm+catalogs.protocol-parser@1100.0.
|
|
19931
|
+
//#region ../../node_modules/.pnpm/@pnpm+catalogs.protocol-parser@1100.0.1/node_modules/@pnpm/catalogs.protocol-parser/lib/parseCatalogProtocol.js
|
|
19932
19932
|
const CATALOG_PROTOCOL = "catalog:";
|
|
19933
19933
|
/**
|
|
19934
19934
|
* Parse a package.json dependency specifier using the catalog: protocol.
|
|
@@ -19940,7 +19940,7 @@ function parseCatalogProtocol(bareSpecifier) {
|
|
|
19940
19940
|
return catalogNameRaw === "" ? "default" : catalogNameRaw;
|
|
19941
19941
|
}
|
|
19942
19942
|
//#endregion
|
|
19943
|
-
//#region ../../node_modules/.pnpm/@pnpm+catalogs.resolver@1100.0.
|
|
19943
|
+
//#region ../../node_modules/.pnpm/@pnpm+catalogs.resolver@1100.0.1/node_modules/@pnpm/catalogs.resolver/lib/matchCatalogResolveResult.js
|
|
19944
19944
|
function matchCatalogResolveResult(result, matcher) {
|
|
19945
19945
|
switch (result.type) {
|
|
19946
19946
|
case "found": return matcher.found(result);
|
|
@@ -19949,7 +19949,7 @@ function matchCatalogResolveResult(result, matcher) {
|
|
|
19949
19949
|
}
|
|
19950
19950
|
}
|
|
19951
19951
|
//#endregion
|
|
19952
|
-
//#region ../../node_modules/.pnpm/@pnpm+catalogs.resolver@1100.0.
|
|
19952
|
+
//#region ../../node_modules/.pnpm/@pnpm+catalogs.resolver@1100.0.1/node_modules/@pnpm/catalogs.resolver/lib/resolveFromCatalog.js
|
|
19953
19953
|
function resolveFromCatalog(catalogs, wantedDependency) {
|
|
19954
19954
|
const catalogName = parseCatalogProtocol(wantedDependency.bareSpecifier);
|
|
19955
19955
|
if (catalogName == null) return { type: "unused" };
|
|
@@ -19984,7 +19984,7 @@ function resolveFromCatalog(catalogs, wantedDependency) {
|
|
|
19984
19984
|
};
|
|
19985
19985
|
}
|
|
19986
19986
|
//#endregion
|
|
19987
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
19987
|
+
//#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
|
|
19988
19988
|
/** Project a pnpm-workspace manifest's `catalog` / `catalogs` fields into a `Catalogs` map. */
|
|
19989
19989
|
const inlineCatalogs = (manifest) => {
|
|
19990
19990
|
if (manifest.catalog === void 0 && manifest.catalogs === void 0) return {};
|
|
@@ -20048,7 +20048,7 @@ const rangeOf = (catalogs, dependency, specifier) => {
|
|
|
20048
20048
|
});
|
|
20049
20049
|
};
|
|
20050
20050
|
//#endregion
|
|
20051
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
20051
|
+
//#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
|
|
20052
20052
|
/** Whether `value` is a non-null, non-array object. */
|
|
20053
20053
|
const isObject$2 = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
20054
20054
|
/**
|
|
@@ -20234,7 +20234,7 @@ var ConfigDependencyHooks = class ConfigDependencyHooks extends effect.Context.S
|
|
|
20234
20234
|
}) });
|
|
20235
20235
|
};
|
|
20236
20236
|
//#endregion
|
|
20237
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
20237
|
+
//#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
|
|
20238
20238
|
/**
|
|
20239
20239
|
* The four package managers this package understands.
|
|
20240
20240
|
*
|
|
@@ -20476,7 +20476,7 @@ var PackageManagerDetector = class PackageManagerDetector extends effect.Context
|
|
|
20476
20476
|
static layer = effect.Layer.effect(PackageManagerDetector, PackageManagerDetector.make);
|
|
20477
20477
|
};
|
|
20478
20478
|
//#endregion
|
|
20479
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
20479
|
+
//#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
|
|
20480
20480
|
/**
|
|
20481
20481
|
* Raised when the workspace's lockfile cannot be read off disk.
|
|
20482
20482
|
*
|
|
@@ -20586,7 +20586,7 @@ var LockfileReader = class LockfileReader extends effect.Context.Service()("@eff
|
|
|
20586
20586
|
static layer = (options) => effect.Layer.effect(LockfileReader, LockfileReader.make(options));
|
|
20587
20587
|
};
|
|
20588
20588
|
//#endregion
|
|
20589
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
20589
|
+
//#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
|
|
20590
20590
|
/** The public npm registry, used when `publishConfig.registry` says nothing. */
|
|
20591
20591
|
const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
|
|
20592
20592
|
/**
|
|
@@ -20686,7 +20686,7 @@ var PublishabilityDetector = class PublishabilityDetector extends effect.Context
|
|
|
20686
20686
|
}) });
|
|
20687
20687
|
};
|
|
20688
20688
|
//#endregion
|
|
20689
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
20689
|
+
//#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
|
|
20690
20690
|
/**
|
|
20691
20691
|
* An immutable, fully-normalized catalog collection — the one catalog
|
|
20692
20692
|
* resolution semantic in the package.
|
|
@@ -21116,7 +21116,7 @@ var WorkspaceCatalogs = class WorkspaceCatalogs extends effect.Context.Service()
|
|
|
21116
21116
|
}));
|
|
21117
21117
|
};
|
|
21118
21118
|
//#endregion
|
|
21119
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
21119
|
+
//#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
|
|
21120
21120
|
const EMPTY = Object.freeze(Object.create(null));
|
|
21121
21121
|
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)));
|
|
21122
21122
|
/**
|
|
@@ -21281,7 +21281,7 @@ var WorkspaceStateSnapshot = class extends effect.Schema.Class("WorkspaceStateSn
|
|
|
21281
21281
|
}
|
|
21282
21282
|
};
|
|
21283
21283
|
//#endregion
|
|
21284
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
21284
|
+
//#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
|
|
21285
21285
|
/** Whether `value` is a non-null, non-array object. */
|
|
21286
21286
|
const isObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
21287
21287
|
/** Whether every value in a record is a string — a usable dependency map. */
|
|
@@ -21473,7 +21473,7 @@ var WorkspaceSnapshots = class WorkspaceSnapshots extends effect.Context.Service
|
|
|
21473
21473
|
static layer = (options) => effect.Layer.effect(WorkspaceSnapshots, WorkspaceSnapshots.make(options));
|
|
21474
21474
|
};
|
|
21475
21475
|
//#endregion
|
|
21476
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.6.
|
|
21476
|
+
//#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
|
|
21477
21477
|
/**
|
|
21478
21478
|
* Every service that needs only a filesystem: root, package-manager detection,
|
|
21479
21479
|
* discovery, lockfile reading, catalogs and publishability.
|