UNPKG

@wroud/conventional-commits-parser

Version:

A lightweight parser for conventional commits that supports extracting commit metadata, generating commit messages, and managing commit trailers in TypeScript.

10 lines 285 B
import type { IGitCommitInfo } from "@wroud/git"; export interface IConventionalCommit { commitInfo: IGitCommitInfo; type: string; scope?: string; description: string; body?: string; breakingChanges: string[]; } //# sourceMappingURL=IConventionalCommit.d.ts.map