UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

13 lines (12 loc) 475 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.yargsReportCommand = void 0; const handle_import_1 = require("../../utils/handle-import"); exports.yargsReportCommand = { command: 'report', describe: 'Reports useful version numbers to copy into the Nx issue template.', handler: async () => { await (await (0, handle_import_1.handleImport)('./report.js', __dirname)).reportHandler(); process.exit(0); }, };