UNPKG

nx

Version:

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

8 lines (7 loc) 619 B
import { FileData, ProjectGraph } from '../../../config/project-graph'; import { NxArgs } from '../../../utils/command-line-utils'; import { ReleaseGroupWithName } from '../config/filter-release-groups'; /** * Create a function that returns the touched projects for a given release group. Only relevant when version plans are enabled. */ export declare function createGetTouchedProjectsForGroup(nxArgs: NxArgs, projectGraph: ProjectGraph, changedFiles: string[], fileData: FileData[]): (releaseGroup: ReleaseGroupWithName, releaseGroupFilteredProjectNames: string[], hasProjectsFilter: boolean) => Promise<string[]>;