UNPKG

@yolkai/nx-workspace

Version:

Extensible Dev Tools for Monorepos

33 lines (32 loc) 778 B
import * as yargs from 'yargs'; export interface NxArgs { target?: string; configuration?: string; runner?: string; parallel?: boolean; maxParallel?: number; 'max-parallel'?: number; untracked?: boolean; uncommitted?: boolean; all?: boolean; base?: string; head?: string; exclude?: string[]; files?: string[]; onlyFailed?: boolean; 'only-failed'?: boolean; verbose?: boolean; help?: boolean; version?: boolean; quiet?: boolean; plain?: boolean; withDeps?: boolean; 'with-deps'?: boolean; projects?: string[]; select?: string; _: string[]; } export declare function splitArgsIntoNxArgsAndOverrides(args: yargs.Arguments): { nxArgs: NxArgs; overrides: yargs.Arguments; };