nx
Version:
27 lines (26 loc) • 734 B
TypeScript
import type { ProjectGraphProjectNode } from '../../config/project-graph';
import { CommandModule } from 'yargs';
export interface NxShowArgs {
json?: boolean;
}
export type ShowProjectsOptions = NxShowArgs & {
exclude?: string[];
files?: string;
uncommitted?: any;
untracked?: any;
base?: string;
head?: string;
affected?: boolean;
type?: ProjectGraphProjectNode['type'];
projects?: string[];
withTarget?: string[];
verbose?: boolean;
sep?: string;
};
export type ShowProjectOptions = NxShowArgs & {
projectName: string;
web?: boolean;
open?: boolean;
verbose?: boolean;
};
export declare const yargsShowCommand: CommandModule<Record<string, unknown>, NxShowArgs>;