.verb.md
March 2, 2018 ยท View on GitHub
Heads up the .watch method was removed in version 0.11.0. If you need watch functionality, use [base-tasks][] and base-watch.
Usage
const Composer = require('{%= name %}');
const composer = new Composer();
composer.task('default', cb => {
console.log('Task: ', this.name);
cb();
});
composer.build('default')
.then(() => console.log('done!'))
.catch(console.error);
API
{%= apidocs("index.js") %}
Task execution
{%= include("docs/execution.md") %}
Events
{%= include("docs/events.md") %}
History
{%= include("changelog.md") %}