Skip to content

Releases: heyMP/signals

@heymp/[email protected]

06 Jul 16:30
2d7633b
Compare
Choose a tag to compare

Patch Changes

  • 163dc33: State stream async generator now returns correct type.

    Previously, when trying to use the an async iteratable
    in a for await loop, the value would be typed as unknown.
    It is now correctly typed with the typing of the State generic.

    const count = new State(0);
    
    for await (const value of count) {
      value;
      // ^? const value:number
    }

@heymp/[email protected]

02 Jul 12:11
857fec9
Compare
Choose a tag to compare
Pre-release

Major Changes

@heymp/[email protected]

02 Jul 20:26
3a4b9cc
Compare
Choose a tag to compare
Pre-release

Patch Changes

@heymp/[email protected]

02 Jul 20:06
8d2c432
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • 1b82da1: Add readme to signals package

@heymp/[email protected]

02 Jul 19:30
f326ef9
Compare
Choose a tag to compare
Pre-release

Patch Changes

@heymp/[email protected]

02 Jul 19:00
4e11d4b
Compare
Choose a tag to compare
Pre-release

Patch Changes

@heymp/[email protected]

02 Jul 12:25
e15d897
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • de13006: Chore: publish to latest tag