()
| 1 | export const nxTargetProject = () => { |
| 2 | const project = process.env['NX_TASK_TARGET_PROJECT']; |
| 3 | if (project == null) { |
| 4 | throw new Error( |
| 5 | 'Process environment variable NX_TASK_TARGET_PROJECT is undefined.', |
| 6 | ); |
| 7 | } |
| 8 | return project; |
| 9 | }; |
no outgoing calls
no test coverage detected