Lines Matching refs:task
4 export async function build(task, opts) { argument
6 await task
14 await task
21 export default async function (task) { argument
22 await task.clear('build');
23 await task.start('build', { dev: true });
26 export async function watch(task) { argument
28 await task.clear('build');
29 await task.start('build', opts);
32 await task.watch('src/**/*.+(js|ts|json)', 'build', opts);
36 export async function release(task) { argument
37 await task.clear('build').start('build');