ee5a282e659becc9f231051d91d4541c0618662e86b3f231980008ad2f11c8271a3b54303864a35be03f770f2de0cc0b0ed0b4c6e6a3142a7f484fa2ecba0f 310 B

12345678910111213141516
  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. InvalidOptionArgumentError, // deprecated old name
  11. Command,
  12. Argument,
  13. Option,
  14. Help,
  15. } = commander;