UNPKG

@nrwl/workspace

Version:

Smart, Fast and Extensible Build System.

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;