UNPKG

st-bundle

Version:

CLI for watching and bundling SpringType projects.

9 lines (8 loc) 307 B
export declare type IBumpVersionType = 'minor' | 'major' | 'patch' | 'next' | 'alpha' | 'beta' | 'rc' | 'dev'; export interface IBumpVersion { userJson?: { version: string; }; type: IBumpVersionType; } export declare function bumpVersion(stringJson: string, opts: IBumpVersion): string;