@savvy-web/silk 3.7.5 → 3.7.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 +407 -190
- package/changesets-changelog.d.cts +23 -5
- package/changesets-changelog.d.ts +23 -5
- package/changesets-changelog.js +408 -191
- package/changesets-markdownlint.cjs +407 -190
- package/changesets-markdownlint.d.cts +23 -5
- package/changesets-markdownlint.d.ts +23 -5
- package/changesets-markdownlint.js +408 -191
- package/package.json +9 -9
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Brand, Context, Effect, Equal, FileSystem, Hash, HashMap, Layer, Option, Order, Path, Result, Schema } from "effect";
|
|
2
2
|
import { ChildProcessSpawner } from "effect/unstable/process";
|
|
3
3
|
import "effect/unstable/http";
|
|
4
|
+
import * as PlatformError from "effect/PlatformError";
|
|
4
5
|
import "@effected/templates";
|
|
5
6
|
//#region ../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts
|
|
6
7
|
// ## Interfaces
|
|
@@ -5809,7 +5810,7 @@ declare class GlobPattern extends GlobPattern_base {
|
|
|
5809
5810
|
static readonly FromString: Schema.Codec<GlobPattern, string>;
|
|
5810
5811
|
}
|
|
5811
5812
|
//#endregion
|
|
5812
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.4.
|
|
5813
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.4.2_@effected+jsonc@0.6.0_effect@4.0.0-beta.107__@effected+npm@0._ed7d42fde2c58956d6dad4ab1717694c/node_modules/@effected/lockfiles/index.d.ts
|
|
5813
5814
|
//#region src/BunExtension.d.ts
|
|
5814
5815
|
declare const BunExtension_base: Schema.Class<BunExtension, Schema.Struct<{
|
|
5815
5816
|
readonly _tag: Schema.tag<"bun">;
|
|
@@ -6821,7 +6822,7 @@ declare class Package extends Package_base {
|
|
|
6821
6822
|
toJsonString(options?: PackageFormatOptions): string;
|
|
6822
6823
|
}
|
|
6823
6824
|
//#endregion
|
|
6824
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.13.
|
|
6825
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.13.1_@effected+jsonc@0.6.0_effect@4.0.0-beta.107__effect@4.0.0-beta.107/node_modules/@effected/workspaces/index.d.ts
|
|
6825
6826
|
//#region src/WorkspacePackage.d.ts
|
|
6826
6827
|
declare const PublishConfig_base: Schema.Class<PublishConfig, Schema.Struct<{
|
|
6827
6828
|
/** Scoped-package visibility. Its presence overrides `private`. */
|
|
@@ -13676,7 +13677,7 @@ declare class VersionFiles {
|
|
|
13676
13677
|
name: string;
|
|
13677
13678
|
version: string;
|
|
13678
13679
|
path: string;
|
|
13679
|
-
}>): WorkspaceVersion[]
|
|
13680
|
+
}>): Effect.Effect<WorkspaceVersion[], never, FileSystem.FileSystem>;
|
|
13680
13681
|
/**
|
|
13681
13682
|
* Determine which workspace version applies to a given file path
|
|
13682
13683
|
* using longest-prefix matching.
|
|
@@ -13751,7 +13752,7 @@ declare class VersionFiles {
|
|
|
13751
13752
|
* @see {@link jsonPathResolve} for concrete-path enumeration
|
|
13752
13753
|
* @see {@link VersionFiles.applyVersionEdit} for the per-path edit
|
|
13753
13754
|
*/
|
|
13754
|
-
static updateFile(filePath: string, jsonPaths: readonly string[], version: string): VersionFileUpdate | undefined
|
|
13755
|
+
static updateFile(filePath: string, jsonPaths: readonly string[], version: string): Effect.Effect<VersionFileUpdate | undefined, PlatformError.PlatformError, FileSystem.FileSystem>;
|
|
13755
13756
|
/**
|
|
13756
13757
|
* Compute the full update for a document without touching the filesystem:
|
|
13757
13758
|
* the edited content, the previous values at every matched path, and how
|
|
@@ -13833,7 +13834,24 @@ declare class VersionFiles {
|
|
|
13833
13834
|
*
|
|
13834
13835
|
* @internal
|
|
13835
13836
|
*/
|
|
13836
|
-
static processResolvedVersionFiles(scopes: ReadonlyArray<ResolvedPackageScope>, dryRun?: boolean): VersionFileUpdate[]
|
|
13837
|
+
static processResolvedVersionFiles(scopes: ReadonlyArray<ResolvedPackageScope>, dryRun?: boolean): Effect.Effect<VersionFileUpdate[], VersionFileError, FileSystem.FileSystem>;
|
|
13838
|
+
/**
|
|
13839
|
+
* Apply one version file's update, shared by both process entry points.
|
|
13840
|
+
*
|
|
13841
|
+
* @remarks
|
|
13842
|
+
* Fails TYPED with `VersionFileError`, carrying the offending `filePath`. The two callers then
|
|
13843
|
+
* choose their own posture, which is not the same and must not be unified:
|
|
13844
|
+
* {@link VersionFiles.processVersionFiles} (legacy) turns it into a DEFECT,
|
|
13845
|
+
* matching the synchronous throw it had under `node:fs`, while
|
|
13846
|
+
* {@link VersionFiles.processResolvedVersionFiles} leaves it typed because
|
|
13847
|
+
* `ReleasePlanner.apply` converts it to a `ReleasePlanError` — a defect there
|
|
13848
|
+
* would bypass the inspector's catch and crash `apply()`.
|
|
13849
|
+
*
|
|
13850
|
+
* @internal
|
|
13851
|
+
*/
|
|
13852
|
+
private static applyOne;
|
|
13853
|
+
/** Render a `PlatformError` the way the old `node:fs` catch rendered an `Error`. */
|
|
13854
|
+
private static describeFailure;
|
|
13837
13855
|
}
|
|
13838
13856
|
//#endregion
|
|
13839
13857
|
//#region ../../node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types/index.d.ts
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Brand, Context, Effect, Equal, FileSystem, Hash, HashMap, Layer, Option, Order, Path, Result, Schema } from "effect";
|
|
2
2
|
import { ChildProcessSpawner } from "effect/unstable/process";
|
|
3
3
|
import "effect/unstable/http";
|
|
4
|
+
import * as PlatformError from "effect/PlatformError";
|
|
4
5
|
import "@effected/templates";
|
|
5
6
|
//#region ../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts
|
|
6
7
|
// ## Interfaces
|
|
@@ -5809,7 +5810,7 @@ declare class GlobPattern extends GlobPattern_base {
|
|
|
5809
5810
|
static readonly FromString: Schema.Codec<GlobPattern, string>;
|
|
5810
5811
|
}
|
|
5811
5812
|
//#endregion
|
|
5812
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.4.
|
|
5813
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.4.2_@effected+jsonc@0.6.0_effect@4.0.0-beta.107__@effected+npm@0._ed7d42fde2c58956d6dad4ab1717694c/node_modules/@effected/lockfiles/index.d.ts
|
|
5813
5814
|
//#region src/BunExtension.d.ts
|
|
5814
5815
|
declare const BunExtension_base: Schema.Class<BunExtension, Schema.Struct<{
|
|
5815
5816
|
readonly _tag: Schema.tag<"bun">;
|
|
@@ -6821,7 +6822,7 @@ declare class Package extends Package_base {
|
|
|
6821
6822
|
toJsonString(options?: PackageFormatOptions): string;
|
|
6822
6823
|
}
|
|
6823
6824
|
//#endregion
|
|
6824
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.13.
|
|
6825
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.13.1_@effected+jsonc@0.6.0_effect@4.0.0-beta.107__effect@4.0.0-beta.107/node_modules/@effected/workspaces/index.d.ts
|
|
6825
6826
|
//#region src/WorkspacePackage.d.ts
|
|
6826
6827
|
declare const PublishConfig_base: Schema.Class<PublishConfig, Schema.Struct<{
|
|
6827
6828
|
/** Scoped-package visibility. Its presence overrides `private`. */
|
|
@@ -13676,7 +13677,7 @@ declare class VersionFiles {
|
|
|
13676
13677
|
name: string;
|
|
13677
13678
|
version: string;
|
|
13678
13679
|
path: string;
|
|
13679
|
-
}>): WorkspaceVersion[]
|
|
13680
|
+
}>): Effect.Effect<WorkspaceVersion[], never, FileSystem.FileSystem>;
|
|
13680
13681
|
/**
|
|
13681
13682
|
* Determine which workspace version applies to a given file path
|
|
13682
13683
|
* using longest-prefix matching.
|
|
@@ -13751,7 +13752,7 @@ declare class VersionFiles {
|
|
|
13751
13752
|
* @see {@link jsonPathResolve} for concrete-path enumeration
|
|
13752
13753
|
* @see {@link VersionFiles.applyVersionEdit} for the per-path edit
|
|
13753
13754
|
*/
|
|
13754
|
-
static updateFile(filePath: string, jsonPaths: readonly string[], version: string): VersionFileUpdate | undefined
|
|
13755
|
+
static updateFile(filePath: string, jsonPaths: readonly string[], version: string): Effect.Effect<VersionFileUpdate | undefined, PlatformError.PlatformError, FileSystem.FileSystem>;
|
|
13755
13756
|
/**
|
|
13756
13757
|
* Compute the full update for a document without touching the filesystem:
|
|
13757
13758
|
* the edited content, the previous values at every matched path, and how
|
|
@@ -13833,7 +13834,24 @@ declare class VersionFiles {
|
|
|
13833
13834
|
*
|
|
13834
13835
|
* @internal
|
|
13835
13836
|
*/
|
|
13836
|
-
static processResolvedVersionFiles(scopes: ReadonlyArray<ResolvedPackageScope>, dryRun?: boolean): VersionFileUpdate[]
|
|
13837
|
+
static processResolvedVersionFiles(scopes: ReadonlyArray<ResolvedPackageScope>, dryRun?: boolean): Effect.Effect<VersionFileUpdate[], VersionFileError, FileSystem.FileSystem>;
|
|
13838
|
+
/**
|
|
13839
|
+
* Apply one version file's update, shared by both process entry points.
|
|
13840
|
+
*
|
|
13841
|
+
* @remarks
|
|
13842
|
+
* Fails TYPED with `VersionFileError`, carrying the offending `filePath`. The two callers then
|
|
13843
|
+
* choose their own posture, which is not the same and must not be unified:
|
|
13844
|
+
* {@link VersionFiles.processVersionFiles} (legacy) turns it into a DEFECT,
|
|
13845
|
+
* matching the synchronous throw it had under `node:fs`, while
|
|
13846
|
+
* {@link VersionFiles.processResolvedVersionFiles} leaves it typed because
|
|
13847
|
+
* `ReleasePlanner.apply` converts it to a `ReleasePlanError` — a defect there
|
|
13848
|
+
* would bypass the inspector's catch and crash `apply()`.
|
|
13849
|
+
*
|
|
13850
|
+
* @internal
|
|
13851
|
+
*/
|
|
13852
|
+
private static applyOne;
|
|
13853
|
+
/** Render a `PlatformError` the way the old `node:fs` catch rendered an `Error`. */
|
|
13854
|
+
private static describeFailure;
|
|
13837
13855
|
}
|
|
13838
13856
|
//#endregion
|
|
13839
13857
|
//#region ../../node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types/index.d.ts
|