UNPKG

@hyperse/dependency-sync

Version:

A comprehensive Node.js utility for managing dependencies in monorepo environments, specifically designed for Hyperse plugin ecosystems.

7 lines (6 loc) 399 B
/** * Checks if any imported packages in the source files are missing from the project's package.json dependencies, devDependencies * @param projectCwd - The project directory * @param ignoredCheckList - The list of packages to ignore when checking for missing declarations */ export declare function checkMissedPackageDeclaration(projectCwd: string, ignoredCheckList: string[]): Promise<void>;