Type alias: NxPluginV2<TOptions, TCreateNodes>

Ƭ NxPluginV2<TOptions, TCreateNodes>: Object

A plugin for Nx which creates nodes and dependencies for the ProjectGraph

Type parameters

NameType
TOptionsunknown
TCreateNodesextends CreateNodes<TOptions> | CreateNodesAsync<TOptions> = CreateNodes<TOptions> | CreateNodesAsync<TOptions>

Type declaration

NameTypeDescription
createDependencies?CreateDependencies<TOptions>Provides a function to analyze files to create dependencies for the ProjectGraph
createNodes?TCreateNodesProvides a file pattern and function that retrieves configuration info from those files. e.g. { '*/.csproj': buildProjectsFromCsProjFile }
namestring-