UNPKG

nx

Version:

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

6 lines (5 loc) 415 B
import { NxReleaseConfiguration } from '../../config/nx-json'; import { ReleaseOptions, VersionOptions } from './command-object'; import { NxReleaseVersionResult } from './version'; export declare const releaseCLIHandler: (args: VersionOptions) => Promise<number>; export declare function createAPI(overrideReleaseConfig: NxReleaseConfiguration): (args: ReleaseOptions) => Promise<NxReleaseVersionResult | number>;