nx
Version:
9 lines (8 loc) • 472 B
TypeScript
import type { Tree } from '../../generators/tree';
import type { CatalogDefinitions } from './types';
export declare function readBunCatalogDefinitions(filename: string, treeOrRoot: Tree | string, cache: Map<string, CatalogDefinitions | null>): CatalogDefinitions | null;
export declare function updateBunCatalogVersionsInFile(filename: string, treeOrRoot: Tree | string, updates: Array<{
packageName: string;
version: string;
catalogName?: string;
}>): void;