manual-git-changelog
Version:
A simple tool for appending to a changelog based on git commits and tags.
13 lines (12 loc) • 659 B
TypeScript
/// <reference types="node" />
import * as fs from "fs";
declare const readFile: typeof fs.readFile.__promisify__;
declare const writeFile: typeof fs.writeFile.__promisify__;
export { readFile, writeFile };
export declare function getIsoDate(): string;
export declare function getPackageJson(): Promise<string>;
export declare function getLernaJson(): Promise<string>;
export declare function waitForUserInput(query: string): Promise<unknown>;
export declare function getLastGitVersionTag(): Promise<string>;
export declare function getGitCommits(previousVersion: string): Promise<string[]>;
export declare function stageFile(file: string): Promise<unknown>;