UNPKG

nx

Version:

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

14 lines (13 loc) 325 B
/** * Graph of Tasks to be executed */ export interface CommandGraph { /** * Projects that do not have any dependencies and are thus ready to execute immediately */ roots: string[]; /** * Map of projects to projects which the task depends on */ dependencies: Record<string, string[]>; }