UNPKG

379 BTypeScriptView Raw
1import type { ProjectGraph } from '@nrwl/devkit';
2/**
3 * Creates a package.json in the output directory for support to install dependencies within containers.
4 *
5 * If a package.json exists in the project, it will reuse that.
6 */
7export declare function createPackageJson(projectName: string, graph: ProjectGraph, options: {
8 projectRoot?: string;
9 root?: string;
10}): any;