UNPKG

@kazupon/lerna-changelog

Version:

Generate a changelog for a lerna monorepo

18 lines (17 loc) 443 B
import { GitHubIssueResponse, GitHubUserResponse } from './github-api'; export interface CommitInfo { commitSHA: string; message: string; tags?: string[]; date: string; issueNumber: string | null; githubIssue?: GitHubIssueResponse; categories?: string[]; packages?: string[]; } export interface Release { name: string; date: string; commits: CommitInfo[]; contributors?: GitHubUserResponse[]; }