UNPKG

nx

Version:

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

15 lines (14 loc) 821 B
import type { ProjectGraph } from '../../config/project-graph'; import { type FlushSyncGeneratorChangesResult, type SyncGeneratorRunResult } from '../../utils/sync-generators'; export declare function clearSyncGeneratorsCache(): void; export declare function getCachedSyncGeneratorChanges(generators: string[]): Promise<SyncGeneratorRunResult[]>; export declare function flushSyncGeneratorChangesToDisk(generators: string[]): Promise<FlushSyncGeneratorChangesResult>; export declare function collectAndScheduleSyncGenerators(projectGraph: ProjectGraph): void; export declare function getCachedRegisteredSyncGenerators(): Promise<{ globalGenerators: string[]; taskGenerators: string[]; }>; /** * @internal */ export declare function _getConflictingGeneratorGroups(results: SyncGeneratorRunResult[]): string[][];