@effect/platform-node-shared
Advanced tools
Comparing version 0.1.14 to 0.2.0
{ | ||
"name": "@effect/platform-node-shared", | ||
"version": "0.1.14", | ||
"version": "0.2.0", | ||
"description": "Unified interfaces for common platform-specific services", | ||
@@ -16,4 +16,4 @@ "license": "MIT", | ||
"peerDependencies": { | ||
"@effect/platform": "^0.45.6", | ||
"effect": "^2.3.8" | ||
"@effect/platform": "^0.46.0", | ||
"effect": "^2.4.0" | ||
}, | ||
@@ -20,0 +20,0 @@ "exports": { |
@@ -120,3 +120,3 @@ import { type PlatformError, SystemError } from "@effect/platform/Error" | ||
Effect.sync(evaluate), | ||
Queue.unbounded<Either.Either<Exit.Exit<void, IE | E>, void>>() | ||
Queue.unbounded<Either.Either<void, Exit.Exit<void, IE | E>>>() | ||
), | ||
@@ -203,3 +203,3 @@ ([duplex, queue]) => readableOffer(duplex, queue, onError) | ||
Effect.sync(evaluate), | ||
Queue.unbounded<Either.Either<Exit.Exit<void, E>, void>>() | ||
Queue.unbounded<Either.Either<void, Exit.Exit<void, E>>>() | ||
), | ||
@@ -275,3 +275,3 @@ ([readable, queue]) => readableOffer(readable, queue, onError) | ||
readable: Readable | NodeJS.ReadableStream, | ||
queue: Queue.Queue<Either.Either<Exit.Exit<void, E>, void>>, | ||
queue: Queue.Queue<Either.Either<void, Exit.Exit<void, E>>>, | ||
onError: (error: unknown) => E | ||
@@ -299,3 +299,3 @@ ) => | ||
readable: Readable | NodeJS.ReadableStream, | ||
queue: Queue.Queue<Either.Either<Exit.Exit<void, E>, void>>, | ||
queue: Queue.Queue<Either.Either<void, Exit.Exit<void, E>>>, | ||
chunkSize: number | undefined | ||
@@ -302,0 +302,0 @@ ) => { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
321914