UNPKG

@nx/devkit

Version:

The Nx Devkit is used to customize Nx for different technologies and use cases. It contains many utility functions for reading and writing files, updating configuration, working with Abstract Syntax Trees(ASTs), and more. Learn more about [extending Nx by

10 lines 553 B
import { type Tree } from 'nx/src/devkit-exports'; import { getCatalogManager } from './manager-factory'; import type { CatalogManager } from './manager'; 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>; //# sourceMappingURL=index.d.ts.map