generate.js 339 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.GenerateRunner = void 0;
  4. class GenerateRunner {
  5. createOptionsFromCommandLine(inputs, options) {
  6. const [name] = inputs;
  7. return { name };
  8. }
  9. async ensureCommandLine(inputs, options) { }
  10. }
  11. exports.GenerateRunner = GenerateRunner;