UNPKG

@cdwr/core

Version:

A set of core utilities for the Codeware ecosystem.

13 lines (12 loc) 354 B
import type { VersionData } from 'nx/src/command-line/release/version'; /** * Generate changelogs * * @param options Changelog options * @returns `true` if changelog ran successfully, otherwise `false` */ export declare const changelogs: (options: { versionData: VersionData; dryRun?: boolean; verbose?: boolean; }) => Promise<boolean>;