0.1.4 #6

Merged
Thilawyn merged 167 commits from next into master 2025-03-24 19:39:30 +01:00
Showing only changes of commit 224ccd8e32 - Show all commits

View File

@@ -133,7 +133,7 @@ export const make = <EH, K extends readonly unknown[], A, E, HandledE, R>(
) )
const fetchOnKeyChange = Effect.addFinalizer(() => interrupt).pipe( const fetchOnKeyChange = Effect.addFinalizer(() => interrupt).pipe(
Effect.andThen(Stream.runForEach(key, latestKey => Effect.andThen(Stream.runForEach(Stream.changes(key), latestKey =>
Ref.set(latestKeyRef, Option.some(latestKey)).pipe( Ref.set(latestKeyRef, Option.some(latestKey)).pipe(
Effect.andThen(forkFetch) Effect.andThen(forkFetch)
) )