UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

16 lines 680 B
import { Task } from '../../config/task-graph'; import { LifeCycle, TaskResult } from '../life-cycle'; import { LegacyTaskHistoryLifeCycle } from './task-history-life-cycle-old'; export declare function getTasksHistoryLifeCycle(): TaskHistoryLifeCycle | LegacyTaskHistoryLifeCycle; export declare class TaskHistoryLifeCycle implements LifeCycle { private startTimings; private taskRuns; private taskHistory; private flakyTasks; constructor(); startTasks(tasks: Task[]): void; endTasks(taskResults: TaskResult[]): Promise<void>; endCommand(): Promise<void>; printFlakyTasksMessage(): void; } //# sourceMappingURL=task-history-life-cycle.d.ts.map