commands.js 233 B

1234567891011121314
  1. 'use strict';
  2. /**
  3. * Exports Yargs commands
  4. * @see https://github.com/yargs/yargs/blob/main/docs/advanced.md
  5. * @private
  6. * @module
  7. */
  8. module.exports = {
  9. init: require('./init'),
  10. // default command
  11. run: require('./run'),
  12. }