@omlet/cli
Version:
Omlet (https://omlet.dev) is a component analytics tool that uses a CLI to scan your codebase to detect components and their usage. Get real usage insights from customizable charts to measure adoption across all projects and identify opportunities to impr
7 lines (6 loc) • 461 B
TypeScript
import { type Package } from "../package";
import { type TsConfigInfo } from "../tsConfigInfo";
import { type NxJsonConfiguration } from "./nxJsonConfiguration";
export declare function findNxWorkspacePaths(cwd: string): Promise<string[]>;
export declare function readNxConfig(repoPath: string): Promise<NxJsonConfiguration | undefined>;
export declare function readNxProject(rootPath: string, workspacePath: string, tsconfig?: TsConfigInfo): Promise<Package>;