nx/packages/angular/src/generators/stories/lib/get-e2e-project.ts

17 lines
395 B
TypeScript

import type { ProjectConfiguration, Tree } from '@nx/devkit';
import { readProjectConfiguration } from '@nx/devkit';
export function getE2EProject(
tree: Tree,
e2eProjectName: string
): ProjectConfiguration {
let e2eProject: ProjectConfiguration;
try {
e2eProject = readProjectConfiguration(tree, e2eProjectName);
} catch {
e2eProject = undefined;
}
return e2eProject;
}