UNPKG

@better-builds/lets-version

Version:

A package that reads your conventional commits and git history and recommends (or applies) a SemVer version bump for you

8 lines (7 loc) 295 B
import { LocalDependencyGraphNode, PackageInfo } from './types.js'; /** * Scans the repository for all packages * and builds a local-only dependency graph * representation */ export declare function buildLocalDependencyGraph(allPackages: PackageInfo[]): Promise<LocalDependencyGraphNode[]>;