@nx-dotnet/core
Version:
- Have an existing nx workspace. For creating this, see [nrwl's documentation](https://nx.dev/latest/angular/getting-started/nx-setup). - .NET SDK is installed, and `dotnet` is available on the path. For help on this, see [Microsoft's documentation](https
10 lines (9 loc) • 491 B
TypeScript
import { ProjectGraph, Tree } from '@nx/devkit';
import { ModuleBoundaries } from '@nx-dotnet/utils';
export declare function checkModuleBoundariesForProject(project: string, graph: ProjectGraph): Promise<string[]>;
/**
* Loads module boundaries from eslintrc or .nx-dotnet.rc.json
* @param root Which file should be used when pulling from eslint
* @returns List of module boundaries
*/
export declare function loadModuleBoundaries(root: string, host?: Tree): Promise<ModuleBoundaries>;