@savvy-web/silk 3.3.1 → 3.3.2
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 +104 -103
- package/changesets-changelog.d.cts +8 -8
- package/changesets-changelog.d.ts +8 -8
- package/changesets-changelog.js +141 -123
- package/changesets-markdownlint.cjs +104 -103
- package/changesets-markdownlint.d.cts +8 -8
- package/changesets-markdownlint.d.ts +8 -8
- package/changesets-markdownlint.js +141 -123
- package/package.json +5 -5
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -1
|
@@ -403,7 +403,7 @@ const trimTrailingSlashes = (s) => {
|
|
|
403
403
|
return s.slice(0, end);
|
|
404
404
|
};
|
|
405
405
|
//#endregion
|
|
406
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
406
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/limits.js
|
|
407
407
|
/** Hard cap on pattern length. Upstream minimatch's MAX_PATTERN_LENGTH (64KB). */
|
|
408
408
|
const MAX_PATTERN_LENGTH = 65536;
|
|
409
409
|
/** Default brace-expansion output budget. Upstream brace-expansion's EXPANSION_MAX. */
|
|
@@ -437,7 +437,7 @@ const assertCap = (name, value) => {
|
|
|
437
437
|
return value;
|
|
438
438
|
};
|
|
439
439
|
//#endregion
|
|
440
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
440
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/unescape.js
|
|
441
441
|
/**
|
|
442
442
|
* Un-escape a string that has been escaped with `escape`.
|
|
443
443
|
*
|
|
@@ -460,11 +460,11 @@ const unescapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = true
|
|
|
460
460
|
return windowsPathsNoEscape ? s.replace(/\[([^/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\{}])\]/g, "$1$2").replace(/\\([^/{}])/g, "$1");
|
|
461
461
|
};
|
|
462
462
|
//#endregion
|
|
463
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
463
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/types.js
|
|
464
464
|
/** The globstar marker in a compiled pattern set. */
|
|
465
465
|
const GLOBSTAR = Symbol("globstar **");
|
|
466
466
|
//#endregion
|
|
467
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
467
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/escape.js
|
|
468
468
|
/**
|
|
469
469
|
* Escape all magic characters in a glob pattern.
|
|
470
470
|
*
|
|
@@ -482,13 +482,13 @@ const escapePattern = (s, { windowsPathsNoEscape = false, magicalBraces = false
|
|
|
482
482
|
return windowsPathsNoEscape ? s.replace(/[?*()[\]]/g, "[$&]") : s.replace(/[?*()[\]\\]/g, "\\$&");
|
|
483
483
|
};
|
|
484
484
|
//#endregion
|
|
485
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
485
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/assertValidPattern.js
|
|
486
486
|
const assertValidPattern = (pattern) => {
|
|
487
487
|
if (typeof pattern !== "string") throw new TypeError("invalid pattern");
|
|
488
488
|
if (pattern.length > 65536) throw new GuardExceeded("PatternTooLong", MAX_PATTERN_LENGTH, pattern.length);
|
|
489
489
|
};
|
|
490
490
|
//#endregion
|
|
491
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
491
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/braceExpressions.js
|
|
492
492
|
const posixClasses = {
|
|
493
493
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
494
494
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -611,7 +611,7 @@ const parseClass = (glob, position) => {
|
|
|
611
611
|
];
|
|
612
612
|
};
|
|
613
613
|
//#endregion
|
|
614
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
614
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/ast.js
|
|
615
615
|
const types = /* @__PURE__ */ new Set([
|
|
616
616
|
"!",
|
|
617
617
|
"?",
|
|
@@ -1128,7 +1128,7 @@ var AST = class AST {
|
|
|
1128
1128
|
}
|
|
1129
1129
|
};
|
|
1130
1130
|
//#endregion
|
|
1131
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1131
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/balancedMatch.js
|
|
1132
1132
|
const maybeMatch = (reg, str) => {
|
|
1133
1133
|
const m = str.match(reg);
|
|
1134
1134
|
return m ? m[0] : null;
|
|
@@ -1186,7 +1186,7 @@ const range = (a, b, str) => {
|
|
|
1186
1186
|
return result;
|
|
1187
1187
|
};
|
|
1188
1188
|
//#endregion
|
|
1189
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1189
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/braceExpansion.js
|
|
1190
1190
|
const escSlash = `\0SLASH${Math.random()}\0`;
|
|
1191
1191
|
const escOpen = `\0OPEN${Math.random()}\0`;
|
|
1192
1192
|
const escClose = `\0CLOSE${Math.random()}\0`;
|
|
@@ -1333,7 +1333,7 @@ function expand_(str, max, isTopInput, depth) {
|
|
|
1333
1333
|
}
|
|
1334
1334
|
}
|
|
1335
1335
|
//#endregion
|
|
1336
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1336
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/internal/minimatch.js
|
|
1337
1337
|
const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
|
|
1338
1338
|
const starDotExtTest = (ext) => (f) => !f.startsWith(".") && f.endsWith(ext);
|
|
1339
1339
|
const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
|
|
@@ -1388,7 +1388,8 @@ const twoStarNoDot = "(?:(?!(?:\\/|^)\\.).)*?";
|
|
|
1388
1388
|
const braceExpand = (pattern, options = {}) => {
|
|
1389
1389
|
assertValidPattern(pattern);
|
|
1390
1390
|
if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) return [pattern];
|
|
1391
|
-
|
|
1391
|
+
const opts = options.braceExpandMax === void 0 ? {} : { max: options.braceExpandMax };
|
|
1392
|
+
return expand(pattern, opts);
|
|
1392
1393
|
};
|
|
1393
1394
|
const globMagic = /[?*]|[+@!]\(.*?\)|\[|\]/;
|
|
1394
1395
|
const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
|
|
@@ -1904,7 +1905,7 @@ var Minimatch = class {
|
|
|
1904
1905
|
}
|
|
1905
1906
|
};
|
|
1906
1907
|
//#endregion
|
|
1907
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
1908
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/GlobPattern.js
|
|
1908
1909
|
/**
|
|
1909
1910
|
* Typed failure raised when a glob pattern trips a compile-time guard:
|
|
1910
1911
|
* over-length, brace-expansion budget exhaustion, or nesting past the depth
|
|
@@ -2183,7 +2184,7 @@ var GlobPattern = class GlobPattern extends effect.Schema.Class("GlobPattern")(e
|
|
|
2183
2184
|
})));
|
|
2184
2185
|
};
|
|
2185
2186
|
//#endregion
|
|
2186
|
-
//#region ../../node_modules/.pnpm/@effected+glob@0.2.
|
|
2187
|
+
//#region ../../node_modules/.pnpm/@effected+glob@0.2.2_effect@4.0.0-beta.101/node_modules/@effected/glob/GlobSet.js
|
|
2187
2188
|
const exclusionTarget = (pattern) => pattern.startsWith("!") ? pattern.slice(1) : void 0;
|
|
2188
2189
|
const allCompileUnderDefaults = (patterns) => {
|
|
2189
2190
|
for (const pattern of patterns) {
|
|
@@ -2337,7 +2338,7 @@ var GlobSet = class GlobSet extends effect.Schema.Class("GlobSet")(effect.Schema
|
|
|
2337
2338
|
}
|
|
2338
2339
|
};
|
|
2339
2340
|
//#endregion
|
|
2340
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
2341
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/BunExtension.js
|
|
2341
2342
|
/**
|
|
2342
2343
|
* Extension data specific to bun lockfiles, attached to `Lockfile.extension`
|
|
2343
2344
|
* when the format is `"bun"`.
|
|
@@ -2358,7 +2359,7 @@ var BunExtension = class extends effect.Schema.Class("BunExtension")({
|
|
|
2358
2359
|
trustedDependencies: effect.Schema.optionalKey(effect.Schema.Array(effect.Schema.String))
|
|
2359
2360
|
}) {};
|
|
2360
2361
|
//#endregion
|
|
2361
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.8.
|
|
2362
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/CatalogResolver.js
|
|
2362
2363
|
/**
|
|
2363
2364
|
* Contract for resolving pnpm `catalog:` dependency specifiers to concrete
|
|
2364
2365
|
* version ranges.
|
|
@@ -2404,7 +2405,7 @@ var CatalogResolver = class CatalogResolver extends effect.Context.Service()("@e
|
|
|
2404
2405
|
static noop = effect.Layer.succeed(CatalogResolver, { rangeOf: () => effect.Effect.succeed(effect.Option.none()) });
|
|
2405
2406
|
};
|
|
2406
2407
|
//#endregion
|
|
2407
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.8.
|
|
2408
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/WorkspaceResolver.js
|
|
2408
2409
|
/**
|
|
2409
2410
|
* Raised when a `catalog:` or `workspace:` specifier cannot be resolved
|
|
2410
2411
|
* because the resolution mechanism itself failed — not for an ordinary
|
|
@@ -2465,7 +2466,7 @@ var WorkspaceResolver = class WorkspaceResolver extends effect.Context.Service()
|
|
|
2465
2466
|
static noop = effect.Layer.succeed(WorkspaceResolver, { versionOf: () => effect.Effect.succeed(effect.Option.none()) });
|
|
2466
2467
|
};
|
|
2467
2468
|
//#endregion
|
|
2468
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.8.
|
|
2469
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/CatalogAssemblyError.js
|
|
2469
2470
|
/**
|
|
2470
2471
|
* Raised when a workspace's catalogs cannot be assembled — a `pnpm-workspace.yaml`
|
|
2471
2472
|
* that is unreadable or not valid YAML, a root `package.json` `workspaces` field
|
|
@@ -2509,7 +2510,7 @@ var CatalogAssemblyError = class extends effect.Schema.TaggedErrorClass()("Catal
|
|
|
2509
2510
|
}
|
|
2510
2511
|
};
|
|
2511
2512
|
//#endregion
|
|
2512
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.8.
|
|
2513
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/DependencySection.js
|
|
2513
2514
|
/**
|
|
2514
2515
|
* The short dependency kind: which dependency map an entry came from, named the
|
|
2515
2516
|
* way consumers branch on it.
|
|
@@ -2541,7 +2542,7 @@ Object.fromEntries(Object.entries({
|
|
|
2541
2542
|
optional: "optionalDependencies"
|
|
2542
2543
|
}).map(([kind, field]) => [field, kind]));
|
|
2543
2544
|
//#endregion
|
|
2544
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.3.
|
|
2545
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/desugar.js
|
|
2545
2546
|
const sv = (major, minor, patch, prerelease = [], build = []) => ({
|
|
2546
2547
|
major,
|
|
2547
2548
|
minor,
|
|
@@ -2630,7 +2631,7 @@ const desugarHyphen = (lower, upper) => {
|
|
|
2630
2631
|
return [comp(">=", lowerVersion)];
|
|
2631
2632
|
};
|
|
2632
2633
|
//#endregion
|
|
2633
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.3.
|
|
2634
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/grammar.js
|
|
2634
2635
|
/** Private control-flow exception; never escapes the entry points. */
|
|
2635
2636
|
var ParseFailure = class {
|
|
2636
2637
|
position;
|
|
@@ -3030,7 +3031,7 @@ const formatComparator = (c) => {
|
|
|
3030
3031
|
/** Print comparator sets as `a b || c d`. */
|
|
3031
3032
|
const formatRange = (sets) => sets.map((set) => set.map(formatComparator).join(" ")).join(" || ");
|
|
3032
3033
|
//#endregion
|
|
3033
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.3.
|
|
3034
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/order.js
|
|
3034
3035
|
/**
|
|
3035
3036
|
* Compare two prerelease identifiers per SemVer 2.0.0 §11: numeric
|
|
3036
3037
|
* identifiers always have lower precedence than alphanumeric ones; numerics
|
|
@@ -3083,7 +3084,7 @@ const compareBuild = (a, b) => {
|
|
|
3083
3084
|
return 0;
|
|
3084
3085
|
};
|
|
3085
3086
|
//#endregion
|
|
3086
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.3.
|
|
3087
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/SemVer.js
|
|
3087
3088
|
/**
|
|
3088
3089
|
* Indicates that a string could not be parsed as a valid SemVer 2.0.0 version.
|
|
3089
3090
|
*
|
|
@@ -3594,7 +3595,7 @@ var SemVerBump = class {
|
|
|
3594
3595
|
}
|
|
3595
3596
|
};
|
|
3596
3597
|
//#endregion
|
|
3597
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.3.
|
|
3598
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/Comparator.js
|
|
3598
3599
|
/**
|
|
3599
3600
|
* Indicates that a string could not be parsed as a single comparator.
|
|
3600
3601
|
*
|
|
@@ -3728,7 +3729,7 @@ var Comparator = class Comparator extends effect.Schema.Class("Comparator")({
|
|
|
3728
3729
|
}
|
|
3729
3730
|
};
|
|
3730
3731
|
//#endregion
|
|
3731
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.3.
|
|
3732
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/internal/normalize.js
|
|
3732
3733
|
const operatorWeight = (op) => {
|
|
3733
3734
|
switch (op) {
|
|
3734
3735
|
case ">=": return 0;
|
|
@@ -3759,7 +3760,7 @@ const normalizeComparatorSet = (set) => sortComparators(removeDuplicates(set));
|
|
|
3759
3760
|
/** Normalize every comparator set in a range: sort and deduplicate each independently. */
|
|
3760
3761
|
const normalizeSets = (sets) => sets.map(normalizeComparatorSet);
|
|
3761
3762
|
//#endregion
|
|
3762
|
-
//#region ../../node_modules/.pnpm/@effected+semver@0.3.
|
|
3763
|
+
//#region ../../node_modules/.pnpm/@effected+semver@0.3.1_effect@4.0.0-beta.101/node_modules/@effected/semver/Range.js
|
|
3763
3764
|
/**
|
|
3764
3765
|
* Indicates that a string could not be parsed as a range expression.
|
|
3765
3766
|
*
|
|
@@ -4087,7 +4088,7 @@ const isComparatorSetSubset = (sub, sup) => {
|
|
|
4087
4088
|
return true;
|
|
4088
4089
|
};
|
|
4089
4090
|
//#endregion
|
|
4090
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.8.
|
|
4091
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/DependencySpecifier.js
|
|
4091
4092
|
/**
|
|
4092
4093
|
* Indicates that a string could not be parsed as a valid dependency specifier.
|
|
4093
4094
|
*
|
|
@@ -4294,7 +4295,7 @@ const DependencySpecifier = Object.assign(brandedSpecifier, {
|
|
|
4294
4295
|
FromString: fromString
|
|
4295
4296
|
});
|
|
4296
4297
|
//#endregion
|
|
4297
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.8.
|
|
4298
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/IntegrityHash.js
|
|
4298
4299
|
const SRI_RE = /^(sha1|sha256|sha384|sha512)-[A-Za-z0-9+/]+={0,2}$/;
|
|
4299
4300
|
const COREPACK_RE = /^(sha1|sha224|sha256|sha384|sha512)\.[0-9a-f]+$/;
|
|
4300
4301
|
const YARN_RE = /^[0-9]+(c[0-9]+)?\/[0-9a-f]+$/;
|
|
@@ -4593,7 +4594,7 @@ var LocalExec = class LocalExec extends effect.Context.Service()("@effected/comm
|
|
|
4593
4594
|
static layerTest = (overrides = {}) => effect.Layer.succeed(LocalExec, LocalExec.makeTest(overrides));
|
|
4594
4595
|
};
|
|
4595
4596
|
//#endregion
|
|
4596
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.8.
|
|
4597
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.8.1_@effected+semver@0.3.1_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/npm/ReleaseAgeGate.js
|
|
4597
4598
|
const MS_PER_MINUTE = 6e4;
|
|
4598
4599
|
/**
|
|
4599
4600
|
* A source's partial contribution to a {@link ReleaseAgeGate}: the effective
|
|
@@ -4763,7 +4764,7 @@ var ReleaseAgeGate = class ReleaseAgeGate extends effect.Schema.Class("ReleaseAg
|
|
|
4763
4764
|
}
|
|
4764
4765
|
};
|
|
4765
4766
|
//#endregion
|
|
4766
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
4767
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/ImporterDependency.js
|
|
4767
4768
|
/**
|
|
4768
4769
|
* One declared dependency of one workspace importer, as the lockfile records it.
|
|
4769
4770
|
*
|
|
@@ -4801,7 +4802,7 @@ var ImporterDependency = class extends effect.Schema.Class("ImporterDependency")
|
|
|
4801
4802
|
depType: DependencyField
|
|
4802
4803
|
}) {};
|
|
4803
4804
|
//#endregion
|
|
4804
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
4805
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/LockfileImporter.js
|
|
4805
4806
|
/**
|
|
4806
4807
|
* One workspace importer's declared dependencies, as the lockfile records them.
|
|
4807
4808
|
*
|
|
@@ -4825,7 +4826,7 @@ var LockfileImporter = class extends effect.Schema.Class("LockfileImporter")({
|
|
|
4825
4826
|
dependencies: effect.Schema.Array(ImporterDependency)
|
|
4826
4827
|
}) {};
|
|
4827
4828
|
//#endregion
|
|
4828
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
4829
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/ResolvedPackage.js
|
|
4829
4830
|
const EMPTY_DEPENDENCIES = {};
|
|
4830
4831
|
/**
|
|
4831
4832
|
* A package resolved from a lockfile.
|
|
@@ -4860,7 +4861,7 @@ var ResolvedPackage = class extends effect.Schema.Class("ResolvedPackage")({
|
|
|
4860
4861
|
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)))
|
|
4861
4862
|
}) {};
|
|
4862
4863
|
//#endregion
|
|
4863
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
4864
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/WorkspaceDependency.js
|
|
4864
4865
|
/**
|
|
4865
4866
|
* A directed dependency edge between two workspace packages as recorded in
|
|
4866
4867
|
* the lockfile.
|
|
@@ -4882,7 +4883,7 @@ var WorkspaceDependency = class extends effect.Schema.Class("WorkspaceDependency
|
|
|
4882
4883
|
constraint: effect.Schema.String
|
|
4883
4884
|
}) {};
|
|
4884
4885
|
//#endregion
|
|
4885
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
4886
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/PnpmExtension.js
|
|
4886
4887
|
/**
|
|
4887
4888
|
* Extension data specific to pnpm lockfiles, attached to `Lockfile.extension`
|
|
4888
4889
|
* when the format is `"pnpm"`.
|
|
@@ -4907,7 +4908,7 @@ var PnpmExtension = class extends effect.Schema.Class("PnpmExtension")({
|
|
|
4907
4908
|
}))
|
|
4908
4909
|
}) {};
|
|
4909
4910
|
//#endregion
|
|
4910
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
4911
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/LockfileFormat.js
|
|
4911
4912
|
/**
|
|
4912
4913
|
* The lockfile formats this package parses: bun's `bun.lock` (JSONC), npm's
|
|
4913
4914
|
* `package-lock.json` (v2/v3 JSON), pnpm's `pnpm-lock.yaml` and yarn Berry's
|
|
@@ -4945,7 +4946,7 @@ const FILENAMES = {
|
|
|
4945
4946
|
*/
|
|
4946
4947
|
const filenameFor = (format) => FILENAMES[format][0];
|
|
4947
4948
|
//#endregion
|
|
4948
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
4949
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/shared.js
|
|
4949
4950
|
/**
|
|
4950
4951
|
* The four dependency sections of a manifest, in a stable order — the shared
|
|
4951
4952
|
* dependency-sections table (v3's `DEP_SECTIONS`). Each entry is both the
|
|
@@ -5103,7 +5104,7 @@ const extractWorkspaceDeps = (workspaces, workspaceNames) => {
|
|
|
5103
5104
|
return deps;
|
|
5104
5105
|
};
|
|
5105
5106
|
//#endregion
|
|
5106
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
5107
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/JsoncNode.js
|
|
5107
5108
|
/**
|
|
5108
5109
|
* Discriminator values for JSONC AST node types: the JSON value types
|
|
5109
5110
|
* (`string`/`number`/`boolean`/`null`), the structural types
|
|
@@ -5278,7 +5279,7 @@ function evaluateNode(node, depth) {
|
|
|
5278
5279
|
}
|
|
5279
5280
|
}
|
|
5280
5281
|
//#endregion
|
|
5281
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
5282
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/scanner.js
|
|
5282
5283
|
const isWhitespace = (ch) => ch === 32 || ch === 9 || ch === 11 || ch === 12 || ch === 160 || ch === 65279;
|
|
5283
5284
|
const isLineBreak$1 = (ch) => ch === 10 || ch === 13 || ch === 8232 || ch === 8233;
|
|
5284
5285
|
const isDigit$1 = (ch) => ch >= 48 && ch <= 57;
|
|
@@ -5572,7 +5573,7 @@ const createScanner$2 = (text, ignoreTrivia = false) => {
|
|
|
5572
5573
|
};
|
|
5573
5574
|
};
|
|
5574
5575
|
//#endregion
|
|
5575
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
5576
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/skip.js
|
|
5576
5577
|
/**
|
|
5577
5578
|
* Iteratively consume the value beginning at the cursor's current token and
|
|
5578
5579
|
* return its tight end offset (excludes trailing whitespace/comments).
|
|
@@ -5602,7 +5603,7 @@ const skipBalancedValue = (cursor) => {
|
|
|
5602
5603
|
return end;
|
|
5603
5604
|
};
|
|
5604
5605
|
//#endregion
|
|
5605
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
5606
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/parser.js
|
|
5606
5607
|
/**
|
|
5607
5608
|
* The public parse-error code vocabulary. The facade builds its `@public`
|
|
5608
5609
|
* `JsoncParseErrorCode` schema from this array; the parser produces these codes
|
|
@@ -6015,7 +6016,7 @@ const parseTree$2 = (text, flags) => {
|
|
|
6015
6016
|
};
|
|
6016
6017
|
};
|
|
6017
6018
|
//#endregion
|
|
6018
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
6019
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/Jsonc.js
|
|
6019
6020
|
/**
|
|
6020
6021
|
* The single public parse-error code vocabulary, appearing as the `code` field
|
|
6021
6022
|
* of {@link JsoncParseErrorDetail}.
|
|
@@ -6619,7 +6620,7 @@ var JsoncEdit = class extends effect.Schema.Class("JsoncEdit")({
|
|
|
6619
6620
|
}
|
|
6620
6621
|
};
|
|
6621
6622
|
//#endregion
|
|
6622
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
6623
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/internal/navigate.js
|
|
6623
6624
|
/**
|
|
6624
6625
|
* Resolve `path` against `text`, returning where the target is (or where it
|
|
6625
6626
|
* would be inserted). `path` must be non-empty — the whole-document case is
|
|
@@ -6746,7 +6747,7 @@ function navigate(text, path) {
|
|
|
6746
6747
|
return { _tag: "NoOp" };
|
|
6747
6748
|
}
|
|
6748
6749
|
//#endregion
|
|
6749
|
-
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.
|
|
6750
|
+
//#region ../../node_modules/.pnpm/@effected+jsonc@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/jsonc/JsoncModifier.js
|
|
6750
6751
|
/**
|
|
6751
6752
|
* Raised when `JsoncModifier.modify` cannot navigate the requested path: the
|
|
6752
6753
|
* value at `depth` is not the container kind (`expected`) the next path segment
|
|
@@ -6874,7 +6875,7 @@ var JsoncModifier = class {
|
|
|
6874
6875
|
});
|
|
6875
6876
|
};
|
|
6876
6877
|
//#endregion
|
|
6877
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
6878
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/bun.js
|
|
6878
6879
|
const DepRecord$2 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
6879
6880
|
const BunWorkspaceEntry = effect.Schema.Struct({
|
|
6880
6881
|
name: effect.Schema.optionalKey(effect.Schema.String),
|
|
@@ -6967,7 +6968,7 @@ const toFields$3 = (raw) => effect.Effect.gen(function* () {
|
|
|
6967
6968
|
};
|
|
6968
6969
|
});
|
|
6969
6970
|
//#endregion
|
|
6970
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
6971
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/npm.js
|
|
6971
6972
|
const DepRecord$1 = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
6972
6973
|
const NpmPackageEntry = effect.Schema.Struct({
|
|
6973
6974
|
name: effect.Schema.optionalKey(effect.Schema.String),
|
|
@@ -7065,7 +7066,7 @@ const toFields$2 = (raw) => effect.Effect.gen(function* () {
|
|
|
7065
7066
|
};
|
|
7066
7067
|
});
|
|
7067
7068
|
//#endregion
|
|
7068
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
7069
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/YamlNode.js
|
|
7069
7070
|
/**
|
|
7070
7071
|
* YAML scalar presentation styles.
|
|
7071
7072
|
*
|
|
@@ -7467,7 +7468,7 @@ function nodeToValue(node, anchors, budget, counting = false) {
|
|
|
7467
7468
|
return null;
|
|
7468
7469
|
}
|
|
7469
7470
|
//#endregion
|
|
7470
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
7471
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/diagnostics.js
|
|
7471
7472
|
/** Error codes emitted by the lexer stage. */
|
|
7472
7473
|
const YAML_LEX_ERROR_CODES = [
|
|
7473
7474
|
"UnexpectedCharacter",
|
|
@@ -7545,7 +7546,7 @@ function isFatalCode(code) {
|
|
|
7545
7546
|
return FATAL_CODES.has(code);
|
|
7546
7547
|
}
|
|
7547
7548
|
//#endregion
|
|
7548
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
7549
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/YamlDiagnostic.js
|
|
7549
7550
|
/**
|
|
7550
7551
|
* Error codes emitted by the lexer stage.
|
|
7551
7552
|
*
|
|
@@ -7666,7 +7667,7 @@ function lineChar(text, offset) {
|
|
|
7666
7667
|
};
|
|
7667
7668
|
}
|
|
7668
7669
|
//#endregion
|
|
7669
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
7670
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/anchors.js
|
|
7670
7671
|
/**
|
|
7671
7672
|
* Check if a pending anchor is being applied to an alias node (invalid in YAML 1.2 §3.2.2).
|
|
7672
7673
|
* Aliases represent references to existing anchored nodes and cannot have their own anchors.
|
|
@@ -7759,7 +7760,7 @@ function collectAnchors(node, anchors) {
|
|
|
7759
7760
|
}
|
|
7760
7761
|
}
|
|
7761
7762
|
//#endregion
|
|
7762
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
7763
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/lexer.js
|
|
7763
7764
|
/**
|
|
7764
7765
|
* Create a new YAML scanner for the given source text.
|
|
7765
7766
|
*
|
|
@@ -8716,7 +8717,7 @@ function lexAll(text) {
|
|
|
8716
8717
|
return tokens;
|
|
8717
8718
|
}
|
|
8718
8719
|
//#endregion
|
|
8719
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
8720
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/cst-parser.js
|
|
8720
8721
|
/**
|
|
8721
8722
|
* Hardening: cap CST nesting so hostile inputs cannot overflow the stack
|
|
8722
8723
|
* while the tree is being BUILT. Set slightly above the composer's
|
|
@@ -9428,7 +9429,7 @@ function parseCSTAll(text) {
|
|
|
9428
9429
|
return parseDocuments(lexAll(text), text);
|
|
9429
9430
|
}
|
|
9430
9431
|
//#endregion
|
|
9431
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
9432
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/state.js
|
|
9432
9433
|
let lineStartsText;
|
|
9433
9434
|
let lineStartsCache = [];
|
|
9434
9435
|
function getLineStarts(text) {
|
|
@@ -9534,7 +9535,7 @@ function exitNesting(state) {
|
|
|
9534
9535
|
state.depth--;
|
|
9535
9536
|
}
|
|
9536
9537
|
//#endregion
|
|
9537
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
9538
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/tags.js
|
|
9538
9539
|
/**
|
|
9539
9540
|
* Resolve a tag shorthand using the document's %TAG directives.
|
|
9540
9541
|
* For example, with `%TAG !! tag:example.com,2000:app/`, the tag `!!int`
|
|
@@ -9620,7 +9621,7 @@ function validateTagHandlesInDocument(docCst, state) {
|
|
|
9620
9621
|
}
|
|
9621
9622
|
}
|
|
9622
9623
|
//#endregion
|
|
9623
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
9624
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/scalars.js
|
|
9624
9625
|
const NULL_RE$1 = /^(?:null|Null|NULL|~)$/;
|
|
9625
9626
|
const TRUE_RE$1 = /^(?:true|True|TRUE)$/;
|
|
9626
9627
|
const FALSE_RE$1 = /^(?:false|False|FALSE)$/;
|
|
@@ -10498,7 +10499,7 @@ function shouldPreserveRaw(rawValue, value) {
|
|
|
10498
10499
|
return false;
|
|
10499
10500
|
}
|
|
10500
10501
|
//#endregion
|
|
10501
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
10502
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/block.js
|
|
10502
10503
|
/**
|
|
10503
10504
|
* Compose a block map from its CST children, with an optional external first key.
|
|
10504
10505
|
*
|
|
@@ -11646,7 +11647,7 @@ function composeFlatBlockMap(children, startIdx, parentCst, state, externalFirst
|
|
|
11646
11647
|
return map;
|
|
11647
11648
|
}
|
|
11648
11649
|
//#endregion
|
|
11649
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
11650
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/flow.js
|
|
11650
11651
|
/**
|
|
11651
11652
|
* Validate that flow collection entries are separated by commas.
|
|
11652
11653
|
*
|
|
@@ -12038,7 +12039,7 @@ function composeFlowSeqInner(cst, state, meta, parentBlockColumn) {
|
|
|
12038
12039
|
return seq;
|
|
12039
12040
|
}
|
|
12040
12041
|
//#endregion
|
|
12041
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
12042
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/composer/document.js
|
|
12042
12043
|
/** The flow-composer dispatch wired into every state this module creates. */
|
|
12043
12044
|
const FLOW = {
|
|
12044
12045
|
composeFlowMap,
|
|
@@ -12704,7 +12705,7 @@ function composeAllDocuments(text, options) {
|
|
|
12704
12705
|
};
|
|
12705
12706
|
}
|
|
12706
12707
|
//#endregion
|
|
12707
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
12708
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/fold.js
|
|
12708
12709
|
/**
|
|
12709
12710
|
* Column-based line folding for a single logical scalar line (YAML 1.2 flow
|
|
12710
12711
|
* folding, §7.3 / §8.2.1). Breaks the content at "safe" single-space
|
|
@@ -12940,7 +12941,7 @@ function renderBlockFolded(s, indent) {
|
|
|
12940
12941
|
return `>${indentIndicator}${chomp}\n${outputLines.join("\n")}`;
|
|
12941
12942
|
}
|
|
12942
12943
|
//#endregion
|
|
12943
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.
|
|
12944
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.6.1_effect@4.0.0-beta.101/node_modules/@effected/yaml/internal/stringifier.js
|
|
12944
12945
|
/**
|
|
12945
12946
|
* Thrown by the stringifier on its failure paths (circular references). The
|
|
12946
12947
|
* facade catches this and materializes the public stringify error.
|
|
@@ -13889,7 +13890,7 @@ function deepEqualValues(a, b) {
|
|
|
13889
13890
|
return false;
|
|
13890
13891
|
}
|
|
13891
13892
|
//#endregion
|
|
13892
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
13893
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/documents.js
|
|
13893
13894
|
/**
|
|
13894
13895
|
* An empty YAML document composes to `null` (`Yaml.parseAll("")` is `[null]`,
|
|
13895
13896
|
* and the trailing document of an env-only `pnpm-lock.yaml` is `null` too).
|
|
@@ -13959,7 +13960,7 @@ const selectSoleDocument = (content) => effect.Effect.gen(function* () {
|
|
|
13959
13960
|
};
|
|
13960
13961
|
});
|
|
13961
13962
|
//#endregion
|
|
13962
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
13963
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/pnpm.js
|
|
13963
13964
|
const PnpmImporterDeps = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.Struct({
|
|
13964
13965
|
specifier: effect.Schema.String,
|
|
13965
13966
|
version: effect.Schema.String
|
|
@@ -14084,7 +14085,7 @@ const toFields$1 = (raw) => effect.Effect.gen(function* () {
|
|
|
14084
14085
|
};
|
|
14085
14086
|
});
|
|
14086
14087
|
//#endregion
|
|
14087
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
14088
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/internal/yarn.js
|
|
14088
14089
|
const YarnLockfileRaw = effect.Schema.Record(effect.Schema.String, effect.Schema.Unknown);
|
|
14089
14090
|
const DepRecord = effect.Schema.optionalKey(effect.Schema.Record(effect.Schema.String, effect.Schema.String));
|
|
14090
14091
|
const YarnEntry = effect.Schema.Struct({
|
|
@@ -14207,7 +14208,7 @@ const cleanYarnDeps = (deps) => {
|
|
|
14207
14208
|
return Object.fromEntries(Object.entries(deps).map(([name, value]) => [name, value.startsWith("npm:") ? value.slice(4) : value]));
|
|
14208
14209
|
};
|
|
14209
14210
|
//#endregion
|
|
14210
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
14211
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/Lockfile.js
|
|
14211
14212
|
const EMPTY_IMPORTERS = [];
|
|
14212
14213
|
/**
|
|
14213
14214
|
* Failure of `Lockfile.parse`: the given content is not a valid lockfile of
|
|
@@ -14451,7 +14452,7 @@ var Lockfile = class Lockfile extends effect.Schema.Class("Lockfile")({
|
|
|
14451
14452
|
}
|
|
14452
14453
|
};
|
|
14453
14454
|
//#endregion
|
|
14454
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.
|
|
14455
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.3.1_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__@effected+npm@0._76c3c4c2d3d6f22fa84df3beea811625/node_modules/@effected/lockfiles/LockfileIntegrity.js
|
|
14455
14456
|
/**
|
|
14456
14457
|
* The minimal manifest shape {@link LockfileIntegrity.compare} checks a
|
|
14457
14458
|
* lockfile against: a package name plus the four optional dependency maps.
|
|
@@ -14567,7 +14568,7 @@ var LockfileIntegrity = class LockfileIntegrity extends effect.Schema.Class("Loc
|
|
|
14567
14568
|
}
|
|
14568
14569
|
};
|
|
14569
14570
|
//#endregion
|
|
14570
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.
|
|
14571
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/Dependency.js
|
|
14571
14572
|
/**
|
|
14572
14573
|
* A resolved dependency entry pairing a package name with its version
|
|
14573
14574
|
* specifier and the `kind` of map it came from (`@effected/npm`'s
|
|
@@ -14631,7 +14632,7 @@ var Dependency = class extends effect.Schema.Class("Dependency")({
|
|
|
14631
14632
|
}
|
|
14632
14633
|
};
|
|
14633
14634
|
//#endregion
|
|
14634
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.
|
|
14635
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/DevEngines.js
|
|
14635
14636
|
/**
|
|
14636
14637
|
* A single `devEngines` constraint with a name and optional `version` / `onFail`.
|
|
14637
14638
|
*
|
|
@@ -14669,7 +14670,7 @@ const DevEnginesSchema = effect.Schema.Struct({
|
|
|
14669
14670
|
libc: effect.Schema.optionalKey(DevEngineOrArray)
|
|
14670
14671
|
});
|
|
14671
14672
|
//#endregion
|
|
14672
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
14673
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/licenseIds.js
|
|
14673
14674
|
/** @internal */
|
|
14674
14675
|
const ACTIVE_LICENSE_IDS = [
|
|
14675
14676
|
"0BSD",
|
|
@@ -15402,7 +15403,7 @@ const LICENSE_IDS = new Set(ACTIVE_LICENSE_IDS);
|
|
|
15402
15403
|
/** @internal */
|
|
15403
15404
|
const DEPRECATED_LICENSE_IDS = new Set(DEPRECATED_LICENSE_ID_LIST);
|
|
15404
15405
|
//#endregion
|
|
15405
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15406
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/License.js
|
|
15406
15407
|
/**
|
|
15407
15408
|
* Indicates that a string is not a valid SPDX expression fragment: an
|
|
15408
15409
|
* unrecognized license or exception identifier, or a malformed
|
|
@@ -15571,7 +15572,7 @@ var License = class License extends effect.Schema.Class("License")({
|
|
|
15571
15572
|
}
|
|
15572
15573
|
};
|
|
15573
15574
|
//#endregion
|
|
15574
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15575
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/exceptions.js
|
|
15575
15576
|
/** @internal */
|
|
15576
15577
|
const ACTIVE_EXCEPTION_IDS = [
|
|
15577
15578
|
"389-exception",
|
|
@@ -15648,7 +15649,7 @@ const EXCEPTION_IDS = new Set(ACTIVE_EXCEPTION_IDS);
|
|
|
15648
15649
|
/** @internal */
|
|
15649
15650
|
const DEPRECATED_EXCEPTION_IDS = new Set(DEPRECATED_EXCEPTION_ID_LIST);
|
|
15650
15651
|
//#endregion
|
|
15651
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15652
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/LicenseException.js
|
|
15652
15653
|
/**
|
|
15653
15654
|
* A validated SPDX license-exception identifier: an Effect `Schema.Class` whose
|
|
15654
15655
|
* `id` is a member of the SPDX exception list. The class doubles as its own
|
|
@@ -15768,7 +15769,7 @@ var LicenseException = class LicenseException extends effect.Schema.Class("Licen
|
|
|
15768
15769
|
}
|
|
15769
15770
|
};
|
|
15770
15771
|
//#endregion
|
|
15771
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
15772
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/internal/parser.js
|
|
15772
15773
|
const TOKEN_OPEN_PAREN = 0;
|
|
15773
15774
|
const TOKEN_CLOSE_PAREN = 1;
|
|
15774
15775
|
const TOKEN_PLUS = 2;
|
|
@@ -15997,7 +15998,7 @@ function parse$2(input) {
|
|
|
15997
15998
|
return node;
|
|
15998
15999
|
}
|
|
15999
16000
|
//#endregion
|
|
16000
|
-
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.
|
|
16001
|
+
//#region ../../node_modules/.pnpm/@effected+spdx@0.1.2_effect@4.0.0-beta.101/node_modules/@effected/spdx/SpdxExpression.js
|
|
16001
16002
|
/**
|
|
16002
16003
|
* Serialize a tagged SPDX AST node — a class instance OR its encoded POJO — to
|
|
16003
16004
|
* the canonical, fully-parenthesized SPDX string. This is the single source of
|
|
@@ -16186,7 +16187,7 @@ effect.Schema.String.pipe(effect.Schema.decodeTo(SpdxExpressionUnion, effect.Sch
|
|
|
16186
16187
|
encode: (expression) => effect.Effect.succeed(serialize$1(expression))
|
|
16187
16188
|
})));
|
|
16188
16189
|
//#endregion
|
|
16189
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.
|
|
16190
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/License.js
|
|
16190
16191
|
/**
|
|
16191
16192
|
* Indicates that a string is not a valid SPDX license identifier or expression.
|
|
16192
16193
|
*
|
|
@@ -16221,7 +16222,7 @@ const isValidSpdx = (value) => {
|
|
|
16221
16222
|
*/
|
|
16222
16223
|
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"));
|
|
16223
16224
|
//#endregion
|
|
16224
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.
|
|
16225
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/PackageManager.js
|
|
16225
16226
|
const PACKAGE_MANAGER_NAME_RE = /^[a-z]+$/;
|
|
16226
16227
|
const invalid$1 = (input, message) => effect.Effect.fail(new effect.SchemaIssue.InvalidValue(effect.Option.some(input), { message }));
|
|
16227
16228
|
/**
|
|
@@ -16332,7 +16333,7 @@ var PackageManager = class PackageManager extends effect.Schema.Class("PackageMa
|
|
|
16332
16333
|
}
|
|
16333
16334
|
};
|
|
16334
16335
|
//#endregion
|
|
16335
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.
|
|
16336
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/PackageName.js
|
|
16336
16337
|
/**
|
|
16337
16338
|
* Indicates that a string could not be used as a valid npm package name.
|
|
16338
16339
|
*
|
|
@@ -16390,7 +16391,7 @@ const PackageName = Object.assign(effect.Schema.Union([ScopedPackageName, Unscop
|
|
|
16390
16391
|
isScoped
|
|
16391
16392
|
});
|
|
16392
16393
|
//#endregion
|
|
16393
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.
|
|
16394
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/Person.js
|
|
16394
16395
|
const parsePersonString = (input) => {
|
|
16395
16396
|
const emailMatch = input.match(/<([^>]+)>/);
|
|
16396
16397
|
const urlMatch = input.match(/\(([^)]+)\)/);
|
|
@@ -16536,7 +16537,7 @@ var Person = class Person extends effect.Schema.Class("Person")({
|
|
|
16536
16537
|
}
|
|
16537
16538
|
};
|
|
16538
16539
|
//#endregion
|
|
16539
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.
|
|
16540
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/Repository.js
|
|
16540
16541
|
/** The shorthand hosts npm resolves without a scheme. */
|
|
16541
16542
|
const SHORTHAND_HOSTS = /* @__PURE__ */ new Map([
|
|
16542
16543
|
["github", "https://github.com"],
|
|
@@ -16711,7 +16712,7 @@ var Bugs = class Bugs extends effect.Schema.Class("Bugs")({
|
|
|
16711
16712
|
})));
|
|
16712
16713
|
};
|
|
16713
16714
|
//#endregion
|
|
16714
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.
|
|
16715
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/internal/format.js
|
|
16715
16716
|
const KEY_INDEX = new Map([
|
|
16716
16717
|
"$schema",
|
|
16717
16718
|
"name",
|
|
@@ -16934,7 +16935,7 @@ const renderJson = (raw, options) => {
|
|
|
16934
16935
|
return options.newline ? `${json}\n` : json;
|
|
16935
16936
|
};
|
|
16936
16937
|
//#endregion
|
|
16937
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.
|
|
16938
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.7.2_effect@4.0.0-beta.101/node_modules/@effected/package-json/Package.js
|
|
16938
16939
|
const toHashMap = effect.SchemaTransformation.transform({
|
|
16939
16940
|
decode: (record) => effect.HashMap.fromIterable(Object.entries(record)),
|
|
16940
16941
|
encode: (map) => Object.fromEntries(effect.HashMap.toEntries(map))
|
|
@@ -17250,7 +17251,7 @@ var Package = class Package extends effect.Schema.Class("Package")({
|
|
|
17250
17251
|
}
|
|
17251
17252
|
};
|
|
17252
17253
|
//#endregion
|
|
17253
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
17254
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspacePackage.js
|
|
17254
17255
|
const EMPTY$1 = Object.freeze(Object.create(null));
|
|
17255
17256
|
const EMPTY_MANIFEST = Object.freeze(Object.create(null));
|
|
17256
17257
|
/**
|
|
@@ -17529,7 +17530,7 @@ var WorkspacePackage = class WorkspacePackage extends effect.Schema.Class("Works
|
|
|
17529
17530
|
}
|
|
17530
17531
|
};
|
|
17531
17532
|
//#endregion
|
|
17532
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.3.
|
|
17533
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.3.4_@effected+glob@0.2.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Descend.js
|
|
17533
17534
|
/**
|
|
17534
17535
|
* Typed failure raised by {@link descend}: a directory mid-walk was unreadable
|
|
17535
17536
|
* (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
|
|
@@ -17664,7 +17665,7 @@ const descend = effect.Effect.fn("Walker.descend")(function* (pattern, options)
|
|
|
17664
17665
|
return results;
|
|
17665
17666
|
});
|
|
17666
17667
|
//#endregion
|
|
17667
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.3.
|
|
17668
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.3.4_@effected+glob@0.2.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Expand.js
|
|
17668
17669
|
/**
|
|
17669
17670
|
* Typed failure raised by {@link compileAndExpand}: the single error the
|
|
17670
17671
|
* compile+expand recipe fails with, so a caller catches one tag rather than
|
|
@@ -17754,7 +17755,7 @@ const compileAndExpand = effect.Effect.fn("Walker.compileAndExpand")(function* (
|
|
|
17754
17755
|
})));
|
|
17755
17756
|
});
|
|
17756
17757
|
//#endregion
|
|
17757
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.3.
|
|
17758
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.3.4_@effected+glob@0.2.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/walker/Walker.js
|
|
17758
17759
|
const ascend = (start, options) => effect.Effect.gen(function* () {
|
|
17759
17760
|
const path = yield* effect.Path.Path;
|
|
17760
17761
|
const maxDepth = options?.maxDepth ?? 256;
|
|
@@ -17848,7 +17849,7 @@ var Walker$1 = class {
|
|
|
17848
17849
|
static findRoot = findRoot$1;
|
|
17849
17850
|
};
|
|
17850
17851
|
//#endregion
|
|
17851
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
17852
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceRoot.js
|
|
17852
17853
|
/**
|
|
17853
17854
|
* The marker filenames {@link WorkspaceRoot} probes for, in priority order.
|
|
17854
17855
|
*
|
|
@@ -18035,7 +18036,7 @@ var WorkspaceRoot = class WorkspaceRoot extends effect.Context.Service()("@effec
|
|
|
18035
18036
|
static layerTest = (root) => effect.Layer.effect(WorkspaceRoot, WorkspaceRoot.makeTest(root)).pipe(effect.Layer.provide(effect.Path.layer));
|
|
18036
18037
|
};
|
|
18037
18038
|
//#endregion
|
|
18038
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
18039
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/limits.js
|
|
18039
18040
|
/**
|
|
18040
18041
|
* Hard ceiling on directories the enumerator will visit for one pattern set.
|
|
18041
18042
|
* Guards the pathological case a depth cap alone does not: a wide, shallow
|
|
@@ -18053,7 +18054,7 @@ const MAX_ENUMERATION_ENTRIES = 1e5;
|
|
|
18053
18054
|
*/
|
|
18054
18055
|
const PRUNED_DIRECTORIES = /* @__PURE__ */ new Set([".git", "node_modules"]);
|
|
18055
18056
|
//#endregion
|
|
18056
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
18057
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/traverse.js
|
|
18057
18058
|
/** Directory names never descended into. */
|
|
18058
18059
|
const isPruned = (entry) => PRUNED_DIRECTORIES.has(entry);
|
|
18059
18060
|
/** Join root-relative POSIX segments; `""` is the root itself. */
|
|
@@ -18143,7 +18144,7 @@ var Traversal = class {
|
|
|
18143
18144
|
}
|
|
18144
18145
|
};
|
|
18145
18146
|
//#endregion
|
|
18146
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
18147
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/enumerate.js
|
|
18147
18148
|
/** Strip a trailing slash from `GlobPattern.enumerationPrefix` to get a relative directory. */
|
|
18148
18149
|
const baseOf = (pattern) => pattern.enumerationPrefix.replace(/\/$/, "");
|
|
18149
18150
|
/**
|
|
@@ -18213,7 +18214,7 @@ const enumerate = (root, globs, options) => effect.Effect.gen(function* () {
|
|
|
18213
18214
|
return results;
|
|
18214
18215
|
});
|
|
18215
18216
|
//#endregion
|
|
18216
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
18217
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/patterns.js
|
|
18217
18218
|
const stringsOf = (value) => Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : void 0;
|
|
18218
18219
|
/** The `packages:` list of a `pnpm-workspace.yaml` document. Total on a parsed document. */
|
|
18219
18220
|
const pnpmPatternsOf = (document) => {
|
|
@@ -18270,7 +18271,7 @@ const readPatterns = (root) => effect.Effect.gen(function* () {
|
|
|
18270
18271
|
return manifestPatternsOf(manifest);
|
|
18271
18272
|
});
|
|
18272
18273
|
//#endregion
|
|
18273
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
18274
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceDiscovery.js
|
|
18274
18275
|
/**
|
|
18275
18276
|
* Raised when a workspace member's `package.json` cannot be read, parsed, or
|
|
18276
18277
|
* used — it is missing, malformed, or lacks a `name` or `version`.
|
|
@@ -18708,7 +18709,7 @@ var WorkspaceDiscovery = class WorkspaceDiscovery extends effect.Context.Service
|
|
|
18708
18709
|
};
|
|
18709
18710
|
const isStringRecord$2 = (value) => value !== null && typeof value === "object" && !Array.isArray(value) && Object.values(value).every((entry) => typeof entry === "string");
|
|
18710
18711
|
//#endregion
|
|
18711
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
18712
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/DependencyGraph.js
|
|
18712
18713
|
/**
|
|
18713
18714
|
* Raised when the workspace dependency graph cannot be topologically ordered
|
|
18714
18715
|
* because it contains a cycle.
|
|
@@ -18941,7 +18942,7 @@ const kahn = (edges) => {
|
|
|
18941
18942
|
};
|
|
18942
18943
|
};
|
|
18943
18944
|
//#endregion
|
|
18944
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.5.
|
|
18945
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/git/GitCommand.js
|
|
18945
18946
|
/**
|
|
18946
18947
|
* Builds a `git` `ChildProcess.StandardCommand` with the argv this package
|
|
18947
18948
|
* classifies against.
|
|
@@ -19313,7 +19314,7 @@ var GitCommand = class {
|
|
|
19313
19314
|
static status = status;
|
|
19314
19315
|
};
|
|
19315
19316
|
//#endregion
|
|
19316
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.5.
|
|
19317
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/git/internal/run.js
|
|
19317
19318
|
/**
|
|
19318
19319
|
* Spawns `command` and collects its stdout, stderr, and exit code as a single
|
|
19319
19320
|
* triple.
|
|
@@ -19340,7 +19341,7 @@ const runCollected = (command) => effect.Effect.scoped(effect.Effect.gen(functio
|
|
|
19340
19341
|
};
|
|
19341
19342
|
}));
|
|
19342
19343
|
//#endregion
|
|
19343
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.5.
|
|
19344
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.5.2_effect@4.0.0-beta.101/node_modules/@effected/git/Git.js
|
|
19344
19345
|
/** git's own ceiling: a run that has not answered in 30s is not going to. */
|
|
19345
19346
|
const GIT_TIMEOUT = effect.Duration.seconds(30);
|
|
19346
19347
|
/**
|
|
@@ -20350,7 +20351,7 @@ var Git = class Git extends effect.Context.Service()("@effected/git/Git") {
|
|
|
20350
20351
|
static layerTest = (overrides = {}) => effect.Layer.succeed(Git, Git.makeTest(overrides));
|
|
20351
20352
|
};
|
|
20352
20353
|
//#endregion
|
|
20353
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
20354
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/ChangeDetector.js
|
|
20354
20355
|
/**
|
|
20355
20356
|
* Which git refs to compare, and whether to fold in the working tree.
|
|
20356
20357
|
*
|
|
@@ -20602,7 +20603,7 @@ function resolveFromCatalog(catalogs, wantedDependency) {
|
|
|
20602
20603
|
};
|
|
20603
20604
|
}
|
|
20604
20605
|
//#endregion
|
|
20605
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
20606
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/catalogs.js
|
|
20606
20607
|
/** Project a pnpm-workspace manifest's `catalog` / `catalogs` fields into a `Catalogs` map. */
|
|
20607
20608
|
const inlineCatalogs = (manifest) => {
|
|
20608
20609
|
if (manifest.catalog === void 0 && manifest.catalogs === void 0) return {};
|
|
@@ -20666,7 +20667,7 @@ const rangeOf = (catalogs, dependency, specifier) => {
|
|
|
20666
20667
|
});
|
|
20667
20668
|
};
|
|
20668
20669
|
//#endregion
|
|
20669
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
20670
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/ConfigDependencyHooks.js
|
|
20670
20671
|
/** Whether `value` is a non-null, non-array object. */
|
|
20671
20672
|
const isObject$2 = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
20672
20673
|
/**
|
|
@@ -20853,7 +20854,7 @@ var ConfigDependencyHooks = class ConfigDependencyHooks extends effect.Context.S
|
|
|
20853
20854
|
}) });
|
|
20854
20855
|
};
|
|
20855
20856
|
//#endregion
|
|
20856
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
20857
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/PackageManagerName.js
|
|
20857
20858
|
/**
|
|
20858
20859
|
* The four package managers this package understands.
|
|
20859
20860
|
*
|
|
@@ -21181,7 +21182,7 @@ var PackageManagerDetector = class PackageManagerDetector extends effect.Context
|
|
|
21181
21182
|
static layerTest = (overrides = {}) => effect.Layer.succeed(PackageManagerDetector, PackageManagerDetector.makeTest(overrides));
|
|
21182
21183
|
};
|
|
21183
21184
|
//#endregion
|
|
21184
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
21185
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/LockfileReader.js
|
|
21185
21186
|
/**
|
|
21186
21187
|
* Raised when the workspace's lockfile cannot be read off disk.
|
|
21187
21188
|
*
|
|
@@ -21361,7 +21362,7 @@ var LockfileReader = class LockfileReader extends effect.Context.Service()("@eff
|
|
|
21361
21362
|
static layerTest = (overrides = {}) => effect.Layer.succeed(LockfileReader, LockfileReader.makeTest(overrides));
|
|
21362
21363
|
};
|
|
21363
21364
|
//#endregion
|
|
21364
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
21365
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/Publishability.js
|
|
21365
21366
|
/** The public npm registry, used when `publishConfig.registry` says nothing. */
|
|
21366
21367
|
const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
|
|
21367
21368
|
/**
|
|
@@ -21520,7 +21521,7 @@ var PublishabilityDetector = class extends effect.Context.Service()("@effected/w
|
|
|
21520
21521
|
static layerNone = effect.Layer.succeed(this, this.none);
|
|
21521
21522
|
};
|
|
21522
21523
|
//#endregion
|
|
21523
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
21524
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/internal/importerVersions.js
|
|
21524
21525
|
/**
|
|
21525
21526
|
* Strip pnpm's peer-disambiguation suffix from a recorded importer version.
|
|
21526
21527
|
*
|
|
@@ -21606,7 +21607,7 @@ const unanimousVersionOf = (index, dependency) => {
|
|
|
21606
21607
|
return agreed;
|
|
21607
21608
|
};
|
|
21608
21609
|
//#endregion
|
|
21609
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
21610
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceCatalogs.js
|
|
21610
21611
|
/**
|
|
21611
21612
|
* An immutable, fully-normalized catalog collection — the one catalog
|
|
21612
21613
|
* resolution semantic in the package.
|
|
@@ -22115,7 +22116,7 @@ var WorkspaceCatalogs = class WorkspaceCatalogs extends effect.Context.Service()
|
|
|
22115
22116
|
}));
|
|
22116
22117
|
};
|
|
22117
22118
|
//#endregion
|
|
22118
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
22119
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceStateSnapshot.js
|
|
22119
22120
|
const EMPTY = Object.freeze(Object.create(null));
|
|
22120
22121
|
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)));
|
|
22121
22122
|
/**
|
|
@@ -22338,7 +22339,7 @@ var WorkspaceStateSnapshot = class extends effect.Schema.Class("WorkspaceStateSn
|
|
|
22338
22339
|
}
|
|
22339
22340
|
};
|
|
22340
22341
|
//#endregion
|
|
22341
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
22342
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/WorkspaceSnapshots.js
|
|
22342
22343
|
/** Whether `value` is a non-null, non-array object. */
|
|
22343
22344
|
const isObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
22344
22345
|
/** Whether every value in a record is a string — a usable dependency map. */
|
|
@@ -22615,7 +22616,7 @@ var WorkspaceSnapshots = class WorkspaceSnapshots extends effect.Context.Service
|
|
|
22615
22616
|
static layerTest = (overrides = {}) => effect.Layer.succeed(WorkspaceSnapshots, WorkspaceSnapshots.makeTest(overrides));
|
|
22616
22617
|
};
|
|
22617
22618
|
//#endregion
|
|
22618
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.
|
|
22619
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.9.4_@effected+jsonc@0.5.2_effect@4.0.0-beta.101__effect@4.0.0-beta.101/node_modules/@effected/workspaces/Workspaces.js
|
|
22619
22620
|
const compose = (options, catalogsFactory) => {
|
|
22620
22621
|
const roots = WorkspaceRoot.layer;
|
|
22621
22622
|
const detector = PackageManagerDetector.layer;
|