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) 507 B
import { NxJsonConfiguration } from '../../config/nx-json'; export interface InitArgs { interactive: boolean; nxCloud?: boolean; useDotNxInstallation?: boolean; integrated?: boolean; verbose?: boolean; force?: boolean; } export declare function initHandler(options: InitArgs): Promise<void>; export declare function detectPlugins(nxJson: NxJsonConfiguration, interactive: boolean, includeAngularCli?: boolean): Promise<{ plugins: string[]; updatePackageScripts: boolean; }>;