UNPKG

bumper-cli

Version:

🚀 A magical release management system with beautiful changelogs and automated workflows

20 lines • 574 B
#!/usr/bin/env node interface CommitValidationResult { isValid: boolean; errors: string[]; warnings: string[]; } declare const parseCommitMessage: (message: string) => { type: string; scope?: string; breaking: boolean; subject: string; }; declare const validateCommitMessage: (message: string) => { isValid: boolean; errors: string[]; warnings: string[]; }; export declare const validateCommits: () => Promise<CommitValidationResult>; export { validateCommitMessage, parseCommitMessage }; //# sourceMappingURL=validateCommits.d.ts.map