@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<{
@@ -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<{