lerna
Version:
Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository
9 lines (8 loc) • 374 B
TypeScript
import { Package } from "../package";
import { BaseChangelogOptions, ChangelogType } from "./constants";
export declare function updateChangelog(pkg: Package, type: ChangelogType, { changelogPreset, changelogEntryAdditionalMarkdown, rootPath, tagPrefix, version, }: BaseChangelogOptions & {
version?: string;
}): Promise<{
logPath: string;
newEntry: string;
}>;