lerna
Version:
Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository
3 lines (2 loc) • 307 B
TypeScript
export declare function makeFileFinder(rootPath: string, packageConfigs: any[]): (fileName: string, fileMapper: any, customGlobOpts: any) => Promise<any>;
export declare function makeSyncFileFinder(rootPath: string, packageConfigs: any[]): <T>(fileName: string, fileMapper: (filePath: string) => T) => T[];