lerna
Version:
Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository
13 lines (12 loc) • 475 B
TypeScript
import { Arguments, Command, CommandConfigOptions } from "@lerna/core";
export declare function factory(argv: Arguments<DiffCommandOptions>): DiffCommand;
interface DiffCommandOptions extends CommandConfigOptions {
pkgName?: string;
ignoreChanges?: string[];
}
export declare class DiffCommand extends Command<DiffCommandOptions> {
private args;
initialize(): void;
execute(): Promise<void | import("@lerna/child-process").LernaReturnValue>;
}
export {};