UNPKG

@nrwl/workspace

Version:

Smart, Fast and Extensible Build System.

16 lines (15 loc) 606 B
import { Tree } from '@angular-devkit/schematics'; export declare function getWorkspacePath(host: Tree): string; export declare function getNpmScope(host: Tree): string; export declare function parseTarget(targetString: string): { project: string; target: string; config: string; }; export declare function editTarget(targetString: string, callback: any): string; export declare function serializeTarget({ project, target, config }: { project: any; target: any; config: any; }): string; export declare function replaceAppNameWithPath(node: any, appName: string, root: string): any;