Lines Matching refs:tasks
47 tasks: Task<Args>[] | Task<Args>;
63 tasks: string[];
98 readonly tasks: Task<Args>[]; property in TaskRunner
126 const { tasks, ...rest } = descriptor; constant
128 this.tasks = ([] as Task<Args>[]).concat(tasks);
129 this.resolvedTasks = resolveTasksList(this.tasks);
174 arraysCompare(backup.tasks, this.tasks, tasksComparator)
192 tasks: this.tasks.map((task) => task.name),
223 const tasks = this.resolvedTasks.filter((task, taskIndex) => { constant
229 for (const task of tasks) {
317 function resolveTasksList<Args extends any[]>(tasks: Task<Args>[]): Task<Args>[] {
327 tasks.forEach((task) => iterateThroughDependencies(task));