You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
256 B

1 month ago
  1. import commander from './index.js';
  2. // wrapper to provide named exports for ESM.
  3. export const {
  4. program,
  5. createCommand,
  6. createArgument,
  7. createOption,
  8. CommanderError,
  9. InvalidArgumentError,
  10. Command,
  11. Argument,
  12. Option,
  13. Help
  14. } = commander;