UNPKG

changelog-tools

Version:

A set of tools for changelog parsing and generation

17 lines (16 loc) 513 B
import { Argv } from "yargs"; import { NewlineSymbol } from "../lib/types"; export type ParseChangelogArgs = { file: string; newLine: NewlineSymbol; consolidate: boolean; filter: string; semver: string; error: boolean; format: "json" | "markdown"; stripMarkdown: boolean; }; export declare const command: string[]; export declare const describe = "parse command"; export declare const builder: (cmd: Argv) => void; export declare const handler: (argv: ParseChangelogArgs) => void;