Skip to content

Releases: heyMP/signals

@heymp/signals@0.1.2

23 Apr 14:58
c8f7558
Compare
Choose a tag to compare

Patch Changes

@heymp/signals@0.1.1

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/signals@1.0.0-next.0

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

Major Changes

@heymp/signals@1.0.0-latest.5

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

Patch Changes

@heymp/signals@1.0.0-latest.4

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

Patch Changes

  • 1b82da1: Add readme to signals package

@heymp/signals@1.0.0-latest.3

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

Patch Changes

@heymp/signals@1.0.0-latest.2

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

Patch Changes

@heymp/signals@1.0.0-latest.1

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

Patch Changes

  • de13006: Chore: publish to latest tag