@savvy-web/silk 3.11.6 → 3.12.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 +72 -63
- package/changesets-changelog.d.cts +12 -2
- package/changesets-changelog.d.ts +12 -2
- package/changesets-changelog.js +72 -63
- package/changesets-markdownlint.cjs +72 -63
- package/changesets-markdownlint.d.cts +18 -8
- package/changesets-markdownlint.d.ts +18 -8
- package/changesets-markdownlint.js +72 -63
- package/changesets-remark.d.ts +14 -15
- package/changesets.d.ts +6 -7
- package/commitlint-formatter.d.ts +9 -9
- package/commitlint-prompt.d.ts +18 -18
- package/commitlint-static.d.ts +17 -17
- package/commitlint.d.ts +18 -18
- package/lint.d.ts +58 -58
- package/package.json +7 -7
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -1
|
@@ -6329,7 +6329,12 @@ type ResolvedVersionFile = typeof ResolvedVersionFileSchema.Type;
|
|
|
6329
6329
|
declare const ResolvedPackageScopeSchema: Schema.Struct<{
|
|
6330
6330
|
readonly name: Schema.String;
|
|
6331
6331
|
readonly workspaceDir: Schema.String;
|
|
6332
|
-
|
|
6332
|
+
/**
|
|
6333
|
+
* The package's declared version, absent when its manifest carries none — legal for a private
|
|
6334
|
+
* package and the ordinary shape for a private monorepo root. A scope with no version has
|
|
6335
|
+
* nothing to stamp into its `versionFiles` targets, so `VersionFiles.applyScopes` skips it.
|
|
6336
|
+
*/
|
|
6337
|
+
readonly version: Schema.optional<Schema.String>;
|
|
6333
6338
|
readonly additionalScopes: Schema.$Array<Schema.String>;
|
|
6334
6339
|
readonly additionalScopeFiles: Schema.$Array<Schema.String>;
|
|
6335
6340
|
readonly versionFiles: Schema.$Array<Schema.Struct<{
|
|
@@ -6351,7 +6356,12 @@ declare const InspectedConfigSchema: Schema.Struct<{
|
|
|
6351
6356
|
readonly packages: Schema.$Array<Schema.Struct<{
|
|
6352
6357
|
readonly name: Schema.String;
|
|
6353
6358
|
readonly workspaceDir: Schema.String;
|
|
6354
|
-
|
|
6359
|
+
/**
|
|
6360
|
+
* The package's declared version, absent when its manifest carries none — legal for a private
|
|
6361
|
+
* package and the ordinary shape for a private monorepo root. A scope with no version has
|
|
6362
|
+
* nothing to stamp into its `versionFiles` targets, so `VersionFiles.applyScopes` skips it.
|
|
6363
|
+
*/
|
|
6364
|
+
readonly version: Schema.optional<Schema.String>;
|
|
6355
6365
|
readonly additionalScopes: Schema.$Array<Schema.String>;
|
|
6356
6366
|
readonly additionalScopeFiles: Schema.$Array<Schema.String>;
|
|
6357
6367
|
readonly versionFiles: Schema.$Array<Schema.Struct<{
|
|
@@ -9220,12 +9230,12 @@ declare namespace index_d_exports {
|
|
|
9220
9230
|
}
|
|
9221
9231
|
//#endregion
|
|
9222
9232
|
//#region src/changesets/markdownlint.d.ts
|
|
9223
|
-
declare const ContentStructureRule: typeof index_d_exports.MarkdownlintContentStructureRule;
|
|
9224
|
-
declare const DependencyTableFormatRule: typeof index_d_exports.MarkdownlintDependencyTableFormatRule;
|
|
9225
|
-
declare const HeadingHierarchyRule: typeof index_d_exports.MarkdownlintHeadingHierarchyRule;
|
|
9226
|
-
declare const RequiredSectionsRule: typeof index_d_exports.MarkdownlintRequiredSectionsRule;
|
|
9227
|
-
declare const UncategorizedContentRule: typeof index_d_exports.MarkdownlintUncategorizedContentRule;
|
|
9233
|
+
export declare const ContentStructureRule: typeof index_d_exports.MarkdownlintContentStructureRule;
|
|
9234
|
+
export declare const DependencyTableFormatRule: typeof index_d_exports.MarkdownlintDependencyTableFormatRule;
|
|
9235
|
+
export declare const HeadingHierarchyRule: typeof index_d_exports.MarkdownlintHeadingHierarchyRule;
|
|
9236
|
+
export declare const RequiredSectionsRule: typeof index_d_exports.MarkdownlintRequiredSectionsRule;
|
|
9237
|
+
export declare const UncategorizedContentRule: typeof index_d_exports.MarkdownlintUncategorizedContentRule;
|
|
9228
9238
|
declare const SilkChangesetsRules: typeof index_d_exports.SilkChangesetsRules;
|
|
9229
9239
|
//#endregion
|
|
9230
|
-
export {
|
|
9240
|
+
export { SilkChangesetsRules as default };
|
|
9231
9241
|
//# sourceMappingURL=changesets-markdownlint.d.cts.map
|
|
@@ -6329,7 +6329,12 @@ type ResolvedVersionFile = typeof ResolvedVersionFileSchema.Type;
|
|
|
6329
6329
|
declare const ResolvedPackageScopeSchema: Schema.Struct<{
|
|
6330
6330
|
readonly name: Schema.String;
|
|
6331
6331
|
readonly workspaceDir: Schema.String;
|
|
6332
|
-
|
|
6332
|
+
/**
|
|
6333
|
+
* The package's declared version, absent when its manifest carries none — legal for a private
|
|
6334
|
+
* package and the ordinary shape for a private monorepo root. A scope with no version has
|
|
6335
|
+
* nothing to stamp into its `versionFiles` targets, so `VersionFiles.applyScopes` skips it.
|
|
6336
|
+
*/
|
|
6337
|
+
readonly version: Schema.optional<Schema.String>;
|
|
6333
6338
|
readonly additionalScopes: Schema.$Array<Schema.String>;
|
|
6334
6339
|
readonly additionalScopeFiles: Schema.$Array<Schema.String>;
|
|
6335
6340
|
readonly versionFiles: Schema.$Array<Schema.Struct<{
|
|
@@ -6351,7 +6356,12 @@ declare const InspectedConfigSchema: Schema.Struct<{
|
|
|
6351
6356
|
readonly packages: Schema.$Array<Schema.Struct<{
|
|
6352
6357
|
readonly name: Schema.String;
|
|
6353
6358
|
readonly workspaceDir: Schema.String;
|
|
6354
|
-
|
|
6359
|
+
/**
|
|
6360
|
+
* The package's declared version, absent when its manifest carries none — legal for a private
|
|
6361
|
+
* package and the ordinary shape for a private monorepo root. A scope with no version has
|
|
6362
|
+
* nothing to stamp into its `versionFiles` targets, so `VersionFiles.applyScopes` skips it.
|
|
6363
|
+
*/
|
|
6364
|
+
readonly version: Schema.optional<Schema.String>;
|
|
6355
6365
|
readonly additionalScopes: Schema.$Array<Schema.String>;
|
|
6356
6366
|
readonly additionalScopeFiles: Schema.$Array<Schema.String>;
|
|
6357
6367
|
readonly versionFiles: Schema.$Array<Schema.Struct<{
|
|
@@ -9220,12 +9230,12 @@ declare namespace index_d_exports {
|
|
|
9220
9230
|
}
|
|
9221
9231
|
//#endregion
|
|
9222
9232
|
//#region src/changesets/markdownlint.d.ts
|
|
9223
|
-
declare const ContentStructureRule: typeof index_d_exports.MarkdownlintContentStructureRule;
|
|
9224
|
-
declare const DependencyTableFormatRule: typeof index_d_exports.MarkdownlintDependencyTableFormatRule;
|
|
9225
|
-
declare const HeadingHierarchyRule: typeof index_d_exports.MarkdownlintHeadingHierarchyRule;
|
|
9226
|
-
declare const RequiredSectionsRule: typeof index_d_exports.MarkdownlintRequiredSectionsRule;
|
|
9227
|
-
declare const UncategorizedContentRule: typeof index_d_exports.MarkdownlintUncategorizedContentRule;
|
|
9233
|
+
export declare const ContentStructureRule: typeof index_d_exports.MarkdownlintContentStructureRule;
|
|
9234
|
+
export declare const DependencyTableFormatRule: typeof index_d_exports.MarkdownlintDependencyTableFormatRule;
|
|
9235
|
+
export declare const HeadingHierarchyRule: typeof index_d_exports.MarkdownlintHeadingHierarchyRule;
|
|
9236
|
+
export declare const RequiredSectionsRule: typeof index_d_exports.MarkdownlintRequiredSectionsRule;
|
|
9237
|
+
export declare const UncategorizedContentRule: typeof index_d_exports.MarkdownlintUncategorizedContentRule;
|
|
9228
9238
|
declare const SilkChangesetsRules: typeof index_d_exports.SilkChangesetsRules;
|
|
9229
9239
|
//#endregion
|
|
9230
|
-
export {
|
|
9240
|
+
export { SilkChangesetsRules as default };
|
|
9231
9241
|
//# sourceMappingURL=changesets-markdownlint.d.ts.map
|