bumper-cli
Version:
🚀 A magical release management system with beautiful changelogs and automated workflows
14 lines • 363 B
TypeScript
interface ReleaseOptions {
type: 'patch' | 'minor' | 'major';
dryRun?: boolean;
}
interface ReleaseResult {
success: boolean;
version: string;
tag: string;
changelog: string;
}
export declare const createRelease: (options: ReleaseOptions) => Promise<ReleaseResult>;
export {};
//# sourceMappingURL=releaseTasks.d.ts.map