changelog-tools
Version:
A set of tools for changelog parsing and generation
21 lines (20 loc) • 636 B
TypeScript
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[];
parserType: "builtin" | "marked";
};
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;