UNPKG

workspace-tools

Version:

A collection of utilities that are useful in a git-controlled monorepo managed by one of these tools:

8 lines (7 loc) 292 B
/** * Searches all package names based on "scoping" (i.e. "scope" in the sense of inclusion). * NOTE: this is not the same as package scopes (`@scope/package`). */ export declare function getScopedPackages(search: string[], packages: { [pkg: string]: unknown; } | string[]): string[];