nx/packages/devkit/src/utils/log-show-project-command.ts
2024-05-01 12:12:32 -04:00

11 lines
301 B
TypeScript

import { output } from 'nx/src/devkit-exports';
export function logShowProjectCommand(projectName: string): void {
output.log({
title: `👀 View Details of ${projectName}`,
bodyLines: [
`Run "nx show project ${projectName} --web" to view details about this project.`,
],
});
}