Lines Matching refs:task
9 task: Task;
55 tasks.forEach((task) => {
56 if (typeof task === 'string') {
57 currentPlatform = task as Platform;
61 if (Array.isArray(task)) {
63 ...task.map((t) => ({ platform: currentPlatform, task: t }))
68 this.platformSpecificTasks.push({ platform: currentPlatform, task });
94 .map(({ task }) => task);
96 for (const task of tasks) { constant
98 task.setWorkingDirectory(this.workingDirectory);
100 await task.start();