( options?: Partial<CreateNodesContextV2>, )
| 1 | import type { CreateNodesContextV2 } from '@nx/devkit'; |
| 2 | |
| 3 | export function createNodesV2Context( |
| 4 | options?: Partial<CreateNodesContextV2>, |
| 5 | ): CreateNodesContextV2 { |
| 6 | const { workspaceRoot = process.cwd(), nxJsonConfiguration = {} } = |
| 7 | options ?? {}; |
| 8 | return { |
| 9 | workspaceRoot, |
| 10 | nxJsonConfiguration, |
| 11 | }; |
| 12 | } |
no outgoing calls
no test coverage detected