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) • 387 B
TypeScript
import npmlog from "./npmlog";
interface UncommittedConfig {
cwd: string;
log?: typeof npmlog;
}
export declare function collectUncommitted({ cwd, log }: UncommittedConfig): Promise<string[]>;
/**
* Report uncommitted files. (sync)
* @returns A list of uncommitted files
*/
export declare function collectUncommittedSync({ cwd, log }: UncommittedConfig): string[];
export {};