UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

7 lines (6 loc) 407 B
import { type PackageDependency } from '../../../types'; import { type NpmManagerData } from '../../types'; import { type Catalog } from '../types'; export declare const PNPM_CATALOG_DEPENDENCY = "pnpm.catalog"; export declare const YARN_CATALOG_DEPENDENCY = "yarn.catalog"; export declare function extractCatalogDeps(catalogs: Catalog[], npmManager?: 'pnpm' | 'yarn'): PackageDependency<NpmManagerData>[];