UNPKG

nx

Version:

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

10 lines (9 loc) 518 B
import type { Tree } from '../../generators/tree'; import type { CatalogManager } from './manager'; import { getCatalogManager } from './manager-factory'; export { type CatalogManager, getCatalogManager }; /** * Detects which packages in a package.json use catalog references * Returns Map of package name -> catalog name (undefined for default catalog) */ export declare function getCatalogDependenciesFromPackageJson(tree: Tree, packageJsonPath: string, manager: CatalogManager): Map<string, string | undefined>;