v0.0.14
Patch Changes
-
#34
bfc890cThanks @mikearnaldi! - Add effect-3.0.4 mod to remove gen adapterNOTE: some edge cases are uncovered like:
yield * $([Effect.succeed(0), Effect.succeed(1)] as const, Effect.allWith());
that needs to be convered to:
yield * pipe([Effect.succeed(0), Effect.succeed(1)] as const, Effect.allWith());
Unfortunately not having type information in the mod tool renders impossible to decide if the
pipefunction is present or not.