@savvy-web/silk 2.2.0 → 2.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 +69 -0
- package/changesets-changelog.d.cts +295 -285
- package/changesets-changelog.d.ts +295 -285
- package/changesets-changelog.js +70 -0
- package/changesets-markdownlint.cjs +69 -0
- package/changesets-markdownlint.d.cts +295 -285
- package/changesets-markdownlint.d.ts +295 -285
- package/changesets-markdownlint.js +70 -0
- package/changesets-remark.d.ts +0 -1
- package/changesets.d.ts +0 -1
- package/commitlint-formatter.d.ts +0 -1
- package/commitlint-prompt.d.ts +0 -1
- package/commitlint-static.d.ts +0 -1
- package/commitlint.d.ts +0 -1
- package/lint.d.ts +0 -1
- package/package.json +4 -4
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Context, Effect, Layer, Option, Schema } from "effect";
|
|
2
2
|
import { CommandExecutor, FileSystem, Path } from "@effect/platform";
|
|
3
|
+
import "@effect/platform/Error";
|
|
3
4
|
//#region ../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts
|
|
4
5
|
// ## Interfaces
|
|
5
6
|
/**
|
|
@@ -2063,7 +2064,7 @@ type NodeLike = object & {
|
|
|
2063
2064
|
//#endregion
|
|
2064
2065
|
//#region ../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.d.ts
|
|
2065
2066
|
// See: <https://github.com/sindresorhus/type-fest/blob/main/source/empty-object.d.ts>
|
|
2066
|
-
declare const emptyObjectSymbol$1: unique symbol;
|
|
2067
|
+
declare const emptyObjectSymbol$1: unique symbol;
|
|
2067
2068
|
/**
|
|
2068
2069
|
* Things that can be passed to the constructor.
|
|
2069
2070
|
*/
|
|
@@ -3194,8 +3195,8 @@ type TransformCallback<Output extends Node$3 = Node$3> = (error?: Error | undefi
|
|
|
3194
3195
|
*
|
|
3195
3196
|
* [trough]: https://github.com/wooorm/trough#function-fninput-next
|
|
3196
3197
|
*/
|
|
3197
|
-
type Transformer<Input extends Node$3 = Node$3, Output extends Node$3 = Input> = (tree: Input, file: VFile, next: TransformCallback<Output>) => (Promise<Output | undefined | void> | Promise<never>
|
|
3198
|
-
Output | Error | undefined | void);
|
|
3198
|
+
type Transformer<Input extends Node$3 = Node$3, Output extends Node$3 = Input> = (tree: Input, file: VFile, next: TransformCallback<Output>) => (Promise<Output | undefined | void> | Promise<never> // For some reason this is needed separately.
|
|
3199
|
+
| Output | Error | undefined | void);
|
|
3199
3200
|
/**
|
|
3200
3201
|
* Create a processor based on the input/output of a {@link Plugin plugin}.
|
|
3201
3202
|
*/
|
|
@@ -3339,7 +3340,7 @@ interface Catalog {
|
|
|
3339
3340
|
*
|
|
3340
3341
|
* @public
|
|
3341
3342
|
*/
|
|
3342
|
-
declare const CatalogAssemblyErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
3343
|
+
declare const CatalogAssemblyErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
3343
3344
|
readonly _tag: "CatalogAssemblyError";
|
|
3344
3345
|
} & Readonly<A>;
|
|
3345
3346
|
/**
|
|
@@ -3354,20 +3355,7 @@ declare class CatalogAssemblyError extends CatalogAssemblyErrorBase<{
|
|
|
3354
3355
|
readonly reason: string;
|
|
3355
3356
|
}> {
|
|
3356
3357
|
get message(): string;
|
|
3357
|
-
}
|
|
3358
|
-
//#region src/errors/CatalogResolutionError.d.ts
|
|
3359
|
-
/**
|
|
3360
|
-
* Base constant for {@link CatalogResolutionError}.
|
|
3361
|
-
*
|
|
3362
|
-
* @remarks
|
|
3363
|
-
* Exported for api-extractor DTS bundling — the `_base` symbol from
|
|
3364
|
-
* `Data.TaggedError` must be visible in the generated .d.ts file. Tagged
|
|
3365
|
-
* `@public` because it appears in the `extends` clause of a `@public`
|
|
3366
|
-
* subclass; consumers should construct and catch the subclass, not this
|
|
3367
|
-
* base directly.
|
|
3368
|
-
*
|
|
3369
|
-
* @public
|
|
3370
|
-
*/
|
|
3358
|
+
}
|
|
3371
3359
|
//#endregion
|
|
3372
3360
|
//#region src/errors/GitReadError.d.ts
|
|
3373
3361
|
/**
|
|
@@ -3379,7 +3367,7 @@ declare class CatalogAssemblyError extends CatalogAssemblyErrorBase<{
|
|
|
3379
3367
|
*
|
|
3380
3368
|
* @public
|
|
3381
3369
|
*/
|
|
3382
|
-
declare const GitReadErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
3370
|
+
declare const GitReadErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
3383
3371
|
readonly _tag: "GitReadError";
|
|
3384
3372
|
} & Readonly<A>;
|
|
3385
3373
|
/**
|
|
@@ -3391,25 +3379,12 @@ declare const GitReadErrorBase: new <A extends Record<string, any> = {}>(args: i
|
|
|
3391
3379
|
* @public
|
|
3392
3380
|
*/
|
|
3393
3381
|
declare class GitReadError extends GitReadErrorBase<{
|
|
3394
|
-
/** The git command that failed, including arguments. */readonly command: string; /** Working directory in which the command was invoked. */
|
|
3382
|
+
/** The git command that failed, including arguments. */ readonly command: string; /** Working directory in which the command was invoked. */
|
|
3395
3383
|
readonly cwd: string; /** Human-readable failure reason — typically captured stderr. */
|
|
3396
3384
|
readonly reason: string;
|
|
3397
3385
|
}> {
|
|
3398
3386
|
get message(): string;
|
|
3399
|
-
}
|
|
3400
|
-
//#region src/errors/LockfileIntegrityError.d.ts
|
|
3401
|
-
/**
|
|
3402
|
-
* Base constant for {@link LockfileIntegrityError}.
|
|
3403
|
-
*
|
|
3404
|
-
* @remarks
|
|
3405
|
-
* Exported for api-extractor DTS bundling — the `_base` symbol from
|
|
3406
|
-
* `Data.TaggedError` must be visible in the generated .d.ts file. Tagged
|
|
3407
|
-
* `@public` because it appears in the `extends` clause of a `@public`
|
|
3408
|
-
* subclass; consumers should construct and catch the subclass, not this
|
|
3409
|
-
* base directly.
|
|
3410
|
-
*
|
|
3411
|
-
* @public
|
|
3412
|
-
*/
|
|
3387
|
+
}
|
|
3413
3388
|
//#endregion
|
|
3414
3389
|
//#region src/errors/PackageJsonParseError.d.ts
|
|
3415
3390
|
/**
|
|
@@ -3424,7 +3399,7 @@ declare class GitReadError extends GitReadErrorBase<{
|
|
|
3424
3399
|
*
|
|
3425
3400
|
* @public
|
|
3426
3401
|
*/
|
|
3427
|
-
declare const PackageJsonParseErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
3402
|
+
declare const PackageJsonParseErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
3428
3403
|
readonly _tag: "PackageJsonParseError";
|
|
3429
3404
|
} & Readonly<A>;
|
|
3430
3405
|
/**
|
|
@@ -3464,20 +3439,7 @@ declare class PackageJsonParseError extends PackageJsonParseErrorBase<{
|
|
|
3464
3439
|
readonly cause: unknown;
|
|
3465
3440
|
}> {
|
|
3466
3441
|
get message(): string;
|
|
3467
|
-
}
|
|
3468
|
-
//#region src/errors/PackageManagerDetectionError.d.ts
|
|
3469
|
-
/**
|
|
3470
|
-
* Base constant for {@link PackageManagerDetectionError}.
|
|
3471
|
-
*
|
|
3472
|
-
* @remarks
|
|
3473
|
-
* Exported for api-extractor DTS bundling — the `_base` symbol from
|
|
3474
|
-
* `Data.TaggedError` must be visible in the generated .d.ts file. Tagged
|
|
3475
|
-
* `@public` because it appears in the `extends` clause of a `@public`
|
|
3476
|
-
* subclass; consumers should construct and catch the subclass, not this
|
|
3477
|
-
* base directly.
|
|
3478
|
-
*
|
|
3479
|
-
* @public
|
|
3480
|
-
*/
|
|
3442
|
+
}
|
|
3481
3443
|
//#endregion
|
|
3482
3444
|
//#region src/errors/PackageNotFoundError.d.ts
|
|
3483
3445
|
/**
|
|
@@ -3492,7 +3454,7 @@ declare class PackageJsonParseError extends PackageJsonParseErrorBase<{
|
|
|
3492
3454
|
*
|
|
3493
3455
|
* @public
|
|
3494
3456
|
*/
|
|
3495
|
-
declare const PackageNotFoundErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
3457
|
+
declare const PackageNotFoundErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
3496
3458
|
readonly _tag: "PackageNotFoundError";
|
|
3497
3459
|
} & Readonly<A>;
|
|
3498
3460
|
/**
|
|
@@ -3530,7 +3492,8 @@ declare class PackageNotFoundError extends PackageNotFoundErrorBase<{
|
|
|
3530
3492
|
readonly available: ReadonlyArray<string>;
|
|
3531
3493
|
}> {
|
|
3532
3494
|
get message(): string;
|
|
3533
|
-
}
|
|
3495
|
+
}
|
|
3496
|
+
//#endregion
|
|
3534
3497
|
//#region src/errors/WorkspaceDiscoveryError.d.ts
|
|
3535
3498
|
/**
|
|
3536
3499
|
* Base constant for {@link WorkspaceDiscoveryError}.
|
|
@@ -3544,7 +3507,7 @@ declare class PackageNotFoundError extends PackageNotFoundErrorBase<{
|
|
|
3544
3507
|
*
|
|
3545
3508
|
* @public
|
|
3546
3509
|
*/
|
|
3547
|
-
declare const WorkspaceDiscoveryErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
3510
|
+
declare const WorkspaceDiscoveryErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
3548
3511
|
readonly _tag: "WorkspaceDiscoveryError";
|
|
3549
3512
|
} & Readonly<A>;
|
|
3550
3513
|
/**
|
|
@@ -3583,7 +3546,8 @@ declare class WorkspaceDiscoveryError extends WorkspaceDiscoveryErrorBase<{
|
|
|
3583
3546
|
readonly reason: string;
|
|
3584
3547
|
}> {
|
|
3585
3548
|
get message(): string;
|
|
3586
|
-
}
|
|
3549
|
+
}
|
|
3550
|
+
//#endregion
|
|
3587
3551
|
//#region src/errors/WorkspaceRootNotFoundError.d.ts
|
|
3588
3552
|
/**
|
|
3589
3553
|
* Base constant for {@link WorkspaceRootNotFoundError}.
|
|
@@ -3597,7 +3561,7 @@ declare class WorkspaceDiscoveryError extends WorkspaceDiscoveryErrorBase<{
|
|
|
3597
3561
|
*
|
|
3598
3562
|
* @public
|
|
3599
3563
|
*/
|
|
3600
|
-
declare const WorkspaceRootNotFoundErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
3564
|
+
declare const WorkspaceRootNotFoundErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
3601
3565
|
readonly _tag: "WorkspaceRootNotFoundError";
|
|
3602
3566
|
} & Readonly<A>;
|
|
3603
3567
|
/**
|
|
@@ -3635,14 +3599,7 @@ declare class WorkspaceRootNotFoundError extends WorkspaceRootNotFoundErrorBase<
|
|
|
3635
3599
|
readonly reason: string;
|
|
3636
3600
|
}> {
|
|
3637
3601
|
get message(): string;
|
|
3638
|
-
}
|
|
3639
|
-
//#region src/layers/catalog/resolve.d.ts
|
|
3640
|
-
/**
|
|
3641
|
-
* Minimal shape of a `package.json` manifest needed to resolve catalog and
|
|
3642
|
-
* workspace specifiers.
|
|
3643
|
-
*
|
|
3644
|
-
* @public
|
|
3645
|
-
*/
|
|
3602
|
+
}
|
|
3646
3603
|
declare const PublishConfig_base: Schema.Class<PublishConfig, {
|
|
3647
3604
|
access: Schema.optional<Schema.Literal<["public", "restricted"]>>;
|
|
3648
3605
|
registry: Schema.optional<typeof Schema.String>;
|
|
@@ -3692,11 +3649,6 @@ declare const PublishConfig_base: Schema.Class<PublishConfig, {
|
|
|
3692
3649
|
* @public
|
|
3693
3650
|
*/
|
|
3694
3651
|
declare class PublishConfig extends PublishConfig_base {}
|
|
3695
|
-
/**
|
|
3696
|
-
* Type alias for the decoded shape of {@link PublishConfig}.
|
|
3697
|
-
*
|
|
3698
|
-
* @public
|
|
3699
|
-
*/
|
|
3700
3652
|
/**
|
|
3701
3653
|
* Minimal package.json schema for workspace discovery.
|
|
3702
3654
|
*
|
|
@@ -4035,8 +3987,7 @@ declare const WorkspaceDiscovery_base: Context.TagClass<WorkspaceDiscovery, "@sp
|
|
|
4035
3987
|
*
|
|
4036
3988
|
* @public
|
|
4037
3989
|
*/
|
|
4038
|
-
declare class WorkspaceDiscovery extends WorkspaceDiscovery_base {}
|
|
4039
|
-
//#region src/services/WorkspaceRoot.d.ts
|
|
3990
|
+
declare class WorkspaceDiscovery extends WorkspaceDiscovery_base {}
|
|
4040
3991
|
//#endregion
|
|
4041
3992
|
//#region src/schemas/CatalogSet.d.ts
|
|
4042
3993
|
declare const CatalogSet_base: Schema.Class<CatalogSet, {
|
|
@@ -4084,7 +4035,8 @@ declare class CatalogSet extends CatalogSet_base {
|
|
|
4084
4035
|
* `resolveManifest`, which is the single resolution semantic.
|
|
4085
4036
|
*/
|
|
4086
4037
|
resolveSpecifier(dependency: string, specifier: string): Option.Option<string>;
|
|
4087
|
-
}
|
|
4038
|
+
}
|
|
4039
|
+
//#endregion
|
|
4088
4040
|
//#region src/schemas/WorkspaceStateSnapshot.d.ts
|
|
4089
4041
|
declare const PackageStateSnapshot_base: Schema.Class<PackageStateSnapshot, {
|
|
4090
4042
|
name: typeof Schema.NonEmptyString;
|
|
@@ -4185,7 +4137,8 @@ declare class WorkspaceStateSnapshot extends WorkspaceStateSnapshot_base {
|
|
|
4185
4137
|
* `Option.none` for plain specifiers and unresolvable references.
|
|
4186
4138
|
*/
|
|
4187
4139
|
resolve(dependency: string, specifier: string): Option.Option<string>;
|
|
4188
|
-
}
|
|
4140
|
+
}
|
|
4141
|
+
//#endregion
|
|
4189
4142
|
//#region src/services/PointInTimeWorkspace.d.ts
|
|
4190
4143
|
/**
|
|
4191
4144
|
* The umbrella error union covering both {@link PointInTimeWorkspace}
|
|
@@ -4290,13 +4243,7 @@ declare const PointInTimeWorkspace_base: Context.TagClass<PointInTimeWorkspace,
|
|
|
4290
4243
|
*
|
|
4291
4244
|
* @public
|
|
4292
4245
|
*/
|
|
4293
|
-
declare class PointInTimeWorkspace extends PointInTimeWorkspace_base {}
|
|
4294
|
-
//#region src/layers/PointInTimeWorkspaceLive.d.ts
|
|
4295
|
-
/**
|
|
4296
|
-
* Convenience type alias for the {@link PointInTimeWorkspaceLive} layer signature.
|
|
4297
|
-
*
|
|
4298
|
-
* @public
|
|
4299
|
-
*/
|
|
4246
|
+
declare class PointInTimeWorkspace extends PointInTimeWorkspace_base {}
|
|
4300
4247
|
//#endregion
|
|
4301
4248
|
//#region src/schemas/publish.d.ts
|
|
4302
4249
|
declare const PublishTarget_base: Schema.Class<PublishTarget, {
|
|
@@ -4355,7 +4302,8 @@ declare const PublishTarget_base: Schema.Class<PublishTarget, {
|
|
|
4355
4302
|
*
|
|
4356
4303
|
* @public
|
|
4357
4304
|
*/
|
|
4358
|
-
declare class PublishTarget extends PublishTarget_base {}
|
|
4305
|
+
declare class PublishTarget extends PublishTarget_base {}
|
|
4306
|
+
//#endregion
|
|
4359
4307
|
//#region src/services/PublishabilityDetector.d.ts
|
|
4360
4308
|
declare const PublishabilityDetector_base: Context.TagClass<PublishabilityDetector, "@spencerbeggs/workspaces-effect/PublishabilityDetector", {
|
|
4361
4309
|
/**
|
|
@@ -4431,46 +4379,9 @@ declare const PublishabilityDetector_base: Context.TagClass<PublishabilityDetect
|
|
|
4431
4379
|
*
|
|
4432
4380
|
* @public
|
|
4433
4381
|
*/
|
|
4434
|
-
declare class PublishabilityDetector extends PublishabilityDetector_base {}
|
|
4435
|
-
//#region src/layers/PublishabilityDetectorLive.d.ts
|
|
4436
|
-
/**
|
|
4437
|
-
* Live layer for the {@link PublishabilityDetector} service.
|
|
4438
|
-
*
|
|
4439
|
-
* Determines whether a workspace package is publishable to npm based
|
|
4440
|
-
* on its `private` flag and `publishConfig` settings.
|
|
4441
|
-
*
|
|
4442
|
-
* @remarks
|
|
4443
|
-
* This layer is pure -- it has no dependencies on `FileSystem`, `Path`, or
|
|
4444
|
-
* any other platform services. It uses `Layer.succeed` rather than
|
|
4445
|
-
* `Layer.effect`. Custom layers can override by providing their own
|
|
4446
|
-
* `Layer` for `PublishabilityDetector`.
|
|
4447
|
-
*
|
|
4448
|
-
* @privateRemarks
|
|
4449
|
-
* Builds a single {@link PublishTarget} from `publishConfig` fields,
|
|
4450
|
-
* defaulting to the public npm registry when no registry is specified.
|
|
4451
|
-
*
|
|
4452
|
-
* @example
|
|
4453
|
-
* ```typescript
|
|
4454
|
-
* import { Effect } from "effect";
|
|
4455
|
-
* import { PublishabilityDetector, PublishabilityDetectorLive } from "workspaces-effect";
|
|
4456
|
-
* import { WorkspacePackage } from "workspaces-effect";
|
|
4457
|
-
*
|
|
4458
|
-
* const program = Effect.gen(function* () {
|
|
4459
|
-
* const detector = yield* PublishabilityDetector;
|
|
4460
|
-
* const targets = yield* detector.detect(somePackage, "/path/to/root");
|
|
4461
|
-
* return targets;
|
|
4462
|
-
* });
|
|
4463
|
-
*
|
|
4464
|
-
* Effect.runPromise(
|
|
4465
|
-
* program.pipe(Effect.provide(PublishabilityDetectorLive))
|
|
4466
|
-
* );
|
|
4467
|
-
* ```
|
|
4468
|
-
*
|
|
4469
|
-
* @public
|
|
4470
|
-
*/
|
|
4382
|
+
declare class PublishabilityDetector extends PublishabilityDetector_base {}
|
|
4471
4383
|
//#endregion
|
|
4472
4384
|
//#region ../silk-effects/dist/dev/pkg/index.d.ts
|
|
4473
|
-
//#region \0rolldown/runtime.js
|
|
4474
4385
|
//#endregion
|
|
4475
4386
|
//#region src/changesets/categories/types.d.ts
|
|
4476
4387
|
/**
|
|
@@ -4507,9 +4418,13 @@ declare class PublishabilityDetector extends PublishabilityDetector_base {} //#e
|
|
|
4507
4418
|
* @public
|
|
4508
4419
|
*/
|
|
4509
4420
|
declare const SectionCategorySchema: Schema.Struct<{
|
|
4510
|
-
/** Display heading used in CHANGELOG output. */
|
|
4511
|
-
|
|
4512
|
-
|
|
4421
|
+
/** Display heading used in CHANGELOG output. */
|
|
4422
|
+
heading: typeof Schema.String;
|
|
4423
|
+
/** Priority for ordering (lower = higher priority). */
|
|
4424
|
+
priority: typeof Schema.Number;
|
|
4425
|
+
/** Conventional commit types that map to this category. */
|
|
4426
|
+
commitTypes: Schema.Array$<typeof Schema.String>;
|
|
4427
|
+
/** Brief description for documentation. */
|
|
4513
4428
|
description: typeof Schema.String;
|
|
4514
4429
|
}>;
|
|
4515
4430
|
/**
|
|
@@ -4521,7 +4436,8 @@ declare const SectionCategorySchema: Schema.Struct<{
|
|
|
4521
4436
|
*
|
|
4522
4437
|
* @public
|
|
4523
4438
|
*/
|
|
4524
|
-
interface SectionCategory extends Schema.Schema.Type<typeof SectionCategorySchema> {}
|
|
4439
|
+
interface SectionCategory extends Schema.Schema.Type<typeof SectionCategorySchema> {}
|
|
4440
|
+
//#endregion
|
|
4525
4441
|
//#region src/changesets/api/categories.d.ts
|
|
4526
4442
|
/**
|
|
4527
4443
|
* Static class wrapper for section category operations.
|
|
@@ -4747,7 +4663,8 @@ declare class Categories {
|
|
|
4747
4663
|
* @returns `true` if the heading matches a known category, `false` otherwise
|
|
4748
4664
|
*/
|
|
4749
4665
|
static isValidHeading(heading: string): boolean;
|
|
4750
|
-
}
|
|
4666
|
+
}
|
|
4667
|
+
//#endregion
|
|
4751
4668
|
//#region ../../node_modules/.pnpm/@changesets+types@7.0.0-next.6/node_modules/@changesets/types/dist/index.d.mts
|
|
4752
4669
|
//#region src/index.d.ts
|
|
4753
4670
|
type MaybePromise<T> = T | Promise<T>;
|
|
@@ -4853,7 +4770,8 @@ type PreState = {
|
|
|
4853
4770
|
mode: "pre" | "exit";
|
|
4854
4771
|
tag: string;
|
|
4855
4772
|
changesets: string[];
|
|
4856
|
-
};
|
|
4773
|
+
};
|
|
4774
|
+
//#endregion
|
|
4857
4775
|
//#region src/changesets/api/changelog.d.ts
|
|
4858
4776
|
/**
|
|
4859
4777
|
* Static class wrapper for changelog formatting operations.
|
|
@@ -4969,7 +4887,8 @@ declare class Changelog {
|
|
|
4969
4887
|
* the dependency update table
|
|
4970
4888
|
*/
|
|
4971
4889
|
static formatDependencyReleaseLine(changesets: NewChangesetWithCommit[], dependenciesUpdated: ModCompWithPackage[], options: Record<string, unknown> | null): Promise<string>;
|
|
4972
|
-
}
|
|
4890
|
+
}
|
|
4891
|
+
//#endregion
|
|
4973
4892
|
//#region ../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts
|
|
4974
4893
|
// ## Interfaces
|
|
4975
4894
|
/**
|
|
@@ -5050,7 +4969,8 @@ interface Node$1 {
|
|
|
5050
4969
|
* have a position.
|
|
5051
4970
|
*/
|
|
5052
4971
|
position?: Position | undefined;
|
|
5053
|
-
}
|
|
4972
|
+
}
|
|
4973
|
+
//#endregion
|
|
5054
4974
|
//#region ../../node_modules/.pnpm/@types+mdast@4.0.4/node_modules/@types/mdast/index.d.ts
|
|
5055
4975
|
// ## Enumeration
|
|
5056
4976
|
/**
|
|
@@ -5080,7 +5000,8 @@ type AlignType = "center" | "left" | "right" | null;
|
|
|
5080
5000
|
* content
|
|
5081
5001
|
* `'full'`: the reference is explicit, its identifier explicitly set
|
|
5082
5002
|
*/
|
|
5083
|
-
type ReferenceType = "shortcut" | "collapsed" | "full";
|
|
5003
|
+
type ReferenceType = "shortcut" | "collapsed" | "full";
|
|
5004
|
+
// ## Mixin
|
|
5084
5005
|
/**
|
|
5085
5006
|
* Node with a fallback.
|
|
5086
5007
|
*/
|
|
@@ -5148,7 +5069,8 @@ interface Resource {
|
|
|
5148
5069
|
* a tooltip.
|
|
5149
5070
|
*/
|
|
5150
5071
|
title?: string | null | undefined;
|
|
5151
|
-
}
|
|
5072
|
+
}
|
|
5073
|
+
// ## Interfaces
|
|
5152
5074
|
/**
|
|
5153
5075
|
* Info associated with mdast nodes by the ecosystem.
|
|
5154
5076
|
*
|
|
@@ -5167,7 +5089,8 @@ interface Resource {
|
|
|
5167
5089
|
* }
|
|
5168
5090
|
* ```
|
|
5169
5091
|
*/
|
|
5170
|
-
interface Data$1 extends Data$2 {}
|
|
5092
|
+
interface Data$1 extends Data$2 {}
|
|
5093
|
+
// ## Content maps
|
|
5171
5094
|
/**
|
|
5172
5095
|
* Union of registered mdast nodes that can occur where block content is
|
|
5173
5096
|
* expected.
|
|
@@ -5403,7 +5326,8 @@ type TableContent = TableContentMap[keyof TableContentMap];
|
|
|
5403
5326
|
*/
|
|
5404
5327
|
interface TableContentMap {
|
|
5405
5328
|
tableRow: TableRow;
|
|
5406
|
-
}
|
|
5329
|
+
}
|
|
5330
|
+
// ## Abstract nodes
|
|
5407
5331
|
/**
|
|
5408
5332
|
* Abstract mdast node that contains the smallest possible value.
|
|
5409
5333
|
*
|
|
@@ -5448,7 +5372,8 @@ interface Parent extends Node {
|
|
|
5448
5372
|
* List of children.
|
|
5449
5373
|
*/
|
|
5450
5374
|
children: RootContent[];
|
|
5451
|
-
}
|
|
5375
|
+
}
|
|
5376
|
+
// ## Concrete nodes
|
|
5452
5377
|
/**
|
|
5453
5378
|
* Markdown block quote.
|
|
5454
5379
|
*/
|
|
@@ -5994,7 +5919,8 @@ interface Yaml$1 extends Literal {
|
|
|
5994
5919
|
/**
|
|
5995
5920
|
* Info associated with mdast YAML nodes by the ecosystem.
|
|
5996
5921
|
*/
|
|
5997
|
-
interface YamlData extends Data$1 {}
|
|
5922
|
+
interface YamlData extends Data$1 {}
|
|
5923
|
+
//#endregion
|
|
5998
5924
|
//#region src/changesets/schemas/dependency-table.d.ts
|
|
5999
5925
|
/**
|
|
6000
5926
|
* Valid dependency table actions.
|
|
@@ -6137,10 +6063,15 @@ declare const VersionOrEmptySchema: Schema.filter<typeof Schema.String>;
|
|
|
6137
6063
|
* @public
|
|
6138
6064
|
*/
|
|
6139
6065
|
declare const DependencyTableRowSchema: Schema.Struct<{
|
|
6140
|
-
/** Package or toolchain name. */
|
|
6141
|
-
|
|
6142
|
-
|
|
6143
|
-
|
|
6066
|
+
/** Package or toolchain name. */
|
|
6067
|
+
dependency: Schema.filter<typeof Schema.String>;
|
|
6068
|
+
/** Dependency type. */
|
|
6069
|
+
type: Schema.Literal<["dependency", "devDependency", "peerDependency", "optionalDependency", "workspace", "config"]>;
|
|
6070
|
+
/** Change action. */
|
|
6071
|
+
action: Schema.Literal<["added", "updated", "removed"]>;
|
|
6072
|
+
/** Previous version (em dash for added). */
|
|
6073
|
+
from: Schema.filter<typeof Schema.String>;
|
|
6074
|
+
/** New version (em dash for removed). */
|
|
6144
6075
|
to: Schema.filter<typeof Schema.String>;
|
|
6145
6076
|
}>;
|
|
6146
6077
|
/**
|
|
@@ -6187,12 +6118,18 @@ interface DependencyTableRow extends Schema.Schema.Type<typeof DependencyTableRo
|
|
|
6187
6118
|
* @public
|
|
6188
6119
|
*/
|
|
6189
6120
|
declare const DependencyTableSchema: Schema.filter<Schema.Array$<Schema.Struct<{
|
|
6190
|
-
/** Package or toolchain name. */
|
|
6191
|
-
|
|
6192
|
-
|
|
6193
|
-
|
|
6121
|
+
/** Package or toolchain name. */
|
|
6122
|
+
dependency: Schema.filter<typeof Schema.String>;
|
|
6123
|
+
/** Dependency type. */
|
|
6124
|
+
type: Schema.Literal<["dependency", "devDependency", "peerDependency", "optionalDependency", "workspace", "config"]>;
|
|
6125
|
+
/** Change action. */
|
|
6126
|
+
action: Schema.Literal<["added", "updated", "removed"]>;
|
|
6127
|
+
/** Previous version (em dash for added). */
|
|
6128
|
+
from: Schema.filter<typeof Schema.String>;
|
|
6129
|
+
/** New version (em dash for removed). */
|
|
6194
6130
|
to: Schema.filter<typeof Schema.String>;
|
|
6195
|
-
}>>>;
|
|
6131
|
+
}>>>;
|
|
6132
|
+
//#endregion
|
|
6196
6133
|
//#region src/changesets/api/dependency-table.d.ts
|
|
6197
6134
|
/**
|
|
6198
6135
|
* Static class for dependency table manipulation.
|
|
@@ -6337,7 +6274,8 @@ declare class DependencyTable {
|
|
|
6337
6274
|
* @returns A new array with duplicates collapsed and rows sorted
|
|
6338
6275
|
*/
|
|
6339
6276
|
static aggregate(rows: DependencyTableRow[]): DependencyTableRow[];
|
|
6340
|
-
}
|
|
6277
|
+
}
|
|
6278
|
+
//#endregion
|
|
6341
6279
|
//#region src/changesets/api/linter.d.ts
|
|
6342
6280
|
/**
|
|
6343
6281
|
* Class-based API wrapper for changeset linting.
|
|
@@ -6541,7 +6479,8 @@ declare class ChangesetLinter {
|
|
|
6541
6479
|
* @returns Aggregated array of {@link LintMessage} diagnostics from all files
|
|
6542
6480
|
*/
|
|
6543
6481
|
static validate(dir: string): LintMessage[];
|
|
6544
|
-
}
|
|
6482
|
+
}
|
|
6483
|
+
//#endregion
|
|
6545
6484
|
//#region src/changesets/services/maintenance-reason.d.ts
|
|
6546
6485
|
/**
|
|
6547
6486
|
* A group co-member whose own changesets forced this release.
|
|
@@ -6549,7 +6488,9 @@ declare class ChangesetLinter {
|
|
|
6549
6488
|
* @public
|
|
6550
6489
|
*/
|
|
6551
6490
|
declare const MaintenanceTriggerSchema: Schema.Struct<{
|
|
6552
|
-
/** Package name of the triggering co-member. */
|
|
6491
|
+
/** Package name of the triggering co-member. */
|
|
6492
|
+
name: typeof Schema.String;
|
|
6493
|
+
/** The co-member's new version in the same release plan. */
|
|
6553
6494
|
version: typeof Schema.String;
|
|
6554
6495
|
}>;
|
|
6555
6496
|
/**
|
|
@@ -6564,9 +6505,13 @@ type MaintenanceTrigger = typeof MaintenanceTriggerSchema.Type;
|
|
|
6564
6505
|
* @public
|
|
6565
6506
|
*/
|
|
6566
6507
|
declare const MaintenanceReasonSchema: Schema.Struct<{
|
|
6567
|
-
/** Coupling that forced the release; `"unspecified"` when undetermined. */
|
|
6508
|
+
/** Coupling that forced the release; `"unspecified"` when undetermined. */
|
|
6509
|
+
kind: Schema.Literal<["fixed", "linked", "unspecified"]>;
|
|
6510
|
+
/** Triggering co-members; empty for `"unspecified"`. */
|
|
6568
6511
|
triggers: Schema.Array$<Schema.Struct<{
|
|
6569
|
-
/** Package name of the triggering co-member. */
|
|
6512
|
+
/** Package name of the triggering co-member. */
|
|
6513
|
+
name: typeof Schema.String;
|
|
6514
|
+
/** The co-member's new version in the same release plan. */
|
|
6570
6515
|
version: typeof Schema.String;
|
|
6571
6516
|
}>>;
|
|
6572
6517
|
}>;
|
|
@@ -6594,7 +6539,8 @@ type MaintenanceReason = typeof MaintenanceReasonSchema.Type;
|
|
|
6594
6539
|
*
|
|
6595
6540
|
* @public
|
|
6596
6541
|
*/
|
|
6597
|
-
declare function deriveMaintenanceReason(release: ComprehensiveRelease, plan: ReleasePlan, config: Config): MaintenanceReason | undefined;
|
|
6542
|
+
declare function deriveMaintenanceReason(release: ComprehensiveRelease, plan: ReleasePlan, config: Config): MaintenanceReason | undefined;
|
|
6543
|
+
//#endregion
|
|
6598
6544
|
//#region src/changesets/remark/plugins/maintenance-note.d.ts
|
|
6599
6545
|
/**
|
|
6600
6546
|
* Options for {@link MaintenanceNotePlugin}.
|
|
@@ -6607,7 +6553,8 @@ interface MaintenanceNoteOptions {
|
|
|
6607
6553
|
/** Why the package released with no changesets of its own. */
|
|
6608
6554
|
readonly reason: MaintenanceReason;
|
|
6609
6555
|
}
|
|
6610
|
-
declare const MaintenanceNotePlugin: Plugin$1<[MaintenanceNoteOptions], Root>;
|
|
6556
|
+
declare const MaintenanceNotePlugin: Plugin$1<[MaintenanceNoteOptions], Root>;
|
|
6557
|
+
//#endregion
|
|
6611
6558
|
//#region src/changesets/api/transformer.d.ts
|
|
6612
6559
|
/**
|
|
6613
6560
|
* Optional per-file behavior for {@link ChangelogTransformer}.
|
|
@@ -6719,7 +6666,8 @@ declare class ChangelogTransformer {
|
|
|
6719
6666
|
* @param options - Optional transformation options, including maintenance note configuration
|
|
6720
6667
|
*/
|
|
6721
6668
|
static transformFile(filePath: string, options?: TransformOptions): void;
|
|
6722
|
-
}
|
|
6669
|
+
}
|
|
6670
|
+
//#endregion
|
|
6723
6671
|
//#region src/changesets/changelog/index.d.ts
|
|
6724
6672
|
/**
|
|
6725
6673
|
* Changesets API `ChangelogFunctions` implementation.
|
|
@@ -6731,7 +6679,8 @@ declare class ChangelogTransformer {
|
|
|
6731
6679
|
*
|
|
6732
6680
|
* @internal
|
|
6733
6681
|
*/
|
|
6734
|
-
declare const changelogFunctions$1: ChangelogFunctions;
|
|
6682
|
+
declare const changelogFunctions$1: ChangelogFunctions;
|
|
6683
|
+
//#endregion
|
|
6735
6684
|
//#region src/changesets/errors.d.ts
|
|
6736
6685
|
/**
|
|
6737
6686
|
* Tagged errors for \@savvy-web/changesets.
|
|
@@ -6759,7 +6708,7 @@ declare const changelogFunctions$1: ChangelogFunctions; //#endregion
|
|
|
6759
6708
|
*
|
|
6760
6709
|
* @internal
|
|
6761
6710
|
*/
|
|
6762
|
-
declare const ChangesetValidationErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
6711
|
+
declare const ChangesetValidationErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
6763
6712
|
readonly _tag: "ChangesetValidationError";
|
|
6764
6713
|
} & Readonly<A>;
|
|
6765
6714
|
/**
|
|
@@ -6793,9 +6742,13 @@ declare const ChangesetValidationErrorBase: new <A extends Record<string, any> =
|
|
|
6793
6742
|
* @public
|
|
6794
6743
|
*/
|
|
6795
6744
|
declare class ChangesetValidationError extends ChangesetValidationErrorBase<{
|
|
6796
|
-
/** File path of the changeset that failed validation. */
|
|
6745
|
+
/** File path of the changeset that failed validation. */
|
|
6746
|
+
readonly file?: string | undefined;
|
|
6747
|
+
/** Individual validation issues found. */
|
|
6797
6748
|
readonly issues: ReadonlyArray<{
|
|
6798
|
-
/** JSON-path to the problematic field. */
|
|
6749
|
+
/** JSON-path to the problematic field. */
|
|
6750
|
+
readonly path: string;
|
|
6751
|
+
/** Human-readable description of the issue. */
|
|
6799
6752
|
readonly message: string;
|
|
6800
6753
|
}>;
|
|
6801
6754
|
}> {
|
|
@@ -6811,7 +6764,7 @@ declare class ChangesetValidationError extends ChangesetValidationErrorBase<{
|
|
|
6811
6764
|
*
|
|
6812
6765
|
* @internal
|
|
6813
6766
|
*/
|
|
6814
|
-
declare const GitHubApiErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
6767
|
+
declare const GitHubApiErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
6815
6768
|
readonly _tag: "GitHubApiError";
|
|
6816
6769
|
} & Readonly<A>;
|
|
6817
6770
|
/**
|
|
@@ -6847,8 +6800,11 @@ declare const GitHubApiErrorBase: new <A extends Record<string, any> = {}>(args:
|
|
|
6847
6800
|
* @public
|
|
6848
6801
|
*/
|
|
6849
6802
|
declare class GitHubApiError extends GitHubApiErrorBase<{
|
|
6850
|
-
/** The API operation that failed (e.g., `"getInfo"`). */
|
|
6851
|
-
readonly
|
|
6803
|
+
/** The API operation that failed (e.g., `"getInfo"`). */
|
|
6804
|
+
readonly operation: string;
|
|
6805
|
+
/** HTTP status code, if available. */
|
|
6806
|
+
readonly statusCode?: number | undefined;
|
|
6807
|
+
/** Human-readable failure reason. */
|
|
6852
6808
|
readonly reason: string;
|
|
6853
6809
|
}> {
|
|
6854
6810
|
get message(): string;
|
|
@@ -6867,7 +6823,7 @@ declare class GitHubApiError extends GitHubApiErrorBase<{
|
|
|
6867
6823
|
*
|
|
6868
6824
|
* @internal
|
|
6869
6825
|
*/
|
|
6870
|
-
declare const MarkdownParseErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
6826
|
+
declare const MarkdownParseErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
6871
6827
|
readonly _tag: "MarkdownParseError";
|
|
6872
6828
|
} & Readonly<A>;
|
|
6873
6829
|
/**
|
|
@@ -6898,9 +6854,13 @@ declare const MarkdownParseErrorBase: new <A extends Record<string, any> = {}>(a
|
|
|
6898
6854
|
* @public
|
|
6899
6855
|
*/
|
|
6900
6856
|
declare class MarkdownParseError extends MarkdownParseErrorBase<{
|
|
6901
|
-
/** Source file path, if known. */
|
|
6902
|
-
readonly
|
|
6903
|
-
|
|
6857
|
+
/** Source file path, if known. */
|
|
6858
|
+
readonly source?: string | undefined;
|
|
6859
|
+
/** Human-readable failure reason. */
|
|
6860
|
+
readonly reason: string;
|
|
6861
|
+
/** Line number where the error occurred (1-based). */
|
|
6862
|
+
readonly line?: number | undefined;
|
|
6863
|
+
/** Column number where the error occurred (1-based). */
|
|
6904
6864
|
readonly column?: number | undefined;
|
|
6905
6865
|
}> {
|
|
6906
6866
|
get message(): string;
|
|
@@ -6915,7 +6875,7 @@ declare class MarkdownParseError extends MarkdownParseErrorBase<{
|
|
|
6915
6875
|
*
|
|
6916
6876
|
* @internal
|
|
6917
6877
|
*/
|
|
6918
|
-
declare const ConfigurationErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
6878
|
+
declare const ConfigurationErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
6919
6879
|
readonly _tag: "ConfigurationError";
|
|
6920
6880
|
} & Readonly<A>;
|
|
6921
6881
|
/**
|
|
@@ -6946,7 +6906,9 @@ declare const ConfigurationErrorBase: new <A extends Record<string, any> = {}>(a
|
|
|
6946
6906
|
* @public
|
|
6947
6907
|
*/
|
|
6948
6908
|
declare class ConfigurationError extends ConfigurationErrorBase<{
|
|
6949
|
-
/** Configuration field that is invalid or missing. */
|
|
6909
|
+
/** Configuration field that is invalid or missing. */
|
|
6910
|
+
readonly field: string;
|
|
6911
|
+
/** Human-readable failure reason. */
|
|
6950
6912
|
readonly reason: string;
|
|
6951
6913
|
}> {
|
|
6952
6914
|
get message(): string;
|
|
@@ -6961,7 +6923,7 @@ declare class ConfigurationError extends ConfigurationErrorBase<{
|
|
|
6961
6923
|
*
|
|
6962
6924
|
* @internal
|
|
6963
6925
|
*/
|
|
6964
|
-
declare const VersionFileErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
6926
|
+
declare const VersionFileErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
6965
6927
|
readonly _tag: "VersionFileError";
|
|
6966
6928
|
} & Readonly<A>;
|
|
6967
6929
|
/**
|
|
@@ -6997,8 +6959,11 @@ declare const VersionFileErrorBase: new <A extends Record<string, any> = {}>(arg
|
|
|
6997
6959
|
* @public
|
|
6998
6960
|
*/
|
|
6999
6961
|
declare class VersionFileError extends VersionFileErrorBase<{
|
|
7000
|
-
/** Absolute path to the file that failed. */
|
|
7001
|
-
readonly
|
|
6962
|
+
/** Absolute path to the file that failed. */
|
|
6963
|
+
readonly filePath: string;
|
|
6964
|
+
/** JSONPath expression that failed, if applicable. */
|
|
6965
|
+
readonly jsonPath?: string | undefined;
|
|
6966
|
+
/** Human-readable failure reason. */
|
|
7002
6967
|
readonly reason: string;
|
|
7003
6968
|
}> {
|
|
7004
6969
|
get message(): string;
|
|
@@ -7012,7 +6977,7 @@ declare class VersionFileError extends VersionFileErrorBase<{
|
|
|
7012
6977
|
*
|
|
7013
6978
|
* @internal
|
|
7014
6979
|
*/
|
|
7015
|
-
declare const GitErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
6980
|
+
declare const GitErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
7016
6981
|
readonly _tag: "GitError";
|
|
7017
6982
|
} & Readonly<A>;
|
|
7018
6983
|
/**
|
|
@@ -7044,8 +7009,11 @@ declare const GitErrorBase: new <A extends Record<string, any> = {}>(args: impor
|
|
|
7044
7009
|
* @public
|
|
7045
7010
|
*/
|
|
7046
7011
|
declare class GitError extends GitErrorBase<{
|
|
7047
|
-
/** The git command that failed, including arguments. */
|
|
7048
|
-
readonly
|
|
7012
|
+
/** The git command that failed, including arguments. */
|
|
7013
|
+
readonly command: string;
|
|
7014
|
+
/** Working directory in which the command was invoked. */
|
|
7015
|
+
readonly cwd: string;
|
|
7016
|
+
/** Human-readable failure reason — typically the captured stderr or thrown error message. */
|
|
7049
7017
|
readonly reason: string;
|
|
7050
7018
|
}> {
|
|
7051
7019
|
get message(): string;
|
|
@@ -7059,7 +7027,7 @@ declare class GitError extends GitErrorBase<{
|
|
|
7059
7027
|
*
|
|
7060
7028
|
* @internal
|
|
7061
7029
|
*/
|
|
7062
|
-
declare const ChangesetIOErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
7030
|
+
declare const ChangesetIOErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
7063
7031
|
readonly _tag: "ChangesetIOError";
|
|
7064
7032
|
} & Readonly<A>;
|
|
7065
7033
|
/**
|
|
@@ -7091,8 +7059,11 @@ declare const ChangesetIOErrorBase: new <A extends Record<string, any> = {}>(arg
|
|
|
7091
7059
|
* @public
|
|
7092
7060
|
*/
|
|
7093
7061
|
declare class ChangesetIOError extends ChangesetIOErrorBase<{
|
|
7094
|
-
/** Absolute path of the file or directory the operation targeted. */
|
|
7095
|
-
readonly
|
|
7062
|
+
/** Absolute path of the file or directory the operation targeted. */
|
|
7063
|
+
readonly path: string;
|
|
7064
|
+
/** The failed operation. */
|
|
7065
|
+
readonly operation: "read" | "write" | "delete" | "list";
|
|
7066
|
+
/** Human-readable failure reason. */
|
|
7096
7067
|
readonly reason: string;
|
|
7097
7068
|
}> {
|
|
7098
7069
|
get message(): string;
|
|
@@ -7105,7 +7076,7 @@ declare class ChangesetIOError extends ChangesetIOErrorBase<{
|
|
|
7105
7076
|
*
|
|
7106
7077
|
* @internal
|
|
7107
7078
|
*/
|
|
7108
|
-
declare const ReleasePlanErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
7079
|
+
declare const ReleasePlanErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
7109
7080
|
readonly _tag: "ReleasePlanError";
|
|
7110
7081
|
} & Readonly<A>;
|
|
7111
7082
|
/**
|
|
@@ -7119,13 +7090,16 @@ declare const ReleasePlanErrorBase: new <A extends Record<string, any> = {}>(arg
|
|
|
7119
7090
|
* @public
|
|
7120
7091
|
*/
|
|
7121
7092
|
declare class ReleasePlanError extends ReleasePlanErrorBase<{
|
|
7122
|
-
/** The phase that failed. */
|
|
7093
|
+
/** The phase that failed. */
|
|
7094
|
+
readonly phase: "plan" | "preview" | "apply";
|
|
7095
|
+
/** Human-readable failure reason. */
|
|
7123
7096
|
readonly reason: string;
|
|
7124
7097
|
}> {
|
|
7125
7098
|
get message(): string;
|
|
7126
|
-
}
|
|
7099
|
+
}
|
|
7100
|
+
//#endregion
|
|
7127
7101
|
//#region src/errors/ChangesetConfigError.d.ts
|
|
7128
|
-
declare const ChangesetConfigError_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
7102
|
+
declare const ChangesetConfigError_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
7129
7103
|
readonly _tag: "ChangesetConfigError";
|
|
7130
7104
|
} & Readonly<A>;
|
|
7131
7105
|
/**
|
|
@@ -7143,7 +7117,8 @@ declare class ChangesetConfigError extends ChangesetConfigError_base<{
|
|
|
7143
7117
|
readonly reason: string;
|
|
7144
7118
|
}> {
|
|
7145
7119
|
get message(): string;
|
|
7146
|
-
}
|
|
7120
|
+
}
|
|
7121
|
+
//#endregion
|
|
7147
7122
|
//#region src/schemas/VersioningSchemas.d.ts
|
|
7148
7123
|
/**
|
|
7149
7124
|
* Standard changesets configuration matching the `@changesets/config@4.0.0-next.6` spec.
|
|
@@ -7223,17 +7198,6 @@ declare const SilkChangesetConfigFile: Schema.extend<Schema.Struct<{
|
|
|
7223
7198
|
* @public
|
|
7224
7199
|
*/
|
|
7225
7200
|
type SilkChangesetConfigFile = typeof SilkChangesetConfigFile.Type;
|
|
7226
|
-
/**
|
|
7227
|
-
* Versioning strategy classification for a workspace.
|
|
7228
|
-
*
|
|
7229
|
-
* @remarks
|
|
7230
|
-
* - `"single"` — one publishable package; a single version tag is used.
|
|
7231
|
-
* - `"fixed-group"` — all publishable packages are in the same changesets fixed group.
|
|
7232
|
-
* - `"independent"` — multiple publishable packages with independent version bumps.
|
|
7233
|
-
*
|
|
7234
|
-
* @since 0.1.0
|
|
7235
|
-
* @public
|
|
7236
|
-
*/
|
|
7237
7201
|
//#endregion
|
|
7238
7202
|
//#region src/services/ChangesetConfigReader.d.ts
|
|
7239
7203
|
declare const ChangesetConfigReader_base: Context.TagClass<ChangesetConfigReader, "@savvy-web/silk-effects/ChangesetConfigReader", {
|
|
@@ -7272,16 +7236,6 @@ declare const ChangesetConfigReader_base: Context.TagClass<ChangesetConfigReader
|
|
|
7272
7236
|
* @public
|
|
7273
7237
|
*/
|
|
7274
7238
|
declare class ChangesetConfigReader extends ChangesetConfigReader_base {}
|
|
7275
|
-
/**
|
|
7276
|
-
* Live implementation of {@link ChangesetConfigReader}.
|
|
7277
|
-
*
|
|
7278
|
-
* @remarks
|
|
7279
|
-
* Requires `FileSystem` from `@effect/platform`. Provide `NodeContext.layer` or
|
|
7280
|
-
* `BunContext.layer` to satisfy this dependency.
|
|
7281
|
-
*
|
|
7282
|
-
* @since 0.1.0
|
|
7283
|
-
* @public
|
|
7284
|
-
*/
|
|
7285
7239
|
//#endregion
|
|
7286
7240
|
//#region src/changesets/services/config-inspector.d.ts
|
|
7287
7241
|
/** A `versionFiles` entry expanded to its absolute target paths. @public */
|
|
@@ -7429,7 +7383,8 @@ declare const ConfigInspectorLive: Layer.Layer<ConfigInspector, never, Changeset
|
|
|
7429
7383
|
*
|
|
7430
7384
|
* @public
|
|
7431
7385
|
*/
|
|
7432
|
-
declare function makeConfigInspectorTest(fixed: InspectedConfig): Layer.Layer<ConfigInspector>;
|
|
7386
|
+
declare function makeConfigInspectorTest(fixed: InspectedConfig): Layer.Layer<ConfigInspector>;
|
|
7387
|
+
//#endregion
|
|
7433
7388
|
//#region src/changesets/services/branch-analyzer.d.ts
|
|
7434
7389
|
/** Git diff status as reported by `--name-status`. @public */
|
|
7435
7390
|
declare const FileStatusSchema: Schema.Literal<["added", "modified", "deleted", "renamed", "copied", "typechange", "unmerged", "unknown"]>;
|
|
@@ -7541,7 +7496,8 @@ declare const BranchAnalyzerLive: Layer.Layer<BranchAnalyzer, never, ConfigInspe
|
|
|
7541
7496
|
*
|
|
7542
7497
|
* @public
|
|
7543
7498
|
*/
|
|
7544
|
-
declare function makeBranchAnalyzerTest(fixed: BranchAnalysis): Layer.Layer<BranchAnalyzer>;
|
|
7499
|
+
declare function makeBranchAnalyzerTest(fixed: BranchAnalysis): Layer.Layer<BranchAnalyzer>;
|
|
7500
|
+
//#endregion
|
|
7545
7501
|
//#region src/changesets/schemas/options.d.ts
|
|
7546
7502
|
/**
|
|
7547
7503
|
* Schema for a GitHub repository in `owner/repo` format.
|
|
@@ -7614,10 +7570,15 @@ declare const RepoSchema: Schema.filter<typeof Schema.String>;
|
|
|
7614
7570
|
* @public
|
|
7615
7571
|
*/
|
|
7616
7572
|
declare const ChangesetOptionsSchema: Schema.filter<Schema.Struct<{
|
|
7617
|
-
/** GitHub repository in `owner/repo` format. */
|
|
7618
|
-
|
|
7619
|
-
|
|
7620
|
-
|
|
7573
|
+
/** GitHub repository in `owner/repo` format. */
|
|
7574
|
+
repo: Schema.filter<typeof Schema.String>;
|
|
7575
|
+
/** Whether to include commit hash links in output. */
|
|
7576
|
+
commitLinks: Schema.optional<typeof Schema.Boolean>;
|
|
7577
|
+
/** Whether to include pull request links in output. */
|
|
7578
|
+
prLinks: Schema.optional<typeof Schema.Boolean>;
|
|
7579
|
+
/** Whether to include issue reference links in output. */
|
|
7580
|
+
issueLinks: Schema.optional<typeof Schema.Boolean>;
|
|
7581
|
+
/** Custom issue reference prefixes (e.g., `["#", "GH-"]`). */
|
|
7621
7582
|
issuePrefixes: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
7622
7583
|
/**
|
|
7623
7584
|
* Per-package release surfaces. Each entry declares `additionalScopes`
|
|
@@ -7652,7 +7613,8 @@ declare const ChangesetOptionsSchema: Schema.filter<Schema.Struct<{
|
|
|
7652
7613
|
*
|
|
7653
7614
|
* @public
|
|
7654
7615
|
*/
|
|
7655
|
-
interface ChangesetOptions extends Schema.Schema.Type<typeof ChangesetOptionsSchema> {}
|
|
7616
|
+
interface ChangesetOptions extends Schema.Schema.Type<typeof ChangesetOptionsSchema> {}
|
|
7617
|
+
//#endregion
|
|
7656
7618
|
//#region src/changesets/vendor/github-info.d.ts
|
|
7657
7619
|
/**
|
|
7658
7620
|
* Structured result from the GitHub commit info API.
|
|
@@ -7687,11 +7649,15 @@ interface GitHubCommitInfo {
|
|
|
7687
7649
|
pull: number | null;
|
|
7688
7650
|
/** Markdown-formatted links for the commit, PR, and user. */
|
|
7689
7651
|
links: {
|
|
7690
|
-
/** Link to the commit on GitHub. */
|
|
7691
|
-
|
|
7652
|
+
/** Link to the commit on GitHub. */
|
|
7653
|
+
commit: string;
|
|
7654
|
+
/** Link to the associated pull request (null if none). */
|
|
7655
|
+
pull: string | null;
|
|
7656
|
+
/** Link to the author's GitHub profile (null if unknown). */
|
|
7692
7657
|
user: string | null;
|
|
7693
7658
|
};
|
|
7694
|
-
}
|
|
7659
|
+
}
|
|
7660
|
+
//#endregion
|
|
7695
7661
|
//#region src/changesets/services/github.d.ts
|
|
7696
7662
|
/**
|
|
7697
7663
|
* Service interface for GitHub API operations.
|
|
@@ -7859,7 +7825,8 @@ declare const GitHubLive: Layer.Layer<GitHubService, never, never>;
|
|
|
7859
7825
|
*
|
|
7860
7826
|
* @public
|
|
7861
7827
|
*/
|
|
7862
|
-
declare function makeGitHubTest(responses: Map<string, GitHubCommitInfo>): Layer.Layer<GitHubService>;
|
|
7828
|
+
declare function makeGitHubTest(responses: Map<string, GitHubCommitInfo>): Layer.Layer<GitHubService>;
|
|
7829
|
+
//#endregion
|
|
7863
7830
|
//#region src/changesets/services/markdown.d.ts
|
|
7864
7831
|
/**
|
|
7865
7832
|
* Service interface for markdown parsing and stringification.
|
|
@@ -7966,7 +7933,8 @@ declare class MarkdownService extends MarkdownServiceBase {}
|
|
|
7966
7933
|
*
|
|
7967
7934
|
* @public
|
|
7968
7935
|
*/
|
|
7969
|
-
declare const MarkdownLive: Layer.Layer<MarkdownService, never, never>;
|
|
7936
|
+
declare const MarkdownLive: Layer.Layer<MarkdownService, never, never>;
|
|
7937
|
+
//#endregion
|
|
7970
7938
|
//#region src/changesets/services/changelog.d.ts
|
|
7971
7939
|
/**
|
|
7972
7940
|
* Service interface for changelog formatting.
|
|
@@ -8046,7 +8014,8 @@ declare const ChangelogServiceBase: Context.TagClass<ChangelogService, "Changelo
|
|
|
8046
8014
|
*
|
|
8047
8015
|
* @public
|
|
8048
8016
|
*/
|
|
8049
|
-
declare class ChangelogService extends ChangelogServiceBase {}
|
|
8017
|
+
declare class ChangelogService extends ChangelogServiceBase {}
|
|
8018
|
+
//#endregion
|
|
8050
8019
|
//#region src/services/ChangesetConfig.d.ts
|
|
8051
8020
|
/**
|
|
8052
8021
|
* Changeset operating mode for a workspace root.
|
|
@@ -8080,16 +8049,6 @@ declare class ChangesetConfig extends ChangesetConfig_base {
|
|
|
8080
8049
|
*/
|
|
8081
8050
|
static matches(name: string, pattern: string): boolean;
|
|
8082
8051
|
}
|
|
8083
|
-
/**
|
|
8084
|
-
* Live {@link ChangesetConfig} reading via {@link ChangesetConfigReader}, cached per root.
|
|
8085
|
-
*
|
|
8086
|
-
* @remarks
|
|
8087
|
-
* Requires `ChangesetConfigReader` (which requires `FileSystem`). Provide
|
|
8088
|
-
* `ChangesetConfigReaderLive` + a platform layer (`NodeContext.layer`).
|
|
8089
|
-
*
|
|
8090
|
-
* @since 0.4.0
|
|
8091
|
-
* @public
|
|
8092
|
-
*/
|
|
8093
8052
|
//#endregion
|
|
8094
8053
|
//#region src/changesets/utils/dep-diff.d.ts
|
|
8095
8054
|
/**
|
|
@@ -8118,7 +8077,8 @@ interface WorkspaceDependencyDiff {
|
|
|
8118
8077
|
*
|
|
8119
8078
|
* @public
|
|
8120
8079
|
*/
|
|
8121
|
-
declare function computeWorkspaceDependencyDiffs(before: WorkspaceStateSnapshot, after: WorkspaceStateSnapshot): ReadonlyArray<WorkspaceDependencyDiff>;
|
|
8080
|
+
declare function computeWorkspaceDependencyDiffs(before: WorkspaceStateSnapshot, after: WorkspaceStateSnapshot): ReadonlyArray<WorkspaceDependencyDiff>;
|
|
8081
|
+
//#endregion
|
|
8122
8082
|
//#region src/changesets/services/deps-regen.d.ts
|
|
8123
8083
|
/**
|
|
8124
8084
|
* Strict detection of "pure dependency changesets" per the documented
|
|
@@ -8295,7 +8255,8 @@ declare const DepsRegenLive: Layer.Layer<DepsRegen, never, PointInTimeWorkspace
|
|
|
8295
8255
|
*
|
|
8296
8256
|
* @public
|
|
8297
8257
|
*/
|
|
8298
|
-
declare const DepsRegenDefault: Layer.Layer<DepsRegen, never, FileSystem.FileSystem | Path.Path | CommandExecutor.CommandExecutor>;
|
|
8258
|
+
declare const DepsRegenDefault: Layer.Layer<DepsRegen, never, FileSystem.FileSystem | Path.Path | CommandExecutor.CommandExecutor>;
|
|
8259
|
+
//#endregion
|
|
8299
8260
|
//#region src/changesets/schemas/release-plan.d.ts
|
|
8300
8261
|
/** A semantic-version bump level (the `"none"` plan type is filtered out upstream). @public */
|
|
8301
8262
|
declare const BumpTypeSchema: Schema.Literal<["major", "minor", "patch"]>;
|
|
@@ -8373,7 +8334,8 @@ declare const AppliedReleaseSchema: Schema.Struct<{
|
|
|
8373
8334
|
}>>;
|
|
8374
8335
|
}>;
|
|
8375
8336
|
/** Result of a native apply. @public */
|
|
8376
|
-
type AppliedRelease = Schema.Schema.Type<typeof AppliedReleaseSchema>;
|
|
8337
|
+
type AppliedRelease = Schema.Schema.Type<typeof AppliedReleaseSchema>;
|
|
8338
|
+
//#endregion
|
|
8377
8339
|
//#region src/changesets/services/release-planner.d.ts
|
|
8378
8340
|
/** The `ReleasePlanner` service surface. @public */
|
|
8379
8341
|
interface ReleasePlannerShape {
|
|
@@ -8414,7 +8376,8 @@ declare function makeReleasePlannerTest(fixed: {
|
|
|
8414
8376
|
readonly plan?: ReleasePlan;
|
|
8415
8377
|
readonly preview?: ChangesetPreview;
|
|
8416
8378
|
readonly apply?: AppliedRelease;
|
|
8417
|
-
}): Layer.Layer<ReleasePlanner>;
|
|
8379
|
+
}): Layer.Layer<ReleasePlanner>;
|
|
8380
|
+
//#endregion
|
|
8418
8381
|
//#region src/changesets/schemas/changeset.d.ts
|
|
8419
8382
|
/**
|
|
8420
8383
|
* Schema for a changeset summary (1--1000 characters).
|
|
@@ -8470,8 +8433,11 @@ declare const ChangesetSummarySchema: Schema.filter<Schema.filter<typeof Schema.
|
|
|
8470
8433
|
* @public
|
|
8471
8434
|
*/
|
|
8472
8435
|
declare const ChangesetSchema: Schema.Struct<{
|
|
8473
|
-
/** The changeset summary text. */
|
|
8474
|
-
|
|
8436
|
+
/** The changeset summary text. */
|
|
8437
|
+
summary: Schema.filter<Schema.filter<typeof Schema.String>>;
|
|
8438
|
+
/** Unique changeset identifier. */
|
|
8439
|
+
id: typeof Schema.String;
|
|
8440
|
+
/** Git commit hash associated with this changeset. */
|
|
8475
8441
|
commit: Schema.optional<Schema.filter<typeof Schema.String>>;
|
|
8476
8442
|
}>;
|
|
8477
8443
|
/**
|
|
@@ -8548,9 +8514,13 @@ type DependencyType = typeof DependencyTypeSchema.Type;
|
|
|
8548
8514
|
* @public
|
|
8549
8515
|
*/
|
|
8550
8516
|
declare const DependencyUpdateSchema: Schema.Struct<{
|
|
8551
|
-
/** Package name (must be non-empty). */
|
|
8552
|
-
|
|
8553
|
-
|
|
8517
|
+
/** Package name (must be non-empty). */
|
|
8518
|
+
name: Schema.refine<string, typeof Schema.String>;
|
|
8519
|
+
/** npm dependency type. */
|
|
8520
|
+
type: Schema.Literal<["dependencies", "devDependencies", "peerDependencies", "optionalDependencies"]>;
|
|
8521
|
+
/** Previous version string. */
|
|
8522
|
+
oldVersion: typeof Schema.String;
|
|
8523
|
+
/** New version string. */
|
|
8554
8524
|
newVersion: typeof Schema.String;
|
|
8555
8525
|
}>;
|
|
8556
8526
|
/**
|
|
@@ -8562,7 +8532,8 @@ declare const DependencyUpdateSchema: Schema.Struct<{
|
|
|
8562
8532
|
*
|
|
8563
8533
|
* @public
|
|
8564
8534
|
*/
|
|
8565
|
-
interface DependencyUpdate extends Schema.Schema.Type<typeof DependencyUpdateSchema> {}
|
|
8535
|
+
interface DependencyUpdate extends Schema.Schema.Type<typeof DependencyUpdateSchema> {}
|
|
8536
|
+
//#endregion
|
|
8566
8537
|
//#region src/changesets/schemas/git.d.ts
|
|
8567
8538
|
/**
|
|
8568
8539
|
* Schema for a git commit hash (at least 7 lowercase hex characters).
|
|
@@ -8628,7 +8599,8 @@ declare const VersionTypeSchema: Schema.Literal<["major", "minor", "patch", "non
|
|
|
8628
8599
|
*
|
|
8629
8600
|
* @public
|
|
8630
8601
|
*/
|
|
8631
|
-
type VersionType = typeof VersionTypeSchema.Type;
|
|
8602
|
+
type VersionType = typeof VersionTypeSchema.Type;
|
|
8603
|
+
//#endregion
|
|
8632
8604
|
//#region src/changesets/schemas/github.d.ts
|
|
8633
8605
|
/**
|
|
8634
8606
|
* Schema for a GitHub username.
|
|
@@ -8751,11 +8723,17 @@ declare const UrlOrMarkdownLinkSchema: Schema.filter<typeof Schema.String>;
|
|
|
8751
8723
|
* @public
|
|
8752
8724
|
*/
|
|
8753
8725
|
declare const GitHubInfoSchema: Schema.Struct<{
|
|
8754
|
-
/** GitHub username of the commit author. */
|
|
8755
|
-
|
|
8726
|
+
/** GitHub username of the commit author. */
|
|
8727
|
+
user: Schema.optional<Schema.filter<typeof Schema.String>>;
|
|
8728
|
+
/** Pull request number associated with the commit. */
|
|
8729
|
+
pull: Schema.optional<Schema.refine<number, Schema.filter<typeof Schema.Number>>>;
|
|
8730
|
+
/** Markdown-formatted links. */
|
|
8756
8731
|
links: Schema.Struct<{
|
|
8757
|
-
/** Link to the commit. */
|
|
8758
|
-
|
|
8732
|
+
/** Link to the commit. */
|
|
8733
|
+
commit: Schema.filter<typeof Schema.String>;
|
|
8734
|
+
/** Link to the associated pull request. */
|
|
8735
|
+
pull: Schema.optional<Schema.filter<typeof Schema.String>>;
|
|
8736
|
+
/** Link to the author's GitHub profile. */
|
|
8759
8737
|
user: Schema.optional<Schema.filter<typeof Schema.String>>;
|
|
8760
8738
|
}>;
|
|
8761
8739
|
}>;
|
|
@@ -8769,7 +8747,8 @@ declare const GitHubInfoSchema: Schema.Struct<{
|
|
|
8769
8747
|
*
|
|
8770
8748
|
* @public
|
|
8771
8749
|
*/
|
|
8772
|
-
interface GitHubInfo extends Schema.Schema.Type<typeof GitHubInfoSchema> {}
|
|
8750
|
+
interface GitHubInfo extends Schema.Schema.Type<typeof GitHubInfoSchema> {}
|
|
8751
|
+
//#endregion
|
|
8773
8752
|
//#region src/changesets/schemas/package-scope.d.ts
|
|
8774
8753
|
/**
|
|
8775
8754
|
* Schema for a single repo-relative glob pattern.
|
|
@@ -8832,7 +8811,9 @@ declare const GlobSchema: Schema.filter<Schema.filter<typeof Schema.String>>;
|
|
|
8832
8811
|
* @public
|
|
8833
8812
|
*/
|
|
8834
8813
|
declare const PackageScopeSchema: Schema.Struct<{
|
|
8835
|
-
/** Repo-relative globs naming files outside the package's workspace directory that belong to its release surface. */
|
|
8814
|
+
/** Repo-relative globs naming files outside the package's workspace directory that belong to its release surface. */
|
|
8815
|
+
additionalScopes: Schema.optional<Schema.Array$<Schema.filter<Schema.filter<typeof Schema.String>>>>;
|
|
8816
|
+
/** Files whose JSON fields are bumped in lockstep with this package's version. */
|
|
8836
8817
|
versionFiles: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
8837
8818
|
glob: Schema.filter<typeof Schema.String>;
|
|
8838
8819
|
paths: Schema.optional<Schema.Array$<Schema.filter<typeof Schema.String>>>;
|
|
@@ -8856,12 +8837,15 @@ interface PackageScope extends Schema.Schema.Type<typeof PackageScopeSchema> {}
|
|
|
8856
8837
|
* @public
|
|
8857
8838
|
*/
|
|
8858
8839
|
declare const PackagesRecordSchema: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
8859
|
-
/** Repo-relative globs naming files outside the package's workspace directory that belong to its release surface. */
|
|
8840
|
+
/** Repo-relative globs naming files outside the package's workspace directory that belong to its release surface. */
|
|
8841
|
+
additionalScopes: Schema.optional<Schema.Array$<Schema.filter<Schema.filter<typeof Schema.String>>>>;
|
|
8842
|
+
/** Files whose JSON fields are bumped in lockstep with this package's version. */
|
|
8860
8843
|
versionFiles: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
8861
8844
|
glob: Schema.filter<typeof Schema.String>;
|
|
8862
8845
|
paths: Schema.optional<Schema.Array$<Schema.filter<typeof Schema.String>>>;
|
|
8863
8846
|
}>>>;
|
|
8864
|
-
}>>;
|
|
8847
|
+
}>>;
|
|
8848
|
+
//#endregion
|
|
8865
8849
|
//#region src/changesets/schemas/primitives.d.ts
|
|
8866
8850
|
/**
|
|
8867
8851
|
* A non-empty string schema.
|
|
@@ -8915,7 +8899,8 @@ declare const NonEmptyString: Schema.filter<typeof Schema.String>;
|
|
|
8915
8899
|
*
|
|
8916
8900
|
* @public
|
|
8917
8901
|
*/
|
|
8918
|
-
declare const PositiveInteger: Schema.filter<Schema.filter<typeof Schema.Number>>;
|
|
8902
|
+
declare const PositiveInteger: Schema.filter<Schema.filter<typeof Schema.Number>>;
|
|
8903
|
+
//#endregion
|
|
8919
8904
|
//#region src/changesets/schemas/version-files.d.ts
|
|
8920
8905
|
/**
|
|
8921
8906
|
* Schema for a JSONPath expression starting with `$.`.
|
|
@@ -8972,7 +8957,9 @@ declare const JsonPathSchema: Schema.filter<typeof Schema.String>;
|
|
|
8972
8957
|
* @public
|
|
8973
8958
|
*/
|
|
8974
8959
|
declare const VersionFileConfigSchema: Schema.Struct<{
|
|
8975
|
-
/** Glob pattern to match JSON files. */
|
|
8960
|
+
/** Glob pattern to match JSON files. */
|
|
8961
|
+
glob: Schema.filter<typeof Schema.String>;
|
|
8962
|
+
/** JSONPath expressions to locate version fields. Defaults to `["$.version"]`. */
|
|
8976
8963
|
paths: Schema.optional<Schema.Array$<Schema.filter<typeof Schema.String>>>;
|
|
8977
8964
|
}>;
|
|
8978
8965
|
/**
|
|
@@ -8987,7 +8974,9 @@ interface VersionFileConfig extends Schema.Schema.Type<typeof VersionFileConfigS
|
|
|
8987
8974
|
* @public
|
|
8988
8975
|
*/
|
|
8989
8976
|
declare const VersionFilesSchema: Schema.Array$<Schema.Struct<{
|
|
8990
|
-
/** Glob pattern to match JSON files. */
|
|
8977
|
+
/** Glob pattern to match JSON files. */
|
|
8978
|
+
glob: Schema.filter<typeof Schema.String>;
|
|
8979
|
+
/** JSONPath expressions to locate version fields. Defaults to `["$.version"]`. */
|
|
8991
8980
|
paths: Schema.optional<Schema.Array$<Schema.filter<typeof Schema.String>>>;
|
|
8992
8981
|
}>>;
|
|
8993
8982
|
/**
|
|
@@ -9025,8 +9014,11 @@ declare const VersionFilesSchema: Schema.Array$<Schema.Struct<{
|
|
|
9025
9014
|
* @public
|
|
9026
9015
|
*/
|
|
9027
9016
|
declare const LegacyVersionFileConfigSchema: Schema.Struct<{
|
|
9028
|
-
/** Glob pattern to match JSON files. */
|
|
9029
|
-
|
|
9017
|
+
/** Glob pattern to match JSON files. */
|
|
9018
|
+
glob: Schema.filter<typeof Schema.String>;
|
|
9019
|
+
/** JSONPath expressions to locate version fields. Defaults to `["$.version"]`. */
|
|
9020
|
+
paths: Schema.optional<Schema.Array$<Schema.filter<typeof Schema.String>>>;
|
|
9021
|
+
/** Workspace package name to source the version from, bypassing path-based resolution. */
|
|
9030
9022
|
package: Schema.optional<Schema.filter<typeof Schema.String>>;
|
|
9031
9023
|
}>;
|
|
9032
9024
|
/**
|
|
@@ -9046,10 +9038,14 @@ interface LegacyVersionFileConfig extends Schema.Schema.Type<typeof LegacyVersio
|
|
|
9046
9038
|
* @public
|
|
9047
9039
|
*/
|
|
9048
9040
|
declare const LegacyVersionFilesSchema: Schema.Array$<Schema.Struct<{
|
|
9049
|
-
/** Glob pattern to match JSON files. */
|
|
9050
|
-
|
|
9041
|
+
/** Glob pattern to match JSON files. */
|
|
9042
|
+
glob: Schema.filter<typeof Schema.String>;
|
|
9043
|
+
/** JSONPath expressions to locate version fields. Defaults to `["$.version"]`. */
|
|
9044
|
+
paths: Schema.optional<Schema.Array$<Schema.filter<typeof Schema.String>>>;
|
|
9045
|
+
/** Workspace package name to source the version from, bypassing path-based resolution. */
|
|
9051
9046
|
package: Schema.optional<Schema.filter<typeof Schema.String>>;
|
|
9052
|
-
}>>;
|
|
9047
|
+
}>>;
|
|
9048
|
+
//#endregion
|
|
9053
9049
|
//#region src/changesets/utils/dependency-table.d.ts
|
|
9054
9050
|
/**
|
|
9055
9051
|
* Serialize dependency table rows to a markdown table string.
|
|
@@ -9076,7 +9072,8 @@ declare const LegacyVersionFilesSchema: Schema.Array$<Schema.Struct<{
|
|
|
9076
9072
|
*
|
|
9077
9073
|
* @internal
|
|
9078
9074
|
*/
|
|
9079
|
-
declare function serializeDependencyTableToMarkdown(rows: DependencyTableRow[]): string;
|
|
9075
|
+
declare function serializeDependencyTableToMarkdown(rows: DependencyTableRow[]): string;
|
|
9076
|
+
//#endregion
|
|
9080
9077
|
//#region src/changesets/utils/git.d.ts
|
|
9081
9078
|
/**
|
|
9082
9079
|
* Run `git merge-base <base> HEAD`, returning the SHA. Errors propagate
|
|
@@ -9084,7 +9081,8 @@ declare function serializeDependencyTableToMarkdown(rows: DependencyTableRow[]):
|
|
|
9084
9081
|
*
|
|
9085
9082
|
* @internal
|
|
9086
9083
|
*/
|
|
9087
|
-
declare function gitMergeBase(cwd: string, base: string): Effect.Effect<string, GitError>;
|
|
9084
|
+
declare function gitMergeBase(cwd: string, base: string): Effect.Effect<string, GitError>;
|
|
9085
|
+
//#endregion
|
|
9088
9086
|
//#region src/changesets/utils/publishability.d.ts
|
|
9089
9087
|
/**
|
|
9090
9088
|
* Compute the set of currently-publishable workspace package names.
|
|
@@ -9110,7 +9108,8 @@ declare function gitMergeBase(cwd: string, base: string): Effect.Effect<string,
|
|
|
9110
9108
|
*
|
|
9111
9109
|
* @public
|
|
9112
9110
|
*/
|
|
9113
|
-
declare function listPublishablePackageNames(packages: ReadonlyArray<WorkspacePackage>, root: string): Effect.Effect<ReadonlySet<string>, never, PublishabilityDetector>;
|
|
9111
|
+
declare function listPublishablePackageNames(packages: ReadonlyArray<WorkspacePackage>, root: string): Effect.Effect<ReadonlySet<string>, never, PublishabilityDetector>;
|
|
9112
|
+
//#endregion
|
|
9114
9113
|
//#region src/changesets/utils/version-files.d.ts
|
|
9115
9114
|
/**
|
|
9116
9115
|
* Result of a single version file update.
|
|
@@ -9368,12 +9367,14 @@ declare class VersionFiles {
|
|
|
9368
9367
|
* @internal
|
|
9369
9368
|
*/
|
|
9370
9369
|
static processResolvedVersionFiles(scopes: ReadonlyArray<ResolvedPackageScope>, dryRun?: boolean): VersionFileUpdate[];
|
|
9371
|
-
}
|
|
9370
|
+
}
|
|
9371
|
+
//#endregion
|
|
9372
9372
|
//#region ../../node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types/index.d.ts
|
|
9373
9373
|
/**
|
|
9374
9374
|
* Enum of allowed token types.
|
|
9375
9375
|
*/
|
|
9376
|
-
type TokenType = keyof TokenTypeMap;
|
|
9376
|
+
type TokenType = keyof TokenTypeMap;
|
|
9377
|
+
// Note: when changing the next interface, you likely also have to change
|
|
9377
9378
|
// `micromark-util-symbol`.
|
|
9378
9379
|
/**
|
|
9379
9380
|
* Map of allowed token types.
|
|
@@ -9485,7 +9486,8 @@ interface TokenTypeMap {
|
|
|
9485
9486
|
chunkFlow: 'chunkFlow';
|
|
9486
9487
|
chunkText: 'chunkText';
|
|
9487
9488
|
chunkString: 'chunkString';
|
|
9488
|
-
}
|
|
9489
|
+
}
|
|
9490
|
+
//#endregion
|
|
9489
9491
|
//#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/markdownlint.d.mts
|
|
9490
9492
|
/**
|
|
9491
9493
|
* Function to implement rule logic.
|
|
@@ -9757,9 +9759,11 @@ type Rule$2 = {
|
|
|
9757
9759
|
/**
|
|
9758
9760
|
* Rule configuration.
|
|
9759
9761
|
*/
|
|
9760
|
-
type RuleConfiguration = boolean | any;
|
|
9762
|
+
type RuleConfiguration = boolean | any;
|
|
9763
|
+
//#endregion
|
|
9761
9764
|
//#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/exports.d.mts
|
|
9762
|
-
type Rule$1 = Rule$2;
|
|
9765
|
+
type Rule$1 = Rule$2;
|
|
9766
|
+
//#endregion
|
|
9763
9767
|
//#region src/changesets/markdownlint/rules/content-structure.d.ts
|
|
9764
9768
|
/**
|
|
9765
9769
|
* markdownlint rule: `changeset-content-structure` (CSH003).
|
|
@@ -9791,14 +9795,16 @@ type Rule$1 = Rule$2; //#endregion
|
|
|
9791
9795
|
*
|
|
9792
9796
|
* @public
|
|
9793
9797
|
*/
|
|
9794
|
-
declare const ContentStructureRule$1: Rule$1;
|
|
9798
|
+
declare const ContentStructureRule$1: Rule$1;
|
|
9799
|
+
//#endregion
|
|
9795
9800
|
//#region src/changesets/markdownlint/rules/dependency-table-format.d.ts
|
|
9796
9801
|
/**
|
|
9797
9802
|
* The markdownlint `Rule` object for CSH005 (`changeset-dependency-table-format`).
|
|
9798
9803
|
*
|
|
9799
9804
|
* @public
|
|
9800
9805
|
*/
|
|
9801
|
-
declare const DependencyTableFormatRule$1: Rule$1;
|
|
9806
|
+
declare const DependencyTableFormatRule$1: Rule$1;
|
|
9807
|
+
//#endregion
|
|
9802
9808
|
//#region src/changesets/markdownlint/rules/heading-hierarchy.d.ts
|
|
9803
9809
|
/**
|
|
9804
9810
|
* markdownlint rule: `changeset-heading-hierarchy` (CSH001).
|
|
@@ -9829,7 +9835,8 @@ declare const DependencyTableFormatRule$1: Rule$1; //#endregion
|
|
|
9829
9835
|
*
|
|
9830
9836
|
* @public
|
|
9831
9837
|
*/
|
|
9832
|
-
declare const HeadingHierarchyRule$1: Rule$1;
|
|
9838
|
+
declare const HeadingHierarchyRule$1: Rule$1;
|
|
9839
|
+
//#endregion
|
|
9833
9840
|
//#region src/changesets/markdownlint/rules/required-sections.d.ts
|
|
9834
9841
|
/**
|
|
9835
9842
|
* markdownlint rule: `changeset-required-sections` (CSH002).
|
|
@@ -9860,7 +9867,8 @@ declare const HeadingHierarchyRule$1: Rule$1; //#endregion
|
|
|
9860
9867
|
*
|
|
9861
9868
|
* @public
|
|
9862
9869
|
*/
|
|
9863
|
-
declare const RequiredSectionsRule$1: Rule$1;
|
|
9870
|
+
declare const RequiredSectionsRule$1: Rule$1;
|
|
9871
|
+
//#endregion
|
|
9864
9872
|
//#region src/changesets/markdownlint/rules/uncategorized-content.d.ts
|
|
9865
9873
|
/**
|
|
9866
9874
|
* markdownlint rule: `changeset-uncategorized-content` (CSH004).
|
|
@@ -9892,7 +9900,8 @@ declare const RequiredSectionsRule$1: Rule$1; //#endregion
|
|
|
9892
9900
|
*
|
|
9893
9901
|
* @public
|
|
9894
9902
|
*/
|
|
9895
|
-
declare const UncategorizedContentRule$1: Rule$1;
|
|
9903
|
+
declare const UncategorizedContentRule$1: Rule$1;
|
|
9904
|
+
//#endregion
|
|
9896
9905
|
//#region src/changesets/markdownlint/index.d.ts
|
|
9897
9906
|
/**
|
|
9898
9907
|
* All changeset rules as an array for markdownlint-cli2 `customRules` config.
|
|
@@ -9906,21 +9915,29 @@ declare const UncategorizedContentRule$1: Rule$1; //#endregion
|
|
|
9906
9915
|
*
|
|
9907
9916
|
* @public
|
|
9908
9917
|
*/
|
|
9909
|
-
declare const SilkChangesetsRules: Rule$1[];
|
|
9918
|
+
declare const SilkChangesetsRules: Rule$1[];
|
|
9919
|
+
//#endregion
|
|
9910
9920
|
//#region src/changesets/remark/plugins/aggregate-dependency-tables.d.ts
|
|
9911
|
-
declare const AggregateDependencyTablesPlugin: Plugin$1<[], Root>;
|
|
9921
|
+
declare const AggregateDependencyTablesPlugin: Plugin$1<[], Root>;
|
|
9922
|
+
//#endregion
|
|
9912
9923
|
//#region src/changesets/remark/plugins/contributor-footnotes.d.ts
|
|
9913
|
-
declare const ContributorFootnotesPlugin: Plugin$1<[], Root>;
|
|
9924
|
+
declare const ContributorFootnotesPlugin: Plugin$1<[], Root>;
|
|
9925
|
+
//#endregion
|
|
9914
9926
|
//#region src/changesets/remark/plugins/deduplicate-items.d.ts
|
|
9915
|
-
declare const DeduplicateItemsPlugin: Plugin$1<[], Root>;
|
|
9927
|
+
declare const DeduplicateItemsPlugin: Plugin$1<[], Root>;
|
|
9928
|
+
//#endregion
|
|
9916
9929
|
//#region src/changesets/remark/plugins/issue-link-refs.d.ts
|
|
9917
|
-
declare const IssueLinkRefsPlugin: Plugin$1<[], Root>;
|
|
9930
|
+
declare const IssueLinkRefsPlugin: Plugin$1<[], Root>;
|
|
9931
|
+
//#endregion
|
|
9918
9932
|
//#region src/changesets/remark/plugins/merge-sections.d.ts
|
|
9919
|
-
declare const MergeSectionsPlugin: Plugin$1<[], Root>;
|
|
9933
|
+
declare const MergeSectionsPlugin: Plugin$1<[], Root>;
|
|
9934
|
+
//#endregion
|
|
9920
9935
|
//#region src/changesets/remark/plugins/normalize-format.d.ts
|
|
9921
|
-
declare const NormalizeFormatPlugin: Plugin$1<[], Root>;
|
|
9936
|
+
declare const NormalizeFormatPlugin: Plugin$1<[], Root>;
|
|
9937
|
+
//#endregion
|
|
9922
9938
|
//#region src/changesets/remark/plugins/reorder-sections.d.ts
|
|
9923
|
-
declare const ReorderSectionsPlugin: Plugin$1<[], Root>;
|
|
9939
|
+
declare const ReorderSectionsPlugin: Plugin$1<[], Root>;
|
|
9940
|
+
//#endregion
|
|
9924
9941
|
//#region src/changesets/remark/presets.d.ts
|
|
9925
9942
|
/**
|
|
9926
9943
|
* Remark preset collections for changeset lint rules and transform plugins.
|
|
@@ -10009,32 +10026,25 @@ declare const SilkChangesetPreset: readonly [Plugin<Root, unknown>, Plugin<Root,
|
|
|
10009
10026
|
*
|
|
10010
10027
|
* @public
|
|
10011
10028
|
*/
|
|
10012
|
-
declare const SilkChangesetTransformPreset: readonly [Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>];
|
|
10029
|
+
declare const SilkChangesetTransformPreset: readonly [Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>, Plugin$1<[], Root>];
|
|
10030
|
+
//#endregion
|
|
10013
10031
|
//#region src/changesets/remark/rules/content-structure.d.ts
|
|
10014
|
-
declare const ContentStructureRule: Plugin<Root, unknown>;
|
|
10032
|
+
declare const ContentStructureRule: Plugin<Root, unknown>;
|
|
10033
|
+
//#endregion
|
|
10015
10034
|
//#region src/changesets/remark/rules/dependency-table-format.d.ts
|
|
10016
|
-
declare const DependencyTableFormatRule: Plugin<Root, unknown>;
|
|
10035
|
+
declare const DependencyTableFormatRule: Plugin<Root, unknown>;
|
|
10036
|
+
//#endregion
|
|
10017
10037
|
//#region src/changesets/remark/rules/heading-hierarchy.d.ts
|
|
10018
|
-
declare const HeadingHierarchyRule: Plugin<Root, unknown>;
|
|
10038
|
+
declare const HeadingHierarchyRule: Plugin<Root, unknown>;
|
|
10039
|
+
//#endregion
|
|
10019
10040
|
//#region src/changesets/remark/rules/required-sections.d.ts
|
|
10020
|
-
declare const RequiredSectionsRule: Plugin<Root, unknown>;
|
|
10041
|
+
declare const RequiredSectionsRule: Plugin<Root, unknown>;
|
|
10042
|
+
//#endregion
|
|
10021
10043
|
//#region src/changesets/remark/rules/uncategorized-content.d.ts
|
|
10022
10044
|
declare const UncategorizedContentRule: Plugin<Root, unknown>;
|
|
10023
10045
|
declare namespace index_d_exports {
|
|
10024
10046
|
export { AggregateDependencyTablesPlugin, AppliedRelease, AppliedReleaseEntrySchema, AppliedReleaseSchema, BranchAnalysis, BranchAnalysisSchema, BranchAnalyzer, BranchAnalyzerBase, BranchAnalyzerLive, BranchAnalyzerShape, BranchFileEntry, BranchFileEntrySchema, BumpType, BumpTypeSchema, Categories, Changelog, ChangelogService, ChangelogServiceBase, ChangelogServiceShape, ChangelogTransformer, Changeset, ChangesetIOError, ChangesetIOErrorBase, ChangesetLinter, ChangesetOptions, ChangesetOptionsSchema, ChangesetPreview, ChangesetPreviewSchema, ChangesetSchema, ChangesetSummarySchema, ChangesetValidationError, ChangesetValidationErrorBase, Classification, ClassificationReason, ClassificationReasonSchema, ClassificationSchema, CommitHashSchema, ConfigInspector, ConfigInspectorBase, ConfigInspectorLive, ConfigInspectorShape, ConfigurationError, ConfigurationErrorBase, ContentStructureRule, ContributorFootnotesPlugin, DeduplicateItemsPlugin, DependencyAction, DependencyActionSchema, DependencyTable, DependencyTableFormatRule, DependencyTableRow, DependencyTableRowSchema, DependencyTableSchema, DependencyTableType, DependencyTableTypeSchema, DependencyType, DependencyTypeSchema, DependencyUpdate, DependencyUpdateSchema, DepsRegen, DepsRegenBase, DepsRegenDefault, DepsRegenLive, DepsRegenOptions, DepsRegenShape, FileStatus, FileStatusSchema, GitError, GitErrorBase, GitHubApiError, GitHubApiErrorBase, GitHubCommitInfo, GitHubInfo, GitHubInfoSchema, GitHubLive, GitHubService, GitHubServiceBase, GitHubServiceShape, GlobSchema, HeadingHierarchyRule, InspectedConfig, InspectedConfigSchema, IssueLinkRefsPlugin, IssueNumberSchema, JsonPathSchema, LegacyVersionFileConfig, LegacyVersionFileConfigSchema, LegacyVersionFilesSchema, LintMessage, MaintenanceNoteOptions, MaintenanceNotePlugin, MaintenanceReason, MaintenanceReasonSchema, MaintenanceTrigger, MaintenanceTriggerSchema, MarkdownLive, MarkdownParseError, MarkdownParseErrorBase, MarkdownService, MarkdownServiceBase, MarkdownServiceShape, ContentStructureRule$1 as MarkdownlintContentStructureRule, DependencyTableFormatRule$1 as MarkdownlintDependencyTableFormatRule, HeadingHierarchyRule$1 as MarkdownlintHeadingHierarchyRule, RequiredSectionsRule$1 as MarkdownlintRequiredSectionsRule, UncategorizedContentRule$1 as MarkdownlintUncategorizedContentRule, MergeSectionsPlugin, NonEmptyString, NormalizeFormatPlugin, PackageScope, PackageScopeSchema, PackagesRecordSchema, PendingChangeset, PendingChangesetSchema, PositiveInteger, PreviewRelease, PreviewReleaseSchema, RegenPlan, RegenResult, ReleasePlanError, ReleasePlanErrorBase, ReleasePlanner, ReleasePlannerBase, ReleasePlannerLive, ReleasePlannerShape, ReorderSectionsPlugin, RepoSchema, RequiredSectionsRule, ResolvedPackageScope, ResolvedPackageScopeSchema, ResolvedVersionFile, ResolvedVersionFileSchema, SectionCategory, SectionCategorySchema, SilkChangesetPreset, SilkChangesetTransformPreset, SilkChangesetsRules, TransformOptions, UncategorizedContentRule, UrlOrMarkdownLinkSchema, UsernameSchema, VERSION_RE, VersionFileConfig, VersionFileConfigSchema, VersionFileError, VersionFileErrorBase, VersionFileUpdate, VersionFileUpdateRecordSchema, VersionFiles, VersionFilesSchema, VersionOrEmptySchema, VersionType, VersionTypeSchema, WorkspaceDependencyDiff, WorkspaceVersion, changelogFunctions$1 as changelogFunctions, computeWorkspaceDependencyDiffs, deriveMaintenanceReason, gitMergeBase, isPureDependencyChangeset, listPublishablePackageNames, makeBranchAnalyzerTest, makeConfigInspectorTest, makeGitHubTest, makeReleasePlannerTest, serializeDependencyTableToMarkdown };
|
|
10025
|
-
}
|
|
10026
|
-
//#region src/commitlint/config/schema.d.ts
|
|
10027
|
-
/**
|
|
10028
|
-
* Release format type for the release commit type.
|
|
10029
|
-
*
|
|
10030
|
-
* @remarks
|
|
10031
|
-
* Determines how release commits are formatted based on versioning strategy:
|
|
10032
|
-
* - `semver`: `release: v1.2.3` (for single/fixed-group versioning)
|
|
10033
|
-
* - `packages`: `release: version packages` (for independent versioning)
|
|
10034
|
-
* - `scoped`: `release(pkg): v1.2.3` (for per-package releases)
|
|
10035
|
-
*
|
|
10036
|
-
* @public
|
|
10037
|
-
*/
|
|
10047
|
+
}
|
|
10038
10048
|
//#endregion
|
|
10039
10049
|
//#region src/changesets/changelog.d.ts
|
|
10040
10050
|
declare const changelogFunctions: typeof index_d_exports.changelogFunctions;
|