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) 308 B
import { Rule } from '@angular-devkit/schematics'; /** * Checks whether the project exists in the workspace. * Throws an Error if the project is not found. * * @param schema The options provided to the schematic */ export declare function checkProjectExists(schema: { projectName: string; }): Rule;