UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

8 lines 877 B
import type { ProjectGraph, ProjectGraphProjectNode } from '../../../config/project-graph'; import { NxReleaseConfig } from '../config/config'; import { ReleaseGroupWithName } from '../config/filter-release-groups'; import { getLatestGitTagForPattern } from '../utils/git'; import { ProjectLogger } from './project-logger'; import { SemverBumpType } from './version-actions'; export declare function deriveSpecifierFromConventionalCommits(nxReleaseConfig: NxReleaseConfig, projectGraph: ProjectGraph, projectLogger: ProjectLogger, releaseGroup: ReleaseGroupWithName, projectGraphNode: ProjectGraphProjectNode, isPrerelease: boolean, latestMatchingGitTag: Awaited<ReturnType<typeof getLatestGitTagForPattern>> | undefined, fallbackCurrentVersionResolver?: 'disk', preid?: string): Promise<SemverBumpType>; //# sourceMappingURL=derive-specifier-from-conventional-commits.d.ts.map