@savvy-web/silk-effects 5.1.1 → 5.2.0
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/README.md +22 -22
- package/changesets/api/transformer.js +2 -1
- package/changesets/changelog/getDependencyReleaseLine.js +24 -5
- package/changesets/changelog/getReleaseLine.js +7 -4
- package/changesets/changelog/index.js +8 -6
- package/changesets/index.js +6 -11
- package/changesets/services/branch-analyzer.js +20 -19
- package/changesets/services/changelog.js +1 -1
- package/changesets/services/config-inspector.js +17 -17
- package/changesets/services/deps-regen.js +36 -34
- package/changesets/services/github.js +39 -40
- package/changesets/services/maintenance-reason.js +5 -1
- package/changesets/services/release-planner.js +7 -6
- package/changesets/utils/dependency-table.js +2 -1
- package/changesets/utils/jsonpath.js +5 -7
- package/changesets/utils/publishability.js +2 -2
- package/commitlint/detection/dco.js +2 -1
- package/commitlint/index.js +2 -1
- package/index.d.ts +254 -218
- package/index.js +7 -7
- package/lint/handlers/PnpmWorkspace.js +2 -1
- package/lint/handlers/Yaml.js +8 -4
- package/package.json +7 -7
- package/repos/index.js +3 -5
- package/repos/services/config-store.js +68 -67
- package/repos/services/manager.js +259 -258
- package/services/BiomeSchemaSync.js +65 -64
- package/services/ChangesetConfig.js +50 -50
- package/services/ChangesetConfigReader.js +59 -58
- package/services/ConfigDiscovery.js +42 -41
- package/services/SilkPublishability.js +54 -53
- package/services/SilkWorkspaceAnalyzer.js +110 -109
- package/turbo/index.js +2 -3
- package/turbo/services/TurboInspector.js +80 -79
package/index.d.ts
CHANGED
|
@@ -289,7 +289,7 @@ declare class Categories {
|
|
|
289
289
|
static isValidHeading(heading: string): boolean;
|
|
290
290
|
}
|
|
291
291
|
//#endregion
|
|
292
|
-
//#region ../../node_modules/.pnpm/@changesets+types@7.0.0-next.
|
|
292
|
+
//#region ../../node_modules/.pnpm/@changesets+types@7.0.0-next.8/node_modules/@changesets/types/dist/index.d.mts
|
|
293
293
|
//#region src/index.d.ts
|
|
294
294
|
type MaybePromise<T> = T | Promise<T>;
|
|
295
295
|
type VersionType$1 = "major" | "minor" | "patch" | "none";
|
|
@@ -298,13 +298,34 @@ type Release = {
|
|
|
298
298
|
name: string;
|
|
299
299
|
type: VersionType$1;
|
|
300
300
|
};
|
|
301
|
-
|
|
301
|
+
interface ComprehensiveReleaseBase {
|
|
302
302
|
name: string;
|
|
303
|
-
type:
|
|
303
|
+
type: "major" | "minor" | "patch" | "none";
|
|
304
|
+
changesets: string[];
|
|
305
|
+
oldVersion: string | undefined;
|
|
306
|
+
newVersion: string | undefined;
|
|
307
|
+
}
|
|
308
|
+
interface ComprehensiveMajorRelease extends ComprehensiveReleaseBase {
|
|
309
|
+
type: "major";
|
|
304
310
|
oldVersion: string;
|
|
305
311
|
newVersion: string;
|
|
306
|
-
|
|
307
|
-
|
|
312
|
+
}
|
|
313
|
+
interface ComprehensiveMinorRelease extends ComprehensiveReleaseBase {
|
|
314
|
+
type: "minor";
|
|
315
|
+
oldVersion: string;
|
|
316
|
+
newVersion: string;
|
|
317
|
+
}
|
|
318
|
+
interface ComprehensivePatchRelease extends ComprehensiveReleaseBase {
|
|
319
|
+
type: "patch";
|
|
320
|
+
oldVersion: string;
|
|
321
|
+
newVersion: string;
|
|
322
|
+
}
|
|
323
|
+
interface ComprehensiveNoneRelease extends ComprehensiveReleaseBase {
|
|
324
|
+
type: "none";
|
|
325
|
+
oldVersion: string | undefined;
|
|
326
|
+
newVersion: string | undefined;
|
|
327
|
+
}
|
|
328
|
+
type ComprehensiveRelease = ComprehensiveMajorRelease | ComprehensiveMinorRelease | ComprehensivePatchRelease | ComprehensiveNoneRelease;
|
|
308
329
|
type Changeset$1 = {
|
|
309
330
|
summary: string;
|
|
310
331
|
releases: Array<Release>;
|
|
@@ -2163,6 +2184,10 @@ type MaintenanceReason = typeof MaintenanceReasonSchema.Type;
|
|
|
2163
2184
|
* will not match here; the release then degrades gracefully to the
|
|
2164
2185
|
* `"unspecified"` fallback sentence instead of naming its triggers.
|
|
2165
2186
|
*
|
|
2187
|
+
* Co-members releasing as `type: "none"` are never triggers — they carry no
|
|
2188
|
+
* version bump (and, per `@changesets/types`, no guaranteed `newVersion`), so
|
|
2189
|
+
* naming one would print an unchanged version as the cause of the release.
|
|
2190
|
+
*
|
|
2166
2191
|
* @public
|
|
2167
2192
|
*/
|
|
2168
2193
|
declare function deriveMaintenanceReason(release: ComprehensiveRelease, plan: ReleasePlan, config: Config): MaintenanceReason | undefined;
|
|
@@ -2855,7 +2880,7 @@ declare const ChangesetConfigReader_base: Context.ServiceClass<ChangesetConfigRe
|
|
|
2855
2880
|
* const reader = yield* ChangesetConfigReader;
|
|
2856
2881
|
* return yield* reader.read(process.cwd());
|
|
2857
2882
|
* }).pipe(
|
|
2858
|
-
* Effect.provide(
|
|
2883
|
+
* Effect.provide(ChangesetConfigReader.layer),
|
|
2859
2884
|
* Effect.provide(NodeServices.layer),
|
|
2860
2885
|
* )
|
|
2861
2886
|
* );
|
|
@@ -2864,18 +2889,19 @@ declare const ChangesetConfigReader_base: Context.ServiceClass<ChangesetConfigRe
|
|
|
2864
2889
|
* @since 0.1.0
|
|
2865
2890
|
* @public
|
|
2866
2891
|
*/
|
|
2867
|
-
declare class ChangesetConfigReader extends ChangesetConfigReader_base {
|
|
2868
|
-
/**
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2892
|
+
declare class ChangesetConfigReader extends ChangesetConfigReader_base {
|
|
2893
|
+
/**
|
|
2894
|
+
* Production implementation of {@link ChangesetConfigReader}.
|
|
2895
|
+
*
|
|
2896
|
+
* @remarks
|
|
2897
|
+
* Requires the core `FileSystem` service. Provide `NodeServices.layer` (or
|
|
2898
|
+
* `NodeFileSystem.layer`) from `@effect/platform-node` to satisfy this dependency.
|
|
2899
|
+
*
|
|
2900
|
+
* @since 0.1.0
|
|
2901
|
+
* @public
|
|
2902
|
+
*/
|
|
2903
|
+
static readonly layer: Layer.Layer<ChangesetConfigReader, never, FileSystem.FileSystem>;
|
|
2904
|
+
}
|
|
2879
2905
|
//#endregion
|
|
2880
2906
|
//#region src/changesets/services/config-inspector.d.ts
|
|
2881
2907
|
/** A `versionFiles` entry expanded to its absolute target paths. @public */
|
|
@@ -2992,7 +3018,7 @@ declare const ConfigInspector_base: Context.ServiceClass<ConfigInspector, "Confi
|
|
|
2992
3018
|
* @example
|
|
2993
3019
|
* ```typescript
|
|
2994
3020
|
* import { Effect } from "effect";
|
|
2995
|
-
* import { ConfigInspector
|
|
3021
|
+
* import { ConfigInspector } from "@savvy-web/changesets";
|
|
2996
3022
|
*
|
|
2997
3023
|
* const program = Effect.gen(function* () {
|
|
2998
3024
|
* const inspector = yield* ConfigInspector;
|
|
@@ -3000,27 +3026,28 @@ declare const ConfigInspector_base: Context.ServiceClass<ConfigInspector, "Confi
|
|
|
3000
3026
|
* return config.packages.map((p) => p.name);
|
|
3001
3027
|
* });
|
|
3002
3028
|
*
|
|
3003
|
-
* Effect.runPromise(program.pipe(Effect.provide(
|
|
3029
|
+
* Effect.runPromise(program.pipe(Effect.provide(ConfigInspector.layer)));
|
|
3004
3030
|
* ```
|
|
3005
3031
|
*
|
|
3006
3032
|
* @public
|
|
3007
3033
|
*/
|
|
3008
|
-
declare class ConfigInspector extends ConfigInspector_base {
|
|
3009
|
-
/**
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3034
|
+
declare class ConfigInspector extends ConfigInspector_base {
|
|
3035
|
+
/**
|
|
3036
|
+
* Production layer for {@link ConfigInspector}.
|
|
3037
|
+
*
|
|
3038
|
+
* Requires {@link ChangesetConfigReader} and `WorkspaceDiscovery`
|
|
3039
|
+
* in the environment.
|
|
3040
|
+
*
|
|
3041
|
+
* @public
|
|
3042
|
+
*/
|
|
3043
|
+
static readonly layer: Layer.Layer<ConfigInspector, never, ChangesetConfigReader | WorkspaceDiscovery | FileSystem.FileSystem>;
|
|
3044
|
+
}
|
|
3018
3045
|
/**
|
|
3019
3046
|
* Test factory — build a {@link ConfigInspector} that returns a fixed
|
|
3020
3047
|
* {@link InspectedConfig} without touching the filesystem.
|
|
3021
3048
|
*
|
|
3022
3049
|
* Tests that need to exercise the inspect/classify logic against real files
|
|
3023
|
-
* should compose `
|
|
3050
|
+
* should compose `ConfigInspector.layer` with test layers for
|
|
3024
3051
|
* `ChangesetConfigReader` and `WorkspaceDiscovery` instead.
|
|
3025
3052
|
*
|
|
3026
3053
|
* @public
|
|
@@ -3094,7 +3121,7 @@ declare const BranchAnalyzer_base: Context.ServiceClass<BranchAnalyzer, "BranchA
|
|
|
3094
3121
|
* @example
|
|
3095
3122
|
* ```typescript
|
|
3096
3123
|
* import { Effect } from "effect";
|
|
3097
|
-
* import { BranchAnalyzer,
|
|
3124
|
+
* import { BranchAnalyzer, ConfigInspector } from "@savvy-web/changesets";
|
|
3098
3125
|
*
|
|
3099
3126
|
* const program = Effect.gen(function* () {
|
|
3100
3127
|
* const analyzer = yield* BranchAnalyzer;
|
|
@@ -3104,27 +3131,28 @@ declare const BranchAnalyzer_base: Context.ServiceClass<BranchAnalyzer, "BranchA
|
|
|
3104
3131
|
*
|
|
3105
3132
|
* Effect.runPromise(
|
|
3106
3133
|
* program.pipe(
|
|
3107
|
-
* Effect.provide(
|
|
3108
|
-
* Effect.provide(
|
|
3109
|
-
* // ... +
|
|
3134
|
+
* Effect.provide(BranchAnalyzer.layer),
|
|
3135
|
+
* Effect.provide(ConfigInspector.layer),
|
|
3136
|
+
* // ... + ChangesetConfigReader.layer + kit workspace layers + NodeServices.layer
|
|
3110
3137
|
* ),
|
|
3111
3138
|
* );
|
|
3112
3139
|
* ```
|
|
3113
3140
|
*
|
|
3114
3141
|
* @public
|
|
3115
3142
|
*/
|
|
3116
|
-
declare class BranchAnalyzer extends BranchAnalyzer_base {
|
|
3117
|
-
/**
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3143
|
+
declare class BranchAnalyzer extends BranchAnalyzer_base {
|
|
3144
|
+
/**
|
|
3145
|
+
* Production layer for {@link BranchAnalyzer}.
|
|
3146
|
+
*
|
|
3147
|
+
* Requires {@link ConfigInspector} (which in turn requires
|
|
3148
|
+
* `ChangesetConfigReader` and `WorkspaceDiscovery`) and a
|
|
3149
|
+
* `ChildProcessSpawner` (satisfied by `NodeServices.layer`) for the
|
|
3150
|
+
* internally-composed `@effected/git` layer.
|
|
3151
|
+
*
|
|
3152
|
+
* @public
|
|
3153
|
+
*/
|
|
3154
|
+
static readonly layer: Layer.Layer<BranchAnalyzer, never, ConfigInspector | ChildProcessSpawner.ChildProcessSpawner>;
|
|
3155
|
+
}
|
|
3128
3156
|
/**
|
|
3129
3157
|
* Test factory — build a {@link BranchAnalyzer} that returns a fixed
|
|
3130
3158
|
* {@link BranchAnalysis} for any input.
|
|
@@ -3333,13 +3361,13 @@ declare const GitHubService_base: Context.ServiceClass<GitHubService, "GitHubSer
|
|
|
3333
3361
|
* This tag follows the standard Effect `Context.Service` pattern. Two layers
|
|
3334
3362
|
* are provided out of the box:
|
|
3335
3363
|
*
|
|
3336
|
-
* -
|
|
3364
|
+
* - `GitHubService.layer` — production layer backed by the GitHub REST API
|
|
3337
3365
|
* - {@link makeGitHubTest} — factory for deterministic test layers
|
|
3338
3366
|
*
|
|
3339
3367
|
* @example
|
|
3340
3368
|
* ```typescript
|
|
3341
|
-
* import { Effect
|
|
3342
|
-
* import { GitHubService
|
|
3369
|
+
* import { Effect } from "effect";
|
|
3370
|
+
* import { GitHubService } from "\@savvy-web/changesets";
|
|
3343
3371
|
*
|
|
3344
3372
|
* const program = Effect.gen(function* () {
|
|
3345
3373
|
* const github = yield* GitHubService;
|
|
@@ -3351,7 +3379,7 @@ declare const GitHubService_base: Context.ServiceClass<GitHubService, "GitHubSer
|
|
|
3351
3379
|
* });
|
|
3352
3380
|
*
|
|
3353
3381
|
* // Provide the live layer and run
|
|
3354
|
-
* Effect.runPromise(program.pipe(Effect.provide(
|
|
3382
|
+
* Effect.runPromise(program.pipe(Effect.provide(GitHubService.layer)));
|
|
3355
3383
|
* ```
|
|
3356
3384
|
*
|
|
3357
3385
|
* @example Creating a test layer with canned responses
|
|
@@ -3375,41 +3403,41 @@ declare const GitHubService_base: Context.ServiceClass<GitHubService, "GitHubSer
|
|
|
3375
3403
|
* ```
|
|
3376
3404
|
*
|
|
3377
3405
|
* @see {@link GitHubServiceShape} for the service interface
|
|
3378
|
-
* @see {@link GitHubLive} for the production layer
|
|
3379
3406
|
* @see {@link makeGitHubTest} for creating test layers
|
|
3380
3407
|
*
|
|
3381
3408
|
* @public
|
|
3382
3409
|
*/
|
|
3383
|
-
declare class GitHubService extends GitHubService_base {
|
|
3384
|
-
/**
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3410
|
+
declare class GitHubService extends GitHubService_base {
|
|
3411
|
+
/**
|
|
3412
|
+
* Production layer for {@link GitHubService}.
|
|
3413
|
+
*
|
|
3414
|
+
* Delegates to `\@changesets/get-github-info` to fetch commit metadata
|
|
3415
|
+
* from the GitHub REST API. Requires a `GITHUB_TOKEN` environment variable
|
|
3416
|
+
* to be set for authenticated requests.
|
|
3417
|
+
*
|
|
3418
|
+
* @remarks
|
|
3419
|
+
* This layer is used by the `\@savvy-web/changesets/changelog` entry point
|
|
3420
|
+
* to resolve commit hashes into PR numbers and author attribution. It is
|
|
3421
|
+
* used by the changelog formatter's
|
|
3422
|
+
* `MainLayer`.
|
|
3423
|
+
*
|
|
3424
|
+
* @example
|
|
3425
|
+
* ```typescript
|
|
3426
|
+
* import { Effect } from "effect";
|
|
3427
|
+
* import { GitHubService } from "\@savvy-web/changesets";
|
|
3428
|
+
*
|
|
3429
|
+
* const program = Effect.gen(function* () {
|
|
3430
|
+
* const github = yield* GitHubService;
|
|
3431
|
+
* return yield* github.getInfo({ commit: "abc1234", repo: "owner/repo" });
|
|
3432
|
+
* });
|
|
3433
|
+
*
|
|
3434
|
+
* Effect.runPromise(program.pipe(Effect.provide(GitHubService.layer)));
|
|
3435
|
+
* ```
|
|
3436
|
+
*
|
|
3437
|
+
* @public
|
|
3438
|
+
*/
|
|
3439
|
+
static readonly layer: Layer.Layer<GitHubService>;
|
|
3440
|
+
}
|
|
3413
3441
|
/**
|
|
3414
3442
|
* Create a test layer for {@link GitHubService} with pre-configured responses.
|
|
3415
3443
|
*
|
|
@@ -3506,7 +3534,7 @@ declare const ChangelogService_base: Context.ServiceClass<ChangelogService, "Cha
|
|
|
3506
3534
|
* ```typescript
|
|
3507
3535
|
* import { Effect } from "effect";
|
|
3508
3536
|
* import type { ChangesetOptions } from "\@savvy-web/changesets";
|
|
3509
|
-
* import { ChangelogService
|
|
3537
|
+
* import { ChangelogService } from "\@savvy-web/changesets";
|
|
3510
3538
|
*
|
|
3511
3539
|
* const program = Effect.gen(function* () {
|
|
3512
3540
|
* const changelog = yield* ChangelogService;
|
|
@@ -3568,18 +3596,18 @@ declare class ChangesetConfig extends ChangesetConfig_base {
|
|
|
3568
3596
|
* but not the bare scope `"@scope"`.
|
|
3569
3597
|
*/
|
|
3570
3598
|
static matches(name: string, pattern: string): boolean;
|
|
3599
|
+
/**
|
|
3600
|
+
* Production layer for {@link ChangesetConfig}, reading via {@link ChangesetConfigReader}, cached per root.
|
|
3601
|
+
*
|
|
3602
|
+
* @remarks
|
|
3603
|
+
* Requires `ChangesetConfigReader` (which requires `FileSystem`). Provide
|
|
3604
|
+
* `ChangesetConfigReader.layer` + a platform layer (`NodeServices.layer`).
|
|
3605
|
+
*
|
|
3606
|
+
* @since 0.4.0
|
|
3607
|
+
* @public
|
|
3608
|
+
*/
|
|
3609
|
+
static readonly layer: Layer.Layer<ChangesetConfig, never, ChangesetConfigReader>;
|
|
3571
3610
|
}
|
|
3572
|
-
/**
|
|
3573
|
-
* Live {@link ChangesetConfig} reading via {@link ChangesetConfigReader}, cached per root.
|
|
3574
|
-
*
|
|
3575
|
-
* @remarks
|
|
3576
|
-
* Requires `ChangesetConfigReader` (which requires `FileSystem`). Provide
|
|
3577
|
-
* `ChangesetConfigReaderLive` + a platform layer (`NodeServices.layer`).
|
|
3578
|
-
*
|
|
3579
|
-
* @since 0.4.0
|
|
3580
|
-
* @public
|
|
3581
|
-
*/
|
|
3582
|
-
declare const ChangesetConfigLive: Layer.Layer<ChangesetConfig, never, ChangesetConfigReader>;
|
|
3583
3611
|
//#endregion
|
|
3584
3612
|
//#region src/changesets/utils/dep-diff.d.ts
|
|
3585
3613
|
/**
|
|
@@ -3752,20 +3780,21 @@ declare const DepsRegen_base: Context.ServiceClass<DepsRegen, "Changesets/DepsRe
|
|
|
3752
3780
|
*
|
|
3753
3781
|
* @public
|
|
3754
3782
|
*/
|
|
3755
|
-
declare class DepsRegen extends DepsRegen_base {
|
|
3756
|
-
/**
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3783
|
+
declare class DepsRegen extends DepsRegen_base {
|
|
3784
|
+
/**
|
|
3785
|
+
* Production layer for {@link DepsRegen}.
|
|
3786
|
+
*
|
|
3787
|
+
* Requires `WorkspaceSnapshots`, `WorkspaceDiscovery`,
|
|
3788
|
+
* `PublishabilityDetector` (all from `@effected/workspaces`),
|
|
3789
|
+
* `Git` (from `@effected/git`, backing merge-base resolution),
|
|
3790
|
+
* {@link ConfigInspector}, {@link ChangesetConfig}, and
|
|
3791
|
+
* `FileSystem.FileSystem` (resolved once at construction and closed over by
|
|
3792
|
+
* the shape, keeping `plan`/`execute` themselves requirement-free).
|
|
3793
|
+
*
|
|
3794
|
+
* @public
|
|
3795
|
+
*/
|
|
3796
|
+
static readonly layer: Layer.Layer<DepsRegen, never, WorkspaceSnapshots | ConfigInspector | WorkspaceDiscovery | PublishabilityDetector | ChangesetConfig | Git | FileSystem.FileSystem>;
|
|
3797
|
+
}
|
|
3769
3798
|
/**
|
|
3770
3799
|
* Build the batteries-included {@link DepsRegen} layer over a
|
|
3771
3800
|
* `@effected/workspaces` kit graph bound to `options.cwd`.
|
|
@@ -3796,10 +3825,10 @@ declare function makeDepsRegenDefault(options?: WorkspacesOptions): Layer.Layer<
|
|
|
3796
3825
|
* (`NodeServices.layer`), not a bare filesystem-only layer.
|
|
3797
3826
|
*
|
|
3798
3827
|
* Gating uses silk's adaptive publishability detector
|
|
3799
|
-
* (
|
|
3828
|
+
* (`SilkPublishability.layerAdaptive`), so the default semantics
|
|
3800
3829
|
* are "versionable minus ignored" — identical to the savvy CLI and MCP
|
|
3801
3830
|
* runtimes. Consumers who need to swap any dependency (test detectors,
|
|
3802
|
-
* alternate config sources) should keep composing {@link
|
|
3831
|
+
* alternate config sources) should keep composing {@link DepsRegen.layer}
|
|
3803
3832
|
* directly; this layer is purely additive.
|
|
3804
3833
|
*
|
|
3805
3834
|
* @example
|
|
@@ -3929,9 +3958,10 @@ interface ReleasePlannerShape {
|
|
|
3929
3958
|
}
|
|
3930
3959
|
declare const ReleasePlanner_base: Context.ServiceClass<ReleasePlanner, "ReleasePlanner", ReleasePlannerShape>;
|
|
3931
3960
|
/** Effect service tag for the release planner. @public */
|
|
3932
|
-
declare class ReleasePlanner extends ReleasePlanner_base {
|
|
3933
|
-
/** Production layer. Requires {@link ConfigInspector} (used by `apply`) and `FileSystem`. @public */
|
|
3934
|
-
|
|
3961
|
+
declare class ReleasePlanner extends ReleasePlanner_base {
|
|
3962
|
+
/** Production layer. Requires {@link ConfigInspector} (used by `apply`) and `FileSystem`. @public */
|
|
3963
|
+
static readonly layer: Layer.Layer<ReleasePlanner, never, ConfigInspector | FileSystem.FileSystem>;
|
|
3964
|
+
}
|
|
3935
3965
|
/**
|
|
3936
3966
|
* Test factory — supply fixed results for any subset of methods. Unsupplied
|
|
3937
3967
|
* methods fail with a `ReleasePlanError`.
|
|
@@ -4655,10 +4685,10 @@ declare function gitMergeBase(cwd: string, base: string): Effect.Effect<string,
|
|
|
4655
4685
|
*
|
|
4656
4686
|
* @remarks
|
|
4657
4687
|
* Uses the currently-active {@link SilkPublishability} — wire the
|
|
4658
|
-
*
|
|
4688
|
+
* `SilkPublishability.layer` layer to get silk semantics.
|
|
4659
4689
|
*
|
|
4660
4690
|
* The kit's `PublishabilityDetector.detect` contract no longer receives the
|
|
4661
|
-
* workspace root — the ignore/mode-aware `
|
|
4691
|
+
* workspace root — the ignore/mode-aware `SilkPublishability.layerAdaptive`
|
|
4662
4692
|
* derives the `.changeset/config.json` root per package from the package's
|
|
4663
4693
|
* own discovery coordinates (`pkg.path` ascended by `pkg.relativePath`).
|
|
4664
4694
|
* The `root` parameter is retained for signature stability
|
|
@@ -5612,7 +5642,7 @@ declare const RequiredSectionsRule: import("unified-lint-rule").Plugin<Root, unk
|
|
|
5612
5642
|
//#region src/changesets/remark/rules/uncategorized-content.d.ts
|
|
5613
5643
|
declare const UncategorizedContentRule: import("unified-lint-rule").Plugin<Root, unknown>;
|
|
5614
5644
|
declare namespace index_d_exports {
|
|
5615
|
-
export { AggregateDependencyTablesPlugin, AppliedRelease, AppliedReleaseEntrySchema, AppliedReleaseSchema, BranchAnalysis, BranchAnalysisSchema, BranchAnalyzer,
|
|
5645
|
+
export { AggregateDependencyTablesPlugin, AppliedRelease, AppliedReleaseEntrySchema, AppliedReleaseSchema, BranchAnalysis, BranchAnalysisSchema, BranchAnalyzer, BranchAnalyzerShape, BranchFileEntry, BranchFileEntrySchema, BumpType, BumpTypeSchema, Categories, Changelog, ChangelogService, ChangelogServiceShape, ChangelogTransformer, Changeset, ChangesetIOError, ChangesetLinter, ChangesetOptions, ChangesetOptionsSchema, ChangesetPreview, ChangesetPreviewSchema, ChangesetSchema, ChangesetSummarySchema, ChangesetValidationError, Classification, ClassificationReason, ClassificationReasonSchema, ClassificationSchema, CommitHashSchema, ConfigInspector, ConfigInspectorShape, ConfigurationError, ContentStructureRule, ContributorFootnotesPlugin, DeduplicateItemsPlugin, DependencyAction, DependencyActionSchema, DependencyTable, DependencyTableFormatRule, DependencyTableRow, DependencyTableRowSchema, DependencyTableSchema, DependencyTableType, DependencyTableTypeSchema, DependencyType, DependencyTypeSchema, DependencyUpdate, DependencyUpdateSchema, DepsRegen, DepsRegenDefault, DepsRegenOptions, DepsRegenPlanError, DepsRegenShape, FileStatus, FileStatusSchema, GitError, GitHubApiError, GitHubCommitInfo, GitHubInfo, GitHubInfoSchema, GitHubService, GitHubServiceShape, GlobSchema, HeadingHierarchyRule, InspectedConfig, InspectedConfigSchema, IssueLinkRefsPlugin, IssueNumberSchema, JsonPathSchema, LegacyVersionFileConfig, LegacyVersionFileConfigSchema, LegacyVersionFilesSchema, LintMessage, MaintenanceNoteOptions, MaintenanceNotePlugin, MaintenanceReason, MaintenanceReasonSchema, MaintenanceTrigger, MaintenanceTriggerSchema, MarkdownParseError, 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, ReleasePlanner, ReleasePlannerShape, ReorderSectionsPlugin, RepoSchema, RequiredSectionsRule, ResolvedPackageScope, ResolvedPackageScopeSchema, ResolvedVersionFile, ResolvedVersionFileSchema, SectionCategory, SectionCategorySchema, SilkChangesetPreset, SilkChangesetTransformPreset, SilkChangesetsRules, TransformOptions, UncategorizedContentRule, UrlOrMarkdownLinkSchema, UsernameSchema, VERSION_RE, VersionFileConfig, VersionFileConfigSchema, VersionFileError, VersionFileUpdate, VersionFileUpdateRecordSchema, VersionFiles, VersionFilesSchema, VersionOrEmptySchema, VersionType, VersionTypeSchema, WorkspaceDependencyDiff, WorkspaceVersion, changelogFunctions, computeWorkspaceDependencyDiffs, deriveMaintenanceReason, gitMergeBase, isPureDependencyChangeset, listPublishablePackageNames, makeBranchAnalyzerTest, makeConfigInspectorTest, makeDepsRegenDefault, makeGitHubTest, makeReleasePlannerTest, serializeDependencyTableToMarkdown };
|
|
5616
5646
|
}
|
|
5617
5647
|
//#endregion
|
|
5618
5648
|
//#region src/commitlint/config/schema.d.ts
|
|
@@ -8419,12 +8449,13 @@ declare const ReposConfigStore_base: Context.ServiceClass<ReposConfigStore, "@sa
|
|
|
8419
8449
|
* Reads, validates, and writes the .repos/config.json manifest.
|
|
8420
8450
|
* @public
|
|
8421
8451
|
*/
|
|
8422
|
-
declare class ReposConfigStore extends ReposConfigStore_base {
|
|
8423
|
-
/**
|
|
8424
|
-
|
|
8425
|
-
|
|
8426
|
-
|
|
8427
|
-
|
|
8452
|
+
declare class ReposConfigStore extends ReposConfigStore_base {
|
|
8453
|
+
/**
|
|
8454
|
+
* Production layer over the core FileSystem.
|
|
8455
|
+
* @public
|
|
8456
|
+
*/
|
|
8457
|
+
static readonly layer: Layer.Layer<ReposConfigStore, never, FileSystem.FileSystem | Path.Path>;
|
|
8458
|
+
}
|
|
8428
8459
|
//#endregion
|
|
8429
8460
|
//#region src/repos/services/manager.d.ts
|
|
8430
8461
|
/**
|
|
@@ -8479,21 +8510,22 @@ declare const ReposManager_base: Context.ServiceClass<ReposManager, "@savvy-web/
|
|
|
8479
8510
|
* ref (`pin`), and adds, removes, or promotes agent notes (`note`).
|
|
8480
8511
|
* @public
|
|
8481
8512
|
*/
|
|
8482
|
-
declare class ReposManager extends ReposManager_base {
|
|
8483
|
-
/**
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
|
|
8487
|
-
|
|
8488
|
-
|
|
8489
|
-
|
|
8490
|
-
|
|
8491
|
-
|
|
8492
|
-
|
|
8493
|
-
|
|
8494
|
-
|
|
8513
|
+
declare class ReposManager extends ReposManager_base {
|
|
8514
|
+
/**
|
|
8515
|
+
* Production implementation of {@link ReposManager}.
|
|
8516
|
+
*
|
|
8517
|
+
* @remarks
|
|
8518
|
+
* All git plumbing runs through `@effected/git`'s `Git` service (captured once
|
|
8519
|
+
* at layer construction; `Git.layer` requires `ChildProcessSpawner` at the app
|
|
8520
|
+
* edge), so the public method effects stay at `R = never`. The kit classifies
|
|
8521
|
+
* git's exit-code/stderr taxonomy into typed failures, which are mapped onto
|
|
8522
|
+
* this module's {@link GitSubmoduleError} to keep the declared error unions.
|
|
8523
|
+
* @public
|
|
8524
|
+
*/
|
|
8525
|
+
static readonly layer: Layer.Layer<ReposManager, never, ReposConfigStore | Git | FileSystem.FileSystem | Path.Path>;
|
|
8526
|
+
}
|
|
8495
8527
|
declare namespace index_d_exports$3 {
|
|
8496
|
-
export { GitSubmoduleError, GitSubmoduleErrorBase, MANIFEST_PATH, NOTE_LIMIT, NoteNotFoundError, NoteNotFoundErrorBase, REPOS_DIR, RepoEntry, RepoName, RepoNotFoundError, RepoNotFoundErrorBase, RepoNote, RepoOrientation, RepoStatusEntry, ReposAddResult, ReposConfigError, ReposConfigErrorBase, ReposConfigStore,
|
|
8528
|
+
export { GitSubmoduleError, GitSubmoduleErrorBase, MANIFEST_PATH, NOTE_LIMIT, NoteNotFoundError, NoteNotFoundErrorBase, REPOS_DIR, RepoEntry, RepoName, RepoNotFoundError, RepoNotFoundErrorBase, RepoNote, RepoOrientation, RepoStatusEntry, ReposAddResult, ReposConfigError, ReposConfigErrorBase, ReposConfigStore, ReposConfigStoreShape, ReposManager, ReposManagerShape, ReposManifestFile, ReposNoteResult, ReposPinResult, ReposStatusReport, ReposSyncReport, STALE_LOCK_MAX_AGE_MS };
|
|
8497
8529
|
}
|
|
8498
8530
|
//#endregion
|
|
8499
8531
|
//#region src/schemas/BiomeConfig.d.ts
|
|
@@ -8899,7 +8931,7 @@ declare const BiomeSchemaSync_base: Context.ServiceClass<BiomeSchemaSync, "@savv
|
|
|
8899
8931
|
* const syncer = yield* BiomeSchemaSync;
|
|
8900
8932
|
* return yield* syncer.sync("^1.9.3");
|
|
8901
8933
|
* }).pipe(
|
|
8902
|
-
* Effect.provide(
|
|
8934
|
+
* Effect.provide(BiomeSchemaSync.layer),
|
|
8903
8935
|
* Effect.provide(NodeServices.layer),
|
|
8904
8936
|
* )
|
|
8905
8937
|
* );
|
|
@@ -8908,18 +8940,19 @@ declare const BiomeSchemaSync_base: Context.ServiceClass<BiomeSchemaSync, "@savv
|
|
|
8908
8940
|
* @since 0.1.0
|
|
8909
8941
|
* @public
|
|
8910
8942
|
*/
|
|
8911
|
-
declare class BiomeSchemaSync extends BiomeSchemaSync_base {
|
|
8912
|
-
/**
|
|
8913
|
-
|
|
8914
|
-
|
|
8915
|
-
|
|
8916
|
-
|
|
8917
|
-
|
|
8918
|
-
|
|
8919
|
-
|
|
8920
|
-
|
|
8921
|
-
|
|
8922
|
-
|
|
8943
|
+
declare class BiomeSchemaSync extends BiomeSchemaSync_base {
|
|
8944
|
+
/**
|
|
8945
|
+
* Production implementation of {@link BiomeSchemaSync}.
|
|
8946
|
+
*
|
|
8947
|
+
* @remarks
|
|
8948
|
+
* Requires the core `FileSystem` service. Provide `NodeServices.layer` (or
|
|
8949
|
+
* `NodeFileSystem.layer`) from `@effect/platform-node` to satisfy this dependency.
|
|
8950
|
+
*
|
|
8951
|
+
* @since 0.1.0
|
|
8952
|
+
* @public
|
|
8953
|
+
*/
|
|
8954
|
+
static readonly layer: Layer.Layer<BiomeSchemaSync, never, FileSystem.FileSystem>;
|
|
8955
|
+
}
|
|
8923
8956
|
//#endregion
|
|
8924
8957
|
//#region src/services/ConfigDiscovery.d.ts
|
|
8925
8958
|
/**
|
|
@@ -8974,7 +9007,7 @@ declare const ConfigDiscovery_base: Context.ServiceClass<ConfigDiscovery, "@savv
|
|
|
8974
9007
|
* const discovery = yield* ConfigDiscovery;
|
|
8975
9008
|
* return yield* discovery.find("biome.json");
|
|
8976
9009
|
* }).pipe(
|
|
8977
|
-
* Effect.provide(
|
|
9010
|
+
* Effect.provide(ConfigDiscovery.layer),
|
|
8978
9011
|
* Effect.provide(NodeServices.layer),
|
|
8979
9012
|
* )
|
|
8980
9013
|
* );
|
|
@@ -8983,18 +9016,19 @@ declare const ConfigDiscovery_base: Context.ServiceClass<ConfigDiscovery, "@savv
|
|
|
8983
9016
|
* @since 0.1.0
|
|
8984
9017
|
* @public
|
|
8985
9018
|
*/
|
|
8986
|
-
declare class ConfigDiscovery extends ConfigDiscovery_base {
|
|
8987
|
-
/**
|
|
8988
|
-
|
|
8989
|
-
|
|
8990
|
-
|
|
8991
|
-
|
|
8992
|
-
|
|
8993
|
-
|
|
8994
|
-
|
|
8995
|
-
|
|
8996
|
-
|
|
8997
|
-
|
|
9019
|
+
declare class ConfigDiscovery extends ConfigDiscovery_base {
|
|
9020
|
+
/**
|
|
9021
|
+
* Production implementation of {@link ConfigDiscovery}.
|
|
9022
|
+
*
|
|
9023
|
+
* @remarks
|
|
9024
|
+
* Requires the core `FileSystem` service. Provide `NodeServices.layer` (or
|
|
9025
|
+
* `NodeFileSystem.layer`) from `@effect/platform-node` to satisfy this dependency.
|
|
9026
|
+
*
|
|
9027
|
+
* @since 0.1.0
|
|
9028
|
+
* @public
|
|
9029
|
+
*/
|
|
9030
|
+
static readonly layer: Layer.Layer<ConfigDiscovery, never, FileSystem.FileSystem>;
|
|
9031
|
+
}
|
|
8998
9032
|
//#endregion
|
|
8999
9033
|
//#region src/services/SilkPublishability.d.ts
|
|
9000
9034
|
/**
|
|
@@ -9149,6 +9183,31 @@ declare class SilkPublishability {
|
|
|
9149
9183
|
* {@link SilkPublishability} (which already honors changeset ignore in adaptive mode).
|
|
9150
9184
|
*/
|
|
9151
9185
|
static listPublishable(_root: string): Effect.Effect<ReadonlyArray<PublishablePackage>, never, WorkspaceDiscovery | PublishabilityDetector>;
|
|
9186
|
+
/**
|
|
9187
|
+
* Override of `@effected/workspaces`' `PublishabilityDetector` Tag with pure silk rules.
|
|
9188
|
+
*
|
|
9189
|
+
* @remarks Requires `FileSystem` (captured at layer build); `detect` reads the raw
|
|
9190
|
+
* `package.json` from `pkg.packageJsonPath` and applies `SilkPublishability.detect`.
|
|
9191
|
+
*
|
|
9192
|
+
* @since 0.4.0
|
|
9193
|
+
* @public
|
|
9194
|
+
*/
|
|
9195
|
+
static readonly layer: Layer.Layer<PublishabilityDetector, never, FileSystem.FileSystem>;
|
|
9196
|
+
/**
|
|
9197
|
+
* Ignore-aware override of `PublishabilityDetector`. `detect` short-circuits to `[]`
|
|
9198
|
+
* for changeset-ignored packages, then dispatches on `ChangesetConfig.mode`:
|
|
9199
|
+
* `none` → `[]`; `silk` → `SilkPublishability.detect`; `vanilla` → the library default.
|
|
9200
|
+
*
|
|
9201
|
+
* @remarks Requires `FileSystem` and {@link ChangesetConfig} at build.
|
|
9202
|
+
* The kit's `detect` contract no longer receives the workspace root, so the changeset
|
|
9203
|
+
* lookups read it from `pkg.workspaceRoot` — the discovery root the package was found
|
|
9204
|
+
* against, never a filesystem marker walk, which could escape an unmarked root and read
|
|
9205
|
+
* the wrong `.changeset/config.json`.
|
|
9206
|
+
*
|
|
9207
|
+
* @since 0.4.0
|
|
9208
|
+
* @public
|
|
9209
|
+
*/
|
|
9210
|
+
static readonly layerAdaptive: Layer.Layer<PublishabilityDetector, never, FileSystem.FileSystem | ChangesetConfig>;
|
|
9152
9211
|
}
|
|
9153
9212
|
/**
|
|
9154
9213
|
* Read the bundler's `<pkgPath>/dist/prod/targets.json` binding via FileSystem.
|
|
@@ -9164,31 +9223,6 @@ declare class SilkPublishability {
|
|
|
9164
9223
|
* @public
|
|
9165
9224
|
*/
|
|
9166
9225
|
declare const readTargetsBinding: (fs: FileSystem.FileSystem, pkgPath: string) => Effect.Effect<TargetsBinding | null>;
|
|
9167
|
-
/**
|
|
9168
|
-
* Override of `@effected/workspaces`' `PublishabilityDetector` Tag with pure silk rules.
|
|
9169
|
-
*
|
|
9170
|
-
* @remarks Requires `FileSystem` (captured at layer build); `detect` reads the raw
|
|
9171
|
-
* `package.json` from `pkg.packageJsonPath` and applies `SilkPublishability.detect`.
|
|
9172
|
-
*
|
|
9173
|
-
* @since 0.4.0
|
|
9174
|
-
* @public
|
|
9175
|
-
*/
|
|
9176
|
-
declare const SilkPublishabilityDetectorLive: Layer.Layer<PublishabilityDetector, never, FileSystem.FileSystem>;
|
|
9177
|
-
/**
|
|
9178
|
-
* Ignore-aware override of `PublishabilityDetector`. `detect` short-circuits to `[]`
|
|
9179
|
-
* for changeset-ignored packages, then dispatches on `ChangesetConfig.mode`:
|
|
9180
|
-
* `none` → `[]`; `silk` → `SilkPublishability.detect`; `vanilla` → the library default.
|
|
9181
|
-
*
|
|
9182
|
-
* @remarks Requires `FileSystem` and {@link ChangesetConfig} at build.
|
|
9183
|
-
* The kit's `detect` contract no longer receives the workspace root, so the changeset
|
|
9184
|
-
* lookups read it from `pkg.workspaceRoot` — the discovery root the package was found
|
|
9185
|
-
* against, never a filesystem marker walk, which could escape an unmarked root and read
|
|
9186
|
-
* the wrong `.changeset/config.json`.
|
|
9187
|
-
*
|
|
9188
|
-
* @since 0.4.0
|
|
9189
|
-
* @public
|
|
9190
|
-
*/
|
|
9191
|
-
declare const PublishabilityDetectorAdaptiveLive: Layer.Layer<PublishabilityDetector, never, FileSystem.FileSystem | ChangesetConfig>;
|
|
9192
9226
|
//#endregion
|
|
9193
9227
|
//#region src/services/SilkWorkspaceAnalyzer.d.ts
|
|
9194
9228
|
/**
|
|
@@ -9230,7 +9264,7 @@ declare const SilkWorkspaceAnalyzer_base: Context.ServiceClass<SilkWorkspaceAnal
|
|
|
9230
9264
|
* const analyzer = yield* SilkWorkspaceAnalyzer;
|
|
9231
9265
|
* return yield* analyzer.analyze("/path/to/monorepo");
|
|
9232
9266
|
* }).pipe(
|
|
9233
|
-
* Effect.provide(
|
|
9267
|
+
* Effect.provide(SilkWorkspaceAnalyzer.layer),
|
|
9234
9268
|
* // ... provide all transitive layers
|
|
9235
9269
|
* )
|
|
9236
9270
|
* );
|
|
@@ -9239,19 +9273,20 @@ declare const SilkWorkspaceAnalyzer_base: Context.ServiceClass<SilkWorkspaceAnal
|
|
|
9239
9273
|
* @since 0.2.0
|
|
9240
9274
|
* @public
|
|
9241
9275
|
*/
|
|
9242
|
-
declare class SilkWorkspaceAnalyzer extends SilkWorkspaceAnalyzer_base {
|
|
9243
|
-
/**
|
|
9244
|
-
|
|
9245
|
-
|
|
9246
|
-
|
|
9247
|
-
|
|
9248
|
-
|
|
9249
|
-
|
|
9250
|
-
|
|
9251
|
-
|
|
9252
|
-
|
|
9253
|
-
|
|
9254
|
-
|
|
9276
|
+
declare class SilkWorkspaceAnalyzer extends SilkWorkspaceAnalyzer_base {
|
|
9277
|
+
/**
|
|
9278
|
+
* Production implementation of {@link SilkWorkspaceAnalyzer}.
|
|
9279
|
+
*
|
|
9280
|
+
* @remarks
|
|
9281
|
+
* Requires `WorkspaceDiscovery`, `PackageManagerDetector` and
|
|
9282
|
+
* {@link ChangesetConfigReader}. Versioning and tag classification are pure
|
|
9283
|
+
* `@effected/workspaces` value operations, so neither adds a requirement.
|
|
9284
|
+
*
|
|
9285
|
+
* @since 0.2.0
|
|
9286
|
+
* @public
|
|
9287
|
+
*/
|
|
9288
|
+
static readonly layer: Layer.Layer<SilkWorkspaceAnalyzer, never, FileSystem.FileSystem | WorkspaceDiscovery | PackageManagerDetector | ChangesetConfigReader>;
|
|
9289
|
+
}
|
|
9255
9290
|
//#endregion
|
|
9256
9291
|
//#region src/turbo/schemas/DryRun.d.ts
|
|
9257
9292
|
/** turbo's per-target cache descriptor in `--dry=json`. */
|
|
@@ -9588,24 +9623,25 @@ declare const TurboInspector_base: Context.ServiceClass<TurboInspector, "@savvy-
|
|
|
9588
9623
|
*
|
|
9589
9624
|
* @since 0.7.0
|
|
9590
9625
|
*/
|
|
9591
|
-
declare class TurboInspector extends TurboInspector_base {
|
|
9592
|
-
/**
|
|
9593
|
-
|
|
9594
|
-
|
|
9595
|
-
|
|
9596
|
-
|
|
9597
|
-
|
|
9598
|
-
|
|
9599
|
-
|
|
9600
|
-
|
|
9601
|
-
|
|
9602
|
-
|
|
9603
|
-
|
|
9604
|
-
|
|
9605
|
-
|
|
9626
|
+
declare class TurboInspector extends TurboInspector_base {
|
|
9627
|
+
/**
|
|
9628
|
+
* Production implementation of {@link TurboInspector}.
|
|
9629
|
+
*
|
|
9630
|
+
* @remarks
|
|
9631
|
+
* Requires `ToolDiscovery` from `@effected/commands` to resolve the `turbo`
|
|
9632
|
+
* binary, plus `ChildProcessSpawner` and `FileSystem` from core (provide
|
|
9633
|
+
* `NodeServices.layer` at the app edge) and `Git` from `@effected/git`. The
|
|
9634
|
+
* spawner is captured at layer construction and discharged onto each `Run`
|
|
9635
|
+
* effect with `Effect.provideService`, keeping the public method effects at
|
|
9636
|
+
* `R = never`.
|
|
9637
|
+
*
|
|
9638
|
+
* @since 0.7.0
|
|
9639
|
+
*/
|
|
9640
|
+
static readonly layer: Layer.Layer<TurboInspector, never, ToolDiscovery | ChildProcessSpawner.ChildProcessSpawner | FileSystem.FileSystem | Git>;
|
|
9641
|
+
}
|
|
9606
9642
|
declare namespace index_d_exports$4 {
|
|
9607
|
-
export { AffectedResult, AffectedResultType, CacheDiagnosis, CacheDiagnosisType, DryRunParseError, GlobalHashSummary, GraphNode, MissExplanation, NotATurboRepoError, PackageCacheStatus, TaskGraphResult, TaskGraphResultType, TurboCache, TurboDigest, TurboDryRun, TurboDryRunType, TurboDryTask, TurboDryTaskType, TurboEnvVars, TurboError, TurboExecError, TurboGlobalCacheInputs, TurboInspector,
|
|
9643
|
+
export { AffectedResult, AffectedResultType, CacheDiagnosis, CacheDiagnosisType, DryRunParseError, GlobalHashSummary, GraphNode, MissExplanation, NotATurboRepoError, PackageCacheStatus, TaskGraphResult, TaskGraphResultType, TurboCache, TurboDigest, TurboDryRun, TurboDryRunType, TurboDryTask, TurboDryTaskType, TurboEnvVars, TurboError, TurboExecError, TurboGlobalCacheInputs, TurboInspector, TurboInspectorShape, TurboNotInstalledError };
|
|
9608
9644
|
}
|
|
9609
9645
|
//#endregion
|
|
9610
|
-
export { AnalyzedWorkspace, BiomeSchemaSync,
|
|
9646
|
+
export { AnalyzedWorkspace, BiomeSchemaSync, type BiomeSchemaSyncShape, BiomeSyncError, type BiomeSyncOptions, type BiomeSyncResult, ChangesetConfig, ChangesetConfigError, type ChangesetConfigFile, ChangesetConfigReader, type ChangesetConfigReaderShape, type ChangesetConfigShape, type ChangesetMode, index_d_exports as Changesets, index_d_exports$1 as Commitlint, type CommitlintPlugin, type CommitlintUserConfig, ConfigDiscovery, type ConfigDiscoveryOptions, type ConfigDiscoveryShape, type ConfigLocation, ConfigNotFoundError, type ConfigSource, index_d_exports$2 as Lint, type PromptConfig, type PromptSettings, PublishTargetBindingError, type PublishablePackage, type RawPackageJson, type RawPublishConfig, type RawPublishTargets, type RawTargetObject, type RawTargetValue, index_d_exports$3 as Repos, type RuleApplicability, type RuleConfigTuple, type RuleSeverity, type RulesConfig, SavvyBaseSection, SavvyHooksSection, type SilkChangesetConfigFile, SilkPublishConfig, SilkPublishability, SilkWorkspaceAnalyzer, type SilkWorkspaceAnalyzerShape, type TargetBinding, type TargetGroupBinding, type TargetsBinding, index_d_exports$4 as Turbo, WorkspaceAnalysis, WorkspaceAnalysisError, buildSchemaUrl, extractSemver, readTargetsBinding, savvyBasePreamble, savvyHooksHygiene, savvyToolSection };
|
|
9611
9647
|
//# sourceMappingURL=index.d.ts.map
|