UNPKG

nx

Version:

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

18 lines (17 loc) 445 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TaskResultsLifeCycle = void 0; class TaskResultsLifeCycle { constructor() { this.taskResults = {}; } endTasks(taskResults) { for (let t of taskResults) { this.taskResults[t.task.id] = t; } } getTaskResults() { return this.taskResults; } } exports.TaskResultsLifeCycle = TaskResultsLifeCycle;