Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Releases: pawelgalazka/tasksfile

v3.1.0

19 Mar 04:23
Compare
Choose a tag to compare
  • fixes #43 stderr maxBuffer exceeded error (use spawn for async calls not exec)
  • runfile.js example update in README
  • drops support for node < 4.8.0

v3.0.0-beta.1

15 Jan 23:22
Compare
Choose a tag to compare
  • task name spacing/nesting, better for scaling tasks into many files
  • task descriptions
  • ask function
  • handling dash arguments in tasks (for example --test, -t)
  • logging tasks arguments to console when executing tasks
  • fixing exit codes when task not found
  • run function returns an output of a command now
  • improving documentation
  • deep code refactor, more unit tests

v2.6.1

04 Jan 03:18
Compare
Choose a tag to compare
  • bugfix: streaming stderr also for async process

v2.6.0

03 Dec 01:33
Compare
Choose a tag to compare
  • Streaming output of an async command by default (run api function)

v2.5.1

25 Oct 07:04
Compare
Choose a tag to compare
  • presenting straightforward message when no runfile.js found

v2.5.0

30 Sep 07:44
Compare
Choose a tag to compare
  • bringing backwards compatibility with node >= 4.0.0 (previously node >= 6.0.0 required)
  • run command in async mode now returns a Promise

v2.4.3

22 Sep 10:49
Compare
Choose a tag to compare
  • handling config from package.json to define a custom path to babel-register
  • executing async commands through child_process.span (better stdio handling)

v2.4.0

17 Jul 06:12
Compare
Choose a tag to compare
  • removing watch method from api
  • RunJS will fallback to pure node now if user babel-register not found (falling back to it's own babel-register before)
  • adding information to README: Why RunJS ? and other README update

v2.3.0

14 Jun 10:45
Compare
Choose a tag to compare
  • dropping Babel 5 support
  • handling new exports.default after babel update

v2.2.0

17 Dec 23:25
Compare
Choose a tag to compare
  • more explicit exceptions
  • handling existing babel-register or babel/register require hooks from the user package