UNPKG

composer

Version:

API-first task runner with three methods: task, run and watch.

13 lines (10 loc) 219 B
'use strict'; /** * Default noop task to use when tasks only contain compositions. * * @param {Function} `done` callback that does nothing. * @return {*} */ module.exports = function(done) { return done(); };