UNPKG

@hyperse/dependency-sync

Version:

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

10 lines (9 loc) 287 B
import { getPackages as getPackagesFn, } from '@manypkg/get-packages'; /** * Get the packages in the cwd. * @param cwd - The current working directory. * @returns The packages in the cwd. */ export async function getPackages(cwd, options) { return getPackagesFn(cwd, options); }