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) 900 B
import { ConnectToNxCloudOptions } from '../../nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud'; import { NxJsonConfiguration } from '../../config/nx-json'; import { NxArgs } from '../../utils/command-line-utils'; import { MessageKey } from '../../utils/ab-testing'; export declare function onlyDefaultRunnerIsUsed(nxJson: NxJsonConfiguration): boolean; export declare function connectToNxCloudIfExplicitlyAsked(opts: NxArgs): Promise<void>; export declare function connectWorkspaceToCloud(options: ConnectToNxCloudOptions, directory?: string): Promise<string>; export declare function connectToNxCloudCommand(options: { generateToken?: boolean; }, command?: string): Promise<boolean>; export declare function connectExistingRepoToNxCloudPrompt(command?: string, key?: MessageKey): Promise<boolean>; export declare function connectToNxCloudWithPrompt(command: string): Promise<void>;