Releases: barelyhuman/pipe
Releases · barelyhuman/pipe
Release list
v0.2.3
Changes
- Map returns are now auto resolved internally instead of having to do another
Promise.all()call
Example
// before
const value = await pipe(something)
.map(id => fetchById(id))
.to(x => Promise.all(x))
.run()
// from v0.2.3
const value = await pipe(something)
.map(id => fetchById(id))
.run()All Changes
a722876 feat: auto resolve map promises
ea92670 ci: fix
32627d8 fix: release
fe6d0b6 simplify build
90067e2 test pre-commit
v0.2.0
v0.2.0-beta.3
Changes the Plugin API from https://github.com/barelyhuman/pipe/releases/tag/v0.2.0-beta.2
- adds a
useand simpler functions instead
v0.2.0-beta.2
- Basic Plugin Support
- Addition of
addResolveAllin async plugins - Addition of
addFlattenin array plugins