@yolkai/nx-workspace
Version:
10 lines (9 loc) • 460 B
TypeScript
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[];