11 lines
301 B
TypeScript
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.`,
|
|
],
|
|
});
|
|
}
|