UNPKG

@yolkai/nx-workspace

Version:

Extensible Dev Tools for Monorepos

10 lines (9 loc) 460 B
import { ProjectGraphNode } from '../core/project-graph'; import { NxArgs } from './utils'; import { NxJson } from '../core/shared-interfaces'; export declare function printArgsWarning(options: NxArgs): void; export declare function parseFiles(options: NxArgs): { files: string[]; }; export declare function getProjectNodes(workspaceJson: any, nxJson: NxJson): ProjectGraphNode[]; export declare function getProjectRoots(projectNames: string[]): string[];