Update dependency @effect/language-service to ^0.84.0 #39

Closed
renovate-bot wants to merge 65 commits from renovate/bun-minor-patch into next
Showing only changes of commit 64d6c20d06 - Show all commits

View File

@@ -41,7 +41,7 @@ export const make = <A, ER, RR, EW, RW>(
? options.modify ? options.modify
: <B, E1 = never, R1 = never>(f: (a: A) => Effect.Effect<readonly [B, A], E1, R1>) => : <B, E1 = never, R1 = never>(f: (a: A) => Effect.Effect<readonly [B, A], E1, R1>) =>
Effect.flatMap(options.get, a => Effect.flatMap(options.get, a =>
Effect.flatMap(f(a), ([b, next]) => Effect.map(options.set(next), () => b) Effect.flatMap(f(a), ([b, next]) => Effect.as(options.set(next), b)
) )
), ),
}, LensPrototype) }, LensPrototype)