UNPKG

lerna

Version:

Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository

15 lines (14 loc) 471 B
import yargs from "yargs"; /** * A factory that returns a yargs() instance configured with everything except commands. * Chain .parse() from this method to invoke. */ export declare function lernaCLI(argv?: string | readonly string[], cwd?: string): yargs.Argv<yargs.Omit<yargs.Omit<{}, string | number> & yargs.InferredOptionTypes<{ [key: string]: yargs.Options; }>, "ci"> & { ci: boolean | undefined; } & { help: unknown; } & { version: unknown; }>;