UNPKG

nx

Version:

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

16 lines (15 loc) 787 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.yargsStartCiRunCommand = void 0; const shared_options_1 = require("../../yargs-utils/shared-options"); exports.yargsStartCiRunCommand = { command: 'start-ci-run [options]', describe: 'Starts a new CI run for distributed task execution. This command is an alias for [`nx-cloud start-ci-run`](/docs/reference/nx-cloud-cli#npx-nxcloud-start-ci-run).', builder: (yargs) => (0, shared_options_1.withVerbose)(yargs) .help(false) .showHelpOnFail(false) .option('help', { describe: 'Show help.', type: 'boolean' }), handler: async (args) => { process.exit(await (await Promise.resolve().then(() => require('./start-ci-run'))).startCiRunHandler(args)); }, };