UNPKG

nx

Version:

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

13 lines (12 loc) 631 B
import { ExecutorConfig } from '../../config/misc-interfaces'; import { ProjectConfiguration } from '../../config/workspace-json-project-json'; export declare function normalizeExecutorSchema(schema: Partial<ExecutorConfig['schema']>): ExecutorConfig['schema']; export declare function parseExecutor(executorString: string): [module: string, name: string]; export declare function getExecutorInformation(nodeModule: string, executor: string, root: string, /** * A map of projects keyed by project name */ projects: Record<string, ProjectConfiguration>): ExecutorConfig & { isNgCompat: boolean; isNxExecutor: boolean; };