UNPKG

lerna

Version:

Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository

7 lines (6 loc) 283 B
/** * Get all cycles within the given dependencies. * @param dependencies project dependencies grouped by source * @returns a list of cycles, where each cycle is a list of project names */ export declare function getCycles(dependencies: Record<string, Set<string>>): string[][];