UNPKG

nx

Version:

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

11 lines (10 loc) 655 B
import type { NxArgs } from '../../utils/command-line-utils'; import { ProjectGraph, ProjectGraphProjectNode } from '../../config/project-graph'; import { TargetDependencyConfig } from '../../config/workspace-json-project-json'; export declare function affected(command: 'graph' | 'print-affected' | 'affected', args: { [k: string]: any; }, extraTargetDependencies?: Record<string, (TargetDependencyConfig | string)[]>, extraOptions?: { excludeTaskDependencies: boolean; loadDotEnvFiles: boolean; }): Promise<void>; export declare function getAffectedGraphNodes(nxArgs: NxArgs, projectGraph: ProjectGraph): Promise<ProjectGraphProjectNode[]>;