File: /var/www/web.enelar.com.co/node_modules/nx/src/command-line/init/command-object.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.yargsInitCommand = void 0;
const shared_options_1 = require("../yargs-utils/shared-options");
exports.yargsInitCommand = {
command: 'init',
describe: 'Adds Nx to any type of workspace. It installs nx, creates an nx.json configuration file and optionally sets up distributed caching. For more info, check https://nx.dev/recipes/adopting-nx.',
builder: (yargs) => withInitOptions(yargs),
handler: async (args) => {
await (await Promise.resolve().then(() => require('./init'))).initHandler(args);
process.exit(0);
},
};
function withInitOptions(yargs) {
return yargs
.option('nxCloud', {
type: 'boolean',
description: 'Set up distributed caching with Nx Cloud.',
})
.option('interactive', {
describe: 'When false disables interactive input prompts for options.',
type: 'boolean',
default: true,
})
.option('integrated', {
type: 'boolean',
description: 'Migrate to an Nx integrated layout workspace. Only for Angular CLI workspaces and CRA projects.',
default: false,
})
.option('addE2e', {
describe: 'Set up Cypress E2E tests in integrated workspaces. Only for CRA projects.',
type: 'boolean',
default: false,
})
.option('useDotNxInstallation', {
type: 'boolean',
description: 'Initialize an Nx workspace setup in the .nx directory of the current repository.',
default: false,
})
.option('force', {
describe: 'Force the migration to continue and ignore custom webpack setup or uncommitted changes. Only for CRA projects.',
type: 'boolean',
default: false,
})
.option('vite', {
type: 'boolean',
description: 'Use Vite as the bundler. Only for CRA projects.',
default: true,
})
.option('cacheable', {
type: 'string',
description: 'Comma-separated list of cacheable operations. Only used for internal testing.',
coerce: shared_options_1.parseCSV,
hidden: true,
});
}