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.

11 lines (10 loc) 336 B
import { Tree } from '@nrwl/devkit'; import { NormalizedSchema } from '../schema'; /** * Updates the project in the workspace file * * - update all references to the old root path * - change the project name * - change target references */ export declare function updateDefaultProject(tree: Tree, schema: NormalizedSchema): void;