UNPKG

nx

Version:

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

28 lines (27 loc) 975 B
import type { InputDefinition } from '../../../config/workspace-json-project-json'; import type { ShowTargetBaseOptions } from '../command-object'; import { type ResolvedTarget } from './utils'; export declare function showTargetInfoHandler(args: ShowTargetBaseOptions): Promise<void>; export type TargetInfoData = ReturnType<typeof resolveTargetInfoData>; declare function resolveTargetInfoData(t: ResolvedTarget): { sourceMap?: Record<string, [file: string, plugin: string]>; defaultConfiguration?: string; configurations?: string[]; options: any; outputs?: string[]; inputs?: (string | InputDefinition)[]; _inputSources?: number[]; parallelism: boolean; continuous: boolean; cache: boolean; dependsOn?: string[]; _depSources?: number[]; customHasher?: boolean; command?: string; _commandSourceKey?: string; executor: string; configuration?: string; project: string; target: string; }; export {};