lerna
Version:
Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository
9 lines (8 loc) • 317 B
TypeScript
import { Arguments, Command, CommandConfigOptions } from "@lerna/core";
export declare function factory(argv: Arguments<CommandConfigOptions>): ListCommand;
export declare class ListCommand extends Command {
private result?;
get requiresGit(): boolean;
initialize(): Promise<void>;
execute(): void;
}