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) 379 B
import type { ProjectGraph } from '@nrwl/devkit'; /** * Creates a package.json in the output directory for support to install dependencies within containers. * * If a package.json exists in the project, it will reuse that. */ export declare function createPackageJson(projectName: string, graph: ProjectGraph, options: { projectRoot?: string; root?: string; }): any;