Mirror: 🎩 A tiny but capable push & pull stream library for TypeScript and Flow
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Version Packages (#134)

Co-authored-by: Phil Pluckthun <phil@kitten.sh>

authored by

github-actions[bot]
Phil Pluckthun
and committed by
GitHub
6d6415dc 2cfe3e6a

+15 -26
-5
.changeset/beige-worms-help.md
··· 1 - --- 2 - 'wonka': minor 3 - --- 4 - 5 - Implement `toAsyncIterable`, converting a Wonka source to a JS Async Iterable.
-5
.changeset/calm-tomatoes-chew.md
··· 1 - --- 2 - 'wonka': minor 3 - --- 4 - 5 - Implement `d.ts` bundling. Only a single `wonka.d.ts` typings file will now be available to TypeScript.
-5
.changeset/eleven-candles-rest.md
··· 1 - --- 2 - 'wonka': patch 3 - --- 4 - 5 - Fix promise timing by adding missing `Promise.resolve()` tick to `toPromise` sink function.
-5
.changeset/seven-meals-film.md
··· 1 - --- 2 - 'wonka': patch 3 - --- 4 - 5 - Fix implementation of Observable spec as such that Observable.subscribe(onNext, onError, onComplete) becomes valid.
-5
.changeset/violet-suits-yawn.md
··· 1 - --- 2 - 'wonka': minor 3 - --- 4 - 5 - Add extensive TSDoc documentation for all `wonka` internals and exports. This will replace the documentation and give consumers more guidance on each of the library's extensive utilities.
+14
CHANGELOG.md
··· 1 + # wonka 2 + 3 + ## 6.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Implement `toAsyncIterable`, converting a Wonka source to a JS Async Iterable, by [@kitten](https://github.com/kitten) (See [#133](https://github.com/0no-co/wonka/pull/133)) 8 + - Implement `d.ts` bundling. Only a single `wonka.d.ts` typings file will now be available to TypeScript, by [@kitten](https://github.com/kitten) (See [#135](https://github.com/0no-co/wonka/pull/135)) 9 + - Add extensive TSDoc documentation for all `wonka` internals and exports. This will replace the documentation and give consumers more guidance on each of the library's extensive utilities, by [@kitten](https://github.com/kitten) (See [#136](https://github.com/0no-co/wonka/pull/136)) 10 + 11 + ### Patch Changes 12 + 13 + - ⚠️ Fix promise timing by adding missing `Promise.resolve()` tick to `toPromise` sink function, by [@kitten](https://github.com/kitten) (See [#131](https://github.com/0no-co/wonka/pull/131)) 14 + - ⚠️ Fix implementation of Observable spec as such that Observable.subscribe(onNext, onError, onComplete) becomes valid, by [@kitten](https://github.com/kitten) (See [#132](https://github.com/0no-co/wonka/pull/132))
+1 -1
package.json
··· 1 1 { 2 2 "name": "wonka", 3 3 "description": "A tiny but capable push & pull stream library for TypeScript and Flow", 4 - "version": "6.1.2", 4 + "version": "6.2.0", 5 5 "author": "0no.co <hi@0no.co>", 6 6 "source": "./src/index.ts", 7 7 "main": "./dist/wonka",