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) 346 B
export type ChangedFile = { path: string; type: 'create' | 'update' | 'delete'; }; export declare function getProjectsAndGlobalChanges(createdFiles: string[] | null, updatedFiles: string[] | null, deletedFiles: string[] | null): { projects: { [changedProject: string]: ChangedFile[]; }; globalFiles: ChangedFile[]; };