Skip to content

Releases: barelyhuman/pipe

v0.2.3

Choose a tag to compare

@barelyhuman barelyhuman released this 27 Feb 06:05

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

Choose a tag to compare

@barelyhuman barelyhuman released this 20 Feb 23:23

All Changes

6d1f42b Feat: Plugin support (#1)

v0.2.0-beta.3

Choose a tag to compare

@barelyhuman barelyhuman released this 18 Feb 19:52

Changes the Plugin API from https://github.com/barelyhuman/pipe/releases/tag/v0.2.0-beta.2

  • adds a use and simpler functions instead

v0.2.0-beta.2

Choose a tag to compare

@barelyhuman barelyhuman released this 18 Feb 17:58
  • Basic Plugin Support
  • Addition of addResolveAll in async plugins
  • Addition of addFlatten in array plugins