UNPKG

lerna

Version:

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

16 lines (15 loc) 643 B
import { Arguments, Command, CommandConfigOptions, listableFormatProjects } from "@lerna/core"; export declare function factory(argv: Arguments<ChangedCommandOptions>): ChangedCommand; interface ChangedCommandOptions extends CommandConfigOptions { conventionalCommits?: boolean; conventionalGraduate?: boolean | string; forceConventionalGraduate?: boolean; forcePublish?: boolean | string; } export declare class ChangedCommand extends Command<ChangedCommandOptions> { result?: ReturnType<typeof listableFormatProjects>; get otherCommandConfigs(): string[]; initialize(): boolean; execute(): void; } export {};