Changelog
v0.14.0
1.0.0
.'in task "foo":'
prefixed to the error message. see issue #22.runInfo
on the task object for use in event listeners and task functions..duration
to the .run/.runInfo
object that shows the duration in a human friendly format. This will also show the current duration from the time the task started to the time it's called if used inside a task function. see issue #23app.task('foo', function(cb) {
console.log(this.runInfo.duration);
});
Changelog
v0.13.0
options.skip
option to the name of the task or an array of task names.err
properties non-enumerable to cut down on error output.Changelog
v0.12.0
.task()
method by passing only the name. Instead do var task = app.tasks[name];
.task()
will result in a noop
task being created.options
may be passed to .build()
, .series()
and .parallel()
options
passed to .build()
will be merged onto task options before running the task.options.run
option to false
.Changelog
v0.11.0
.watch()
. Watch functionality can be added to [base][] applications using [base-watch][].