nx
Version:
13 lines (12 loc) • 601 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.yargsLogoutCommand = void 0;
const shared_options_1 = require("../../command-line/yargs-utils/shared-options");
exports.yargsLogoutCommand = {
command: 'logout',
describe: 'Logout from Nx Cloud. This command is an alias for [`nx-cloud logout`](/ci/reference/nx-cloud-cli#npx-nxcloud-logout).',
builder: (yargs) => (0, shared_options_1.withVerbose)(yargs),
handler: async (args) => {
process.exit(await (await Promise.resolve().then(() => require('./logout'))).logoutHandler(args));
},
};