UNPKG

@coveo/semantic-monorepo-tools

Version:

A library of helper functions to do SemVer2 compliant releases from Conventional Commits in monorepos

9 lines (8 loc) 384 B
import { Context, Options } from "conventional-changelog-writer"; import type { Commit } from "conventional-commits-parser"; interface WriterContext extends Context { currentTag: string; previousTag: string; } export default function (parsedCommits: Array<Commit>, newVersion: string, writerContext?: Partial<WriterContext>, writerOpts?: Options): Promise<string>; export {};