UNPKG

@nrwl/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

19 lines (18 loc) 671 B
import type { Tree } from '@angular-devkit/schematics'; /** * @deprecated Nx no longer supports workspace.json */ 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;