@savvy-web/silk 3.11.6 → 3.11.7
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 +12 -2
- package/changesets-markdownlint.d.ts +12 -2
- package/changesets-markdownlint.js +72 -63
- package/package.json +5 -5
- 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<{
|
|
@@ -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<{
|