MCPcopy Index your code
hub / github.com/code-pushup/cli / nxTargetProject

Function nxTargetProject

testing/test-nx-utils/src/lib/utils/environment.ts:1–9  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1export 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};

Calls

no outgoing calls

Tested by

no test coverage detected