UNPKG

nx

Version:

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

17 lines 625 B
import { NxJsonConfiguration } from '../../config/nx-json'; import { Agent } from '../../ai/utils'; export interface InitArgs { interactive: boolean; nxCloud?: boolean; useDotNxInstallation?: boolean; integrated?: boolean; verbose?: boolean; force?: boolean; aiAgents?: Agent[]; } export declare function initHandler(options: InitArgs, inner?: boolean): Promise<void>; export declare function detectPlugins(nxJson: NxJsonConfiguration, interactive: boolean, includeAngularCli?: boolean): Promise<{ plugins: string[]; updatePackageScripts: boolean; }>; //# sourceMappingURL=init-v2.d.ts.map