UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

12 lines (11 loc) 439 B
import type { NxJsonConfiguration } from '../../config/nx-json'; import type { Tree } from '../tree'; /** * @deprecated You must pass a {@link Tree}. This will be removed in Nx 21. */ export declare function readNxJson(): NxJsonConfiguration | null; export declare function readNxJson(tree: Tree): NxJsonConfiguration | null; /** * Update nx.json */ export declare function updateNxJson(tree: Tree, nxJson: NxJsonConfiguration): void;