Skip to content

Releases: jcoreio/promake

v5.0.0

02 Jun 19:48
Compare
Choose a tag to compare

5.0.0 (2022-06-02)

Bug Fixes

  • upgrade promisify-child-process (82be7cd)

BREAKING CHANGES

  • If you want stdout or stderr in the result of a promake.spawned child process, you
    must now pass the maxBuffer or encoding option. (maxBuffer defaults to 200 * 1024 if only encoding
    is given). In previous versions all output was always captured if piped to the parent, potentially
    exhausting available memory and crashing the parent process.
  • Drop support for Node < 8

v4.0.3

18 Aug 21:18
Compare
Choose a tag to compare

4.0.3 (2021-08-18)

Bug Fixes

  • handleChildProcessCleanup: fix bug, signal listener wasn't getting reinstalled (5927523)

v4.0.2

24 Feb 19:21
Compare
Choose a tag to compare

4.0.2 (2021-02-24)

Bug Fixes

  • forward SIGINT to child processes and wait for them to exit (e5638bb)

v4.0.1

03 Feb 05:09
Compare
Choose a tag to compare

4.0.1 (2021-02-03)

Bug Fixes

  • hashRule method type defs (7a282c6)

v4.0.0

03 Feb 04:28
Compare
Choose a tag to compare

4.0.0 (2021-02-03)

Bug Fixes

  • get rid of module field in package.json (987d58b)
  • move @babel/runtime to dependencies (addab3e)
  • switch from flow-runtime to typed-validators (4496195)

Features

BREAKING CHANGES

  • the flow types don't support require('promake') default CommonJS exports anymore (even though it still works at runtime).
    use import statements or require('promake').default instead.

v3.3.0

03 Nov 20:37
Compare
Choose a tag to compare

3.3.0 (2020-11-03)

Features

  • run rules once per top-level invocation, add missing Rule.catch, Rule.finally (bab2638)

v3.2.0

13 Oct 21:21
Compare
Choose a tag to compare

3.2.0 (2020-10-13)

Features

  • add Promake.make method, make rules run again if necessary when called via Node API (a3211d3)

v3.1.3

29 Apr 22:42
98dc738
Compare
Choose a tag to compare

3.1.3 (2020-04-29)

Bug Fixes

  • eliminate flow-runtime warning (22182b2), closes #19

v3.1.2

30 Nov 18:25
Compare
Choose a tag to compare

3.1.2 (2018-11-30)

Bug Fixes

  • bad console output on Node 11 (aff2424)

v3.1.1

20 Sep 16:45
Compare
Choose a tag to compare

3.1.1 (2018-09-20)

Bug Fixes

  • cli: fix passing dashargs to rules without preceeding -- (2a36927)