Skip to content

Releases: tim-smart/effect-rx

@effect-rx/[email protected]

09 Feb 09:25
d592c4f
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@effect-rx/[email protected]

09 Feb 09:25
d592c4f
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@effect-rx/[email protected]

07 Feb 08:52
f420971
Compare
Choose a tag to compare

Patch Changes

@effect-rx/[email protected]

07 Feb 08:52
f420971
Compare
Choose a tag to compare

Patch Changes

@effect-rx/[email protected]

07 Feb 08:52
f420971
Compare
Choose a tag to compare

Patch Changes

@effect-rx/[email protected]

05 Feb 03:47
7388a91
Compare
Choose a tag to compare

Patch Changes

@effect-rx/[email protected]

05 Feb 03:47
7388a91
Compare
Choose a tag to compare

Patch Changes

@effect-rx/[email protected]

05 Feb 03:47
7388a91
Compare
Choose a tag to compare

Patch Changes

@effect-rx/[email protected]

04 Feb 22:55
fe01025
Compare
Choose a tag to compare

Patch Changes

@effect-rx/[email protected]

04 Feb 21:42
615c999
Compare
Choose a tag to compare

Minor Changes

  • 3448c4a Thanks @tim-smart! - add Rx.runtime api

    Instead of creating a RuntimeRx by using Rx.make, it is now done explicitly
    using the Rx.runtime api.

    const runtimeRx = Rx.runtime(MyLayer);

    It also exposes a .layer rx, which can be used to inject test layers:

    const registry = Registry.make({
      initialValues: [Rx.initialValue(runtimeRx.layer, MyTestLayer)],
    });
    
    // .. inject registry into react context etc