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) 592 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.yargsFixCiCommand = void 0; const shared_options_1 = require("../../yargs-utils/shared-options"); exports.yargsFixCiCommand = { command: 'fix-ci [options]', describe: 'Fixes CI failures. This command is an alias for [`nx-cloud fix-ci`](/ci/reference/nx-cloud-cli#npx-nxcloud-fix-ci).', builder: (yargs) => (0, shared_options_1.withVerbose)(yargs), handler: async (args) => { process.exit(await (await Promise.resolve().then(() => require('./fix-ci'))).fixCiHandler(args)); }, };