This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
Releases: pawelgalazka/tasksfile
Releases · pawelgalazka/tasksfile
v3.1.0
v3.0.0-beta.1
- 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
- bugfix: streaming
stderr
also for async process
v2.6.0
- Streaming output of an async command by default (run api function)
v2.5.1
- presenting straightforward message when no runfile.js found
v2.5.0
- bringing backwards compatibility with node >= 4.0.0 (previously node >= 6.0.0 required)
run
command in async mode now returns aPromise
v2.4.3
- handling config from
package.json
to define a custom path tobabel-register
- executing async commands through
child_process.span
(better stdio handling)
v2.4.0
- removing
watch
method from api - RunJS will fallback to pure node now if user
babel-register
not found (falling back to it's ownbabel-register
before) - adding information to README: Why RunJS ? and other README update
v2.3.0
- dropping Babel 5 support
- handling new
exports.default
after babel update
v2.2.0
- more explicit exceptions
- handling existing
babel-register
orbabel/register
require hooks from the user package