No Description
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.

emulators-export.js 666B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.command = void 0;
  4. const command_1 = require("../command");
  5. const controller = require("../emulator/controller");
  6. const commandUtils = require("../emulator/commandUtils");
  7. const COMMAND_NAME = "emulators:export";
  8. exports.command = new command_1.Command(`${COMMAND_NAME} <path>`)
  9. .description("export data from running emulators")
  10. .withForce("overwrite any export data in the target directory")
  11. .option(commandUtils.FLAG_ONLY, commandUtils.DESC_ONLY)
  12. .action((exportPath, options) => {
  13. return controller.exportEmulatorData(exportPath, options, COMMAND_NAME);
  14. });