@savvy-web/silk 0.4.2 → 1.0.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/changesets-changelog.cjs +9955 -9539
- package/changesets-changelog.d.cts +145 -141
- package/changesets-changelog.d.ts +145 -141
- package/changesets-markdownlint.cjs +9955 -9539
- package/changesets-markdownlint.d.cts +145 -141
- package/changesets-markdownlint.d.ts +145 -141
- package/package.json +11 -10
- package/packages/silk-effects/dist/dev/pkg/changesets/index.cjs +8 -0
- package/packages/silk-effects/dist/dev/pkg/changesets/index.js +10 -2
- package/packages/silk-effects/dist/dev/pkg/changesets/services/branch-analyzer.cjs +61 -0
- package/packages/silk-effects/dist/dev/pkg/changesets/services/branch-analyzer.js +61 -3
- package/packages/silk-effects/dist/dev/pkg/changesets/services/config-inspector.cjs +131 -6
- package/packages/silk-effects/dist/dev/pkg/changesets/services/config-inspector.js +125 -5
- package/packages/silk-effects/dist/dev/pkg/services/ChangesetConfig.cjs +78 -0
- package/packages/silk-effects/dist/dev/pkg/services/ChangesetConfig.js +78 -0
- package/packages/silk-effects/dist/dev/pkg/services/SilkPublishability.cjs +194 -0
- package/packages/silk-effects/dist/dev/pkg/services/SilkPublishability.js +193 -0
|
@@ -6639,88 +6639,77 @@ declare class ChangesetConfigReader extends ChangesetConfigReader_base {}
|
|
|
6639
6639
|
*/
|
|
6640
6640
|
//#endregion
|
|
6641
6641
|
//#region src/changesets/services/config-inspector.d.ts
|
|
6642
|
-
/**
|
|
6643
|
-
|
|
6644
|
-
|
|
6645
|
-
|
|
6646
|
-
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
|
|
6659
|
-
|
|
6660
|
-
|
|
6661
|
-
|
|
6662
|
-
|
|
6663
|
-
|
|
6664
|
-
|
|
6665
|
-
|
|
6666
|
-
|
|
6667
|
-
|
|
6668
|
-
|
|
6669
|
-
|
|
6670
|
-
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
|
|
6678
|
-
|
|
6679
|
-
|
|
6680
|
-
|
|
6681
|
-
|
|
6682
|
-
|
|
6683
|
-
|
|
6684
|
-
|
|
6685
|
-
|
|
6686
|
-
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
|
|
6691
|
-
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6697
|
-
|
|
6698
|
-
|
|
6699
|
-
/**
|
|
6700
|
-
|
|
6701
|
-
|
|
6702
|
-
|
|
6703
|
-
|
|
6704
|
-
|
|
6705
|
-
|
|
6706
|
-
|
|
6707
|
-
|
|
6708
|
-
|
|
6709
|
-
|
|
6710
|
-
}
|
|
6711
|
-
/**
|
|
6712
|
-
|
|
6713
|
-
*
|
|
6714
|
-
* @public
|
|
6715
|
-
*/
|
|
6716
|
-
interface Classification {
|
|
6717
|
-
/** Repo-relative path. */
|
|
6718
|
-
readonly path: string;
|
|
6719
|
-
/** Owning package name, or `null` if the path is outside every known release surface. */
|
|
6720
|
-
readonly package: string | null;
|
|
6721
|
-
/** Why this attribution was made. `null` mirrors `package: null`. */
|
|
6722
|
-
readonly reason: ClassificationReason;
|
|
6723
|
-
}
|
|
6642
|
+
/** A `versionFiles` entry expanded to its absolute target paths. @public */
|
|
6643
|
+
declare const ResolvedVersionFileSchema: Schema.Struct<{
|
|
6644
|
+
glob: typeof Schema.String;
|
|
6645
|
+
paths: Schema.Array$<typeof Schema.String>;
|
|
6646
|
+
matchedFiles: Schema.Array$<typeof Schema.String>;
|
|
6647
|
+
}>;
|
|
6648
|
+
/** A `versionFiles` entry expanded to its absolute target paths. @public */
|
|
6649
|
+
type ResolvedVersionFile = Schema.Schema.Type<typeof ResolvedVersionFileSchema>;
|
|
6650
|
+
/** A package's resolved release surface. @public */
|
|
6651
|
+
declare const ResolvedPackageScopeSchema: Schema.Struct<{
|
|
6652
|
+
name: typeof Schema.String;
|
|
6653
|
+
workspaceDir: typeof Schema.String;
|
|
6654
|
+
version: typeof Schema.String;
|
|
6655
|
+
additionalScopes: Schema.Array$<typeof Schema.String>;
|
|
6656
|
+
additionalScopeFiles: Schema.Array$<typeof Schema.String>;
|
|
6657
|
+
versionFiles: Schema.Array$<Schema.Struct<{
|
|
6658
|
+
glob: typeof Schema.String;
|
|
6659
|
+
paths: Schema.Array$<typeof Schema.String>;
|
|
6660
|
+
matchedFiles: Schema.Array$<typeof Schema.String>;
|
|
6661
|
+
}>>;
|
|
6662
|
+
}>;
|
|
6663
|
+
/** A package's resolved release surface. @public */
|
|
6664
|
+
type ResolvedPackageScope = Schema.Schema.Type<typeof ResolvedPackageScopeSchema>;
|
|
6665
|
+
/** Structured representation of a resolved `.changeset/config.json`. @public */
|
|
6666
|
+
declare const InspectedConfigSchema: Schema.Struct<{
|
|
6667
|
+
configPath: typeof Schema.String;
|
|
6668
|
+
projectDir: Schema.SchemaClass<string, string, never>;
|
|
6669
|
+
changelog: Schema.NullOr<typeof Schema.String>;
|
|
6670
|
+
baseBranch: typeof Schema.String;
|
|
6671
|
+
access: Schema.Literal<["public", "restricted"]>;
|
|
6672
|
+
ignore: Schema.Array$<typeof Schema.String>;
|
|
6673
|
+
packages: Schema.Array$<Schema.Struct<{
|
|
6674
|
+
name: typeof Schema.String;
|
|
6675
|
+
workspaceDir: typeof Schema.String;
|
|
6676
|
+
version: typeof Schema.String;
|
|
6677
|
+
additionalScopes: Schema.Array$<typeof Schema.String>;
|
|
6678
|
+
additionalScopeFiles: Schema.Array$<typeof Schema.String>;
|
|
6679
|
+
versionFiles: Schema.Array$<Schema.Struct<{
|
|
6680
|
+
glob: typeof Schema.String;
|
|
6681
|
+
paths: Schema.Array$<typeof Schema.String>;
|
|
6682
|
+
matchedFiles: Schema.Array$<typeof Schema.String>;
|
|
6683
|
+
}>>;
|
|
6684
|
+
}>>;
|
|
6685
|
+
legacyVersionFilesUsed: typeof Schema.Boolean;
|
|
6686
|
+
}>;
|
|
6687
|
+
/** Structured representation of a resolved `.changeset/config.json`. @public */
|
|
6688
|
+
type InspectedConfig = Schema.Schema.Type<typeof InspectedConfigSchema>;
|
|
6689
|
+
/** Reason a path was attributed to a package (or left unmapped). @public */
|
|
6690
|
+
declare const ClassificationReasonSchema: Schema.Union<[Schema.Literal<["workspace"]>, Schema.Struct<{
|
|
6691
|
+
kind: Schema.Literal<["additionalScope"]>;
|
|
6692
|
+
glob: typeof Schema.String;
|
|
6693
|
+
}>, Schema.Struct<{
|
|
6694
|
+
kind: Schema.Literal<["versionFile"]>;
|
|
6695
|
+
glob: typeof Schema.String;
|
|
6696
|
+
}>, typeof Schema.Null]>;
|
|
6697
|
+
/** Reason a path was attributed to a package (or left unmapped). @public */
|
|
6698
|
+
type ClassificationReason = Schema.Schema.Type<typeof ClassificationReasonSchema>;
|
|
6699
|
+
/** The result of classifying a single path against a resolved config. @public */
|
|
6700
|
+
declare const ClassificationSchema: Schema.Struct<{
|
|
6701
|
+
path: typeof Schema.String;
|
|
6702
|
+
package: Schema.NullOr<typeof Schema.String>;
|
|
6703
|
+
reason: Schema.Union<[Schema.Literal<["workspace"]>, Schema.Struct<{
|
|
6704
|
+
kind: Schema.Literal<["additionalScope"]>;
|
|
6705
|
+
glob: typeof Schema.String;
|
|
6706
|
+
}>, Schema.Struct<{
|
|
6707
|
+
kind: Schema.Literal<["versionFile"]>;
|
|
6708
|
+
glob: typeof Schema.String;
|
|
6709
|
+
}>, typeof Schema.Null]>;
|
|
6710
|
+
}>;
|
|
6711
|
+
/** The result of classifying a single path against a resolved config. @public */
|
|
6712
|
+
type Classification = Schema.Schema.Type<typeof ClassificationSchema>;
|
|
6724
6713
|
/**
|
|
6725
6714
|
* Effect service interface for inspecting a project's changeset config.
|
|
6726
6715
|
*
|
|
@@ -6784,7 +6773,7 @@ declare class ConfigInspector extends ConfigInspectorBase {}
|
|
|
6784
6773
|
*
|
|
6785
6774
|
* @public
|
|
6786
6775
|
*/
|
|
6787
|
-
declare const ConfigInspectorLive: Layer.Layer<ConfigInspector, never, ChangesetConfigReader | WorkspaceDiscovery>;
|
|
6776
|
+
declare const ConfigInspectorLive: Layer.Layer<ConfigInspector, never, ChangesetConfigReader | WorkspaceDiscovery | FileSystem.FileSystem>;
|
|
6788
6777
|
/**
|
|
6789
6778
|
* Test factory — build a {@link ConfigInspector} that returns a fixed
|
|
6790
6779
|
* {@link InspectedConfig} without touching the filesystem.
|
|
@@ -6797,44 +6786,46 @@ declare const ConfigInspectorLive: Layer.Layer<ConfigInspector, never, Changeset
|
|
|
6797
6786
|
*/
|
|
6798
6787
|
declare function makeConfigInspectorTest(fixed: InspectedConfig): Layer.Layer<ConfigInspector>; //#endregion
|
|
6799
6788
|
//#region src/changesets/services/branch-analyzer.d.ts
|
|
6800
|
-
/**
|
|
6801
|
-
|
|
6802
|
-
|
|
6803
|
-
|
|
6804
|
-
*/
|
|
6805
|
-
|
|
6806
|
-
|
|
6807
|
-
|
|
6808
|
-
|
|
6809
|
-
|
|
6810
|
-
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
|
|
6815
|
-
|
|
6816
|
-
|
|
6817
|
-
|
|
6818
|
-
|
|
6819
|
-
|
|
6820
|
-
|
|
6821
|
-
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6826
|
-
|
|
6827
|
-
|
|
6828
|
-
|
|
6829
|
-
|
|
6830
|
-
|
|
6831
|
-
|
|
6832
|
-
|
|
6833
|
-
|
|
6834
|
-
|
|
6835
|
-
|
|
6836
|
-
|
|
6837
|
-
}
|
|
6789
|
+
/** Git diff status as reported by `--name-status`. @public */
|
|
6790
|
+
declare const FileStatusSchema: Schema.Literal<["added", "modified", "deleted", "renamed", "copied", "typechange", "unmerged", "unknown"]>;
|
|
6791
|
+
/** Git diff status as reported by `--name-status`. @public */
|
|
6792
|
+
type FileStatus = Schema.Schema.Type<typeof FileStatusSchema>;
|
|
6793
|
+
/** One file entry in the branch analysis output. @public */
|
|
6794
|
+
declare const BranchFileEntrySchema: Schema.Struct<{
|
|
6795
|
+
path: Schema.SchemaClass<string, string, never>;
|
|
6796
|
+
status: Schema.Literal<["added", "modified", "deleted", "renamed", "copied", "typechange", "unmerged", "unknown"]>;
|
|
6797
|
+
package: Schema.NullOr<typeof Schema.String>;
|
|
6798
|
+
reason: Schema.Union<[Schema.Literal<["workspace"]>, Schema.Struct<{
|
|
6799
|
+
kind: Schema.Literal<["additionalScope"]>;
|
|
6800
|
+
glob: typeof Schema.String;
|
|
6801
|
+
}>, Schema.Struct<{
|
|
6802
|
+
kind: Schema.Literal<["versionFile"]>;
|
|
6803
|
+
glob: typeof Schema.String;
|
|
6804
|
+
}>, typeof Schema.Null]>;
|
|
6805
|
+
}>;
|
|
6806
|
+
/** One file entry in the branch analysis output. @public */
|
|
6807
|
+
type BranchFileEntry = Schema.Schema.Type<typeof BranchFileEntrySchema>;
|
|
6808
|
+
/** Structured result of analyzing the current branch against its base. @public */
|
|
6809
|
+
declare const BranchAnalysisSchema: Schema.Struct<{
|
|
6810
|
+
baseBranch: typeof Schema.String;
|
|
6811
|
+
mergeBaseSha: typeof Schema.String;
|
|
6812
|
+
files: Schema.Array$<Schema.Struct<{
|
|
6813
|
+
path: Schema.SchemaClass<string, string, never>;
|
|
6814
|
+
status: Schema.Literal<["added", "modified", "deleted", "renamed", "copied", "typechange", "unmerged", "unknown"]>;
|
|
6815
|
+
package: Schema.NullOr<typeof Schema.String>;
|
|
6816
|
+
reason: Schema.Union<[Schema.Literal<["workspace"]>, Schema.Struct<{
|
|
6817
|
+
kind: Schema.Literal<["additionalScope"]>;
|
|
6818
|
+
glob: typeof Schema.String;
|
|
6819
|
+
}>, Schema.Struct<{
|
|
6820
|
+
kind: Schema.Literal<["versionFile"]>;
|
|
6821
|
+
glob: typeof Schema.String;
|
|
6822
|
+
}>, typeof Schema.Null]>;
|
|
6823
|
+
}>>;
|
|
6824
|
+
packagesAffected: Schema.Array$<typeof Schema.String>;
|
|
6825
|
+
unmappedFiles: Schema.Array$<typeof Schema.String>;
|
|
6826
|
+
}>;
|
|
6827
|
+
/** Structured result of analyzing the current branch against its base. @public */
|
|
6828
|
+
type BranchAnalysis = Schema.Schema.Type<typeof BranchAnalysisSchema>;
|
|
6838
6829
|
/**
|
|
6839
6830
|
* Effect service interface for branch analysis.
|
|
6840
6831
|
*
|
|
@@ -8510,7 +8501,7 @@ interface TokenTypeMap {
|
|
|
8510
8501
|
chunkText: 'chunkText';
|
|
8511
8502
|
chunkString: 'chunkString';
|
|
8512
8503
|
} //#endregion
|
|
8513
|
-
//#region ../../node_modules/.pnpm/markdownlint@0.
|
|
8504
|
+
//#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/markdownlint.d.mts
|
|
8514
8505
|
/**
|
|
8515
8506
|
* Function to implement rule logic.
|
|
8516
8507
|
*/
|
|
@@ -8576,13 +8567,13 @@ type ParserMicromark = {
|
|
|
8576
8567
|
tokens: MicromarkToken[];
|
|
8577
8568
|
};
|
|
8578
8569
|
/**
|
|
8579
|
-
* markdown-it token.
|
|
8570
|
+
* markdown-it base token.
|
|
8580
8571
|
*/
|
|
8581
|
-
type
|
|
8572
|
+
type MarkdownItBaseToken = {
|
|
8582
8573
|
/**
|
|
8583
8574
|
* HTML attributes.
|
|
8584
8575
|
*/
|
|
8585
|
-
attrs: string[][];
|
|
8576
|
+
attrs: string[][] | null;
|
|
8586
8577
|
/**
|
|
8587
8578
|
* Block-level token.
|
|
8588
8579
|
*/
|
|
@@ -8590,7 +8581,7 @@ type MarkdownItToken = {
|
|
|
8590
8581
|
/**
|
|
8591
8582
|
* Child nodes.
|
|
8592
8583
|
*/
|
|
8593
|
-
children:
|
|
8584
|
+
children: MarkdownItBaseToken[] | null;
|
|
8594
8585
|
/**
|
|
8595
8586
|
* Tag contents.
|
|
8596
8587
|
*/
|
|
@@ -8610,7 +8601,7 @@ type MarkdownItToken = {
|
|
|
8610
8601
|
/**
|
|
8611
8602
|
* Beginning/ending line numbers.
|
|
8612
8603
|
*/
|
|
8613
|
-
map: number[];
|
|
8604
|
+
map: number[] | null;
|
|
8614
8605
|
/**
|
|
8615
8606
|
* Markup text.
|
|
8616
8607
|
*/
|
|
@@ -8618,7 +8609,7 @@ type MarkdownItToken = {
|
|
|
8618
8609
|
/**
|
|
8619
8610
|
* Arbitrary data.
|
|
8620
8611
|
*/
|
|
8621
|
-
meta:
|
|
8612
|
+
meta: Object;
|
|
8622
8613
|
/**
|
|
8623
8614
|
* Level change.
|
|
8624
8615
|
*/
|
|
@@ -8631,6 +8622,15 @@ type MarkdownItToken = {
|
|
|
8631
8622
|
* Token type.
|
|
8632
8623
|
*/
|
|
8633
8624
|
type: string;
|
|
8625
|
+
};
|
|
8626
|
+
/**
|
|
8627
|
+
* markdown-it extended token.
|
|
8628
|
+
*/
|
|
8629
|
+
type MarkdownItExtendedToken = {
|
|
8630
|
+
/**
|
|
8631
|
+
* Child nodes.
|
|
8632
|
+
*/
|
|
8633
|
+
children: MarkdownItExtendedToken[] | null;
|
|
8634
8634
|
/**
|
|
8635
8635
|
* Line number (1-based).
|
|
8636
8636
|
*/
|
|
@@ -8640,6 +8640,10 @@ type MarkdownItToken = {
|
|
|
8640
8640
|
*/
|
|
8641
8641
|
line: string;
|
|
8642
8642
|
};
|
|
8643
|
+
/**
|
|
8644
|
+
* markdown-it token.
|
|
8645
|
+
*/
|
|
8646
|
+
type MarkdownItToken = MarkdownItBaseToken & MarkdownItExtendedToken;
|
|
8643
8647
|
type MicromarkTokenType = TokenType;
|
|
8644
8648
|
/**
|
|
8645
8649
|
* micromark token.
|
|
@@ -8693,23 +8697,23 @@ type RuleOnErrorInfo = {
|
|
|
8693
8697
|
/**
|
|
8694
8698
|
* Detail about the error.
|
|
8695
8699
|
*/
|
|
8696
|
-
detail?: string;
|
|
8700
|
+
detail?: string | undefined;
|
|
8697
8701
|
/**
|
|
8698
8702
|
* Context for the error.
|
|
8699
8703
|
*/
|
|
8700
|
-
context?: string;
|
|
8704
|
+
context?: string | undefined;
|
|
8701
8705
|
/**
|
|
8702
8706
|
* Link to more information.
|
|
8703
8707
|
*/
|
|
8704
|
-
information?: URL;
|
|
8708
|
+
information?: URL | undefined;
|
|
8705
8709
|
/**
|
|
8706
8710
|
* Column number (1-based) and length.
|
|
8707
8711
|
*/
|
|
8708
|
-
range?: number[];
|
|
8712
|
+
range?: number[] | undefined;
|
|
8709
8713
|
/**
|
|
8710
8714
|
* Fix information.
|
|
8711
8715
|
*/
|
|
8712
|
-
fixInfo?: RuleOnErrorFixInfo;
|
|
8716
|
+
fixInfo?: RuleOnErrorFixInfo | undefined;
|
|
8713
8717
|
};
|
|
8714
8718
|
/**
|
|
8715
8719
|
* Fix information for RuleOnErrorInfo.
|
|
@@ -8718,19 +8722,19 @@ type RuleOnErrorFixInfo = {
|
|
|
8718
8722
|
/**
|
|
8719
8723
|
* Line number (1-based).
|
|
8720
8724
|
*/
|
|
8721
|
-
lineNumber?: number;
|
|
8725
|
+
lineNumber?: number | undefined;
|
|
8722
8726
|
/**
|
|
8723
8727
|
* Column of the fix (1-based).
|
|
8724
8728
|
*/
|
|
8725
|
-
editColumn?: number;
|
|
8729
|
+
editColumn?: number | undefined;
|
|
8726
8730
|
/**
|
|
8727
8731
|
* Count of characters to delete.
|
|
8728
8732
|
*/
|
|
8729
|
-
deleteCount?: number;
|
|
8733
|
+
deleteCount?: number | undefined;
|
|
8730
8734
|
/**
|
|
8731
8735
|
* Text to insert (after deleting).
|
|
8732
8736
|
*/
|
|
8733
|
-
insertText?: string;
|
|
8737
|
+
insertText?: string | undefined;
|
|
8734
8738
|
};
|
|
8735
8739
|
/**
|
|
8736
8740
|
* Rule definition.
|
|
@@ -8747,7 +8751,7 @@ type Rule$2 = {
|
|
|
8747
8751
|
/**
|
|
8748
8752
|
* Link to more information.
|
|
8749
8753
|
*/
|
|
8750
|
-
information?: URL;
|
|
8754
|
+
information?: URL | undefined;
|
|
8751
8755
|
/**
|
|
8752
8756
|
* Rule tag(s).
|
|
8753
8757
|
*/
|
|
@@ -8759,7 +8763,7 @@ type Rule$2 = {
|
|
|
8759
8763
|
/**
|
|
8760
8764
|
* True if asynchronous.
|
|
8761
8765
|
*/
|
|
8762
|
-
asynchronous?: boolean;
|
|
8766
|
+
asynchronous?: boolean | undefined;
|
|
8763
8767
|
/**
|
|
8764
8768
|
* Rule implementation.
|
|
8765
8769
|
*/
|
|
@@ -8769,7 +8773,7 @@ type Rule$2 = {
|
|
|
8769
8773
|
* Rule configuration.
|
|
8770
8774
|
*/
|
|
8771
8775
|
type RuleConfiguration = boolean | any; //#endregion
|
|
8772
|
-
//#region ../../node_modules/.pnpm/markdownlint@0.
|
|
8776
|
+
//#region ../../node_modules/.pnpm/markdownlint@0.41.0/node_modules/markdownlint/lib/exports.d.mts
|
|
8773
8777
|
type Rule$1 = Rule$2; //#endregion
|
|
8774
8778
|
//#region src/changesets/markdownlint/rules/content-structure.d.ts
|
|
8775
8779
|
/**
|
|
@@ -9032,7 +9036,7 @@ declare const RequiredSectionsRule: Plugin<Root, unknown>; //#endregion
|
|
|
9032
9036
|
//#region src/changesets/remark/rules/uncategorized-content.d.ts
|
|
9033
9037
|
declare const UncategorizedContentRule: Plugin<Root, unknown>;
|
|
9034
9038
|
declare namespace index_d_exports {
|
|
9035
|
-
export { AggregateDependencyTablesPlugin, BranchAnalysis, BranchAnalyzer, BranchAnalyzerBase, BranchAnalyzerLive, BranchAnalyzerShape, BranchFileEntry, Categories, Changelog, ChangelogService, ChangelogServiceBase, ChangelogServiceShape, ChangelogTransformer, Changeset, ChangesetLinter, ChangesetOptions, ChangesetOptionsSchema, ChangesetSchema, ChangesetSummarySchema, ChangesetValidationError, ChangesetValidationErrorBase, Classification, ClassificationReason, CommitHashSchema, ConfigInspector, ConfigInspectorBase, ConfigInspectorLive, ConfigInspectorShape, ConfigurationError, ConfigurationErrorBase, ContentStructureRule, ContributorFootnotesPlugin, DeduplicateItemsPlugin, DependencyAction, DependencyActionSchema, DependencyTable, DependencyTableFormatRule, DependencyTableRow, DependencyTableRowSchema, DependencyTableSchema, DependencyTableType, DependencyTableTypeSchema, DependencyType, DependencyTypeSchema, DependencyUpdate, DependencyUpdateSchema, FileStatus, GitError, GitErrorBase, GitHubApiError, GitHubApiErrorBase, GitHubCommitInfo, GitHubInfo, GitHubInfoSchema, GitHubLive, GitHubService, GitHubServiceBase, GitHubServiceShape, GlobSchema, HeadingHierarchyRule, InspectedConfig, IssueLinkRefsPlugin, IssueNumberSchema, JsonPathSchema, LegacyVersionFileConfig, LegacyVersionFileConfigSchema, LegacyVersionFilesSchema, LintMessage, 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, PositiveInteger, ReorderSectionsPlugin, RepoSchema, RequiredSectionsRule, ResolvedPackageScope, ResolvedVersionFile, SectionCategory, SectionCategorySchema, SilkChangesetPreset, SilkChangesetTransformPreset, SilkChangesetsRules, UncategorizedContentRule, UrlOrMarkdownLinkSchema, UsernameSchema, VersionFileConfig, VersionFileConfigSchema, VersionFileError, VersionFileErrorBase, VersionFileUpdate, VersionFiles, VersionFilesSchema, VersionOrEmptySchema, VersionType, VersionTypeSchema, WorkspaceDependencyDiff, WorkspaceSnapshot, WorkspaceSnapshotReader, WorkspaceSnapshotReaderBase, WorkspaceSnapshotReaderLive, WorkspaceSnapshotReaderShape, WorkspaceVersion, changelogFunctions$1 as changelogFunctions, computeWorkspaceDependencyDiffs, gitMergeBase, listPublishablePackageNames, makeBranchAnalyzerTest, makeConfigInspectorTest, makeGitHubTest, serializeDependencyTableToMarkdown, snapshotFromWorktree };
|
|
9039
|
+
export { AggregateDependencyTablesPlugin, BranchAnalysis, BranchAnalysisSchema, BranchAnalyzer, BranchAnalyzerBase, BranchAnalyzerLive, BranchAnalyzerShape, BranchFileEntry, BranchFileEntrySchema, Categories, Changelog, ChangelogService, ChangelogServiceBase, ChangelogServiceShape, ChangelogTransformer, Changeset, ChangesetLinter, ChangesetOptions, ChangesetOptionsSchema, 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, FileStatus, FileStatusSchema, GitError, GitErrorBase, GitHubApiError, GitHubApiErrorBase, GitHubCommitInfo, GitHubInfo, GitHubInfoSchema, GitHubLive, GitHubService, GitHubServiceBase, GitHubServiceShape, GlobSchema, HeadingHierarchyRule, InspectedConfig, InspectedConfigSchema, IssueLinkRefsPlugin, IssueNumberSchema, JsonPathSchema, LegacyVersionFileConfig, LegacyVersionFileConfigSchema, LegacyVersionFilesSchema, LintMessage, 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, PositiveInteger, ReorderSectionsPlugin, RepoSchema, RequiredSectionsRule, ResolvedPackageScope, ResolvedPackageScopeSchema, ResolvedVersionFile, ResolvedVersionFileSchema, SectionCategory, SectionCategorySchema, SilkChangesetPreset, SilkChangesetTransformPreset, SilkChangesetsRules, UncategorizedContentRule, UrlOrMarkdownLinkSchema, UsernameSchema, VersionFileConfig, VersionFileConfigSchema, VersionFileError, VersionFileErrorBase, VersionFileUpdate, VersionFiles, VersionFilesSchema, VersionOrEmptySchema, VersionType, VersionTypeSchema, WorkspaceDependencyDiff, WorkspaceSnapshot, WorkspaceSnapshotReader, WorkspaceSnapshotReaderBase, WorkspaceSnapshotReaderLive, WorkspaceSnapshotReaderShape, WorkspaceVersion, changelogFunctions$1 as changelogFunctions, computeWorkspaceDependencyDiffs, gitMergeBase, listPublishablePackageNames, makeBranchAnalyzerTest, makeConfigInspectorTest, makeGitHubTest, serializeDependencyTableToMarkdown, snapshotFromWorktree };
|
|
9036
9040
|
} //#endregion
|
|
9037
9041
|
//#region src/commitlint/config/schema.d.ts
|
|
9038
9042
|
/**
|