UNPKG

652 BTypeScriptView Raw
1export declare const name = "bump";
2export declare const alias = "b";
3export declare const description = "Bumps a module version along with it's entire dependency graph.";
4export declare const args: {
5 '-i': string;
6 '-d': string;
7 '-l': string;
8};
9export declare type ReleaseType = 'major' | 'minor' | 'patch';
10export declare function cmd(args?: {
11 params: string[];
12 options: {
13 i?: boolean;
14 d?: boolean;
15 l?: boolean;
16 };
17}): Promise<void>;
18export interface IOptions {
19 includeIgnored?: boolean;
20 local?: boolean;
21 dryRun?: boolean;
22}
23export declare function bump(options?: IOptions): Promise<void>;