UNPKG

423 BTypeScriptView Raw
1import { ProjectConfiguration, Tree } from '@nrwl/devkit';
2import { NormalizedSchema } from '../schema';
3/**
4 * Updates the files in the root of the project
5 *
6 * Typically these are config files which point outside of the project folder
7 *
8 * @param schema The options provided to the schematic
9 */
10export declare function updateProjectRootFiles(tree: Tree, schema: NormalizedSchema, project: ProjectConfiguration): void;