UNPKG

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
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; }>;