command.js 300 B

123456789101112
  1. "use strict";
  2. /**
  3. * @see https://github.com/yargs/yargs/blob/master/docs/advanced.md#providing-a-command-module
  4. */
  5. exports.command = "info";
  6. exports.describe = "Prints debugging information about the local environment";
  7. exports.handler = function handler(argv) {
  8. return require(".")(argv);
  9. };