Skip to content

v0.0.14

Compare
Choose a tag to compare
@github-actions github-actions released this 25 Apr 10:49
· 5 commits to main since this release
e0fe4af

Patch Changes

  • #34 bfc890c Thanks @mikearnaldi! - Add effect-3.0.4 mod to remove gen adapter

    NOTE: 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 pipe function is present or not.