26 lines
844 B
JavaScript
26 lines
844 B
JavaScript
|
const commander = require('commander');
|
||
|
|
||
|
// @ts-check
|
||
|
|
||
|
exports = module.exports = {};
|
||
|
|
||
|
// Return a different global program than commander,
|
||
|
// and don't also return it as default export.
|
||
|
exports.program = new commander.Command();
|
||
|
|
||
|
/**
|
||
|
* Expose classes. The FooT versions are just types, so return Commander original implementations!
|
||
|
*/
|
||
|
|
||
|
exports.Argument = commander.Argument;
|
||
|
exports.Command = commander.Command;
|
||
|
exports.CommanderError = commander.CommanderError;
|
||
|
exports.Help = commander.Help;
|
||
|
exports.InvalidArgumentError = commander.InvalidArgumentError;
|
||
|
exports.InvalidOptionArgumentError = commander.InvalidArgumentError; // Deprecated
|
||
|
exports.Option = commander.Option;
|
||
|
|
||
|
exports.createArgument = () => new commander.Argument();
|
||
|
exports.createCommand = () => new commander.Command();
|
||
|
exports.createOption = () => new commander.Option();
|