nx
Version:
16 lines (15 loc) • 681 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.yargsPolygraphCommand = void 0;
const shared_options_1 = require("../../yargs-utils/shared-options");
exports.yargsPolygraphCommand = {
command: 'polygraph [options]',
describe: 'Coordinates changes across multiple repositories using Polygraph.',
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('./polygraph'))).polygraphHandler(args));
},
};