UNPKG

changelog-tools

Version:

A set of tools for changelog parsing and generation

20 lines (19 loc) 598 B
import { Argv } from "yargs"; import { ListItemChar, NewlineSymbol } from "../lib/types"; export type AddVersionArgs = { file: string; newLine: NewlineSymbol; listBullet: ListItemChar | string; title: string; added: string[]; changed: string[]; deprecated: string[]; removed: string[]; fixed: string[]; output: string; newChangelog: string[]; }; export declare const command: string[]; export declare const describe = "add version command"; export declare const builder: (cmd: Argv) => void; export declare const handler: (argv: AddVersionArgs) => void;