@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.
@@ -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
- readonly version: Schema.String;
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
- readonly version: Schema.String;
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 { ContentStructureRule, DependencyTableFormatRule, HeadingHierarchyRule, RequiredSectionsRule, UncategorizedContentRule, SilkChangesetsRules as default };
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
- readonly version: Schema.String;
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
- readonly version: Schema.String;
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 { ContentStructureRule, DependencyTableFormatRule, HeadingHierarchyRule, RequiredSectionsRule, UncategorizedContentRule, SilkChangesetsRules as default };
9240
+ export { SilkChangesetsRules as default };
9231
9241
  //# sourceMappingURL=changesets-markdownlint.d.ts.map