UNPKG

@nx/devkit

Version:

The Nx Devkit is used to customize Nx for different technologies and use cases. It contains many utility functions for reading and writing files, updating configuration, working with Abstract Syntax Trees(ASTs), and more. Learn more about [extending Nx by

13 lines (12 loc) 455 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.logShowProjectCommand = logShowProjectCommand; const devkit_exports_1 = require("nx/src/devkit-exports"); function logShowProjectCommand(projectName) { devkit_exports_1.output.log({ title: `👀 View Details of ${projectName}`, bodyLines: [ `Run "nx show project ${projectName}" to view details about this project.`, ], }); }