GSI - Employe Self Service Mobile
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.

12 lines
510 B

2 months ago
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.command = void 0;
  4. const command_1 = require("../command");
  5. const download_1 = require("../emulator/download");
  6. const types_1 = require("../emulator/types");
  7. const EMULATOR_NAME = types_1.Emulators.PUBSUB;
  8. exports.command = new command_1.Command(`setup:emulators:${EMULATOR_NAME}`)
  9. .description(`downloads the ${EMULATOR_NAME} emulator`)
  10. .action(() => {
  11. return (0, download_1.downloadEmulator)(EMULATOR_NAME);
  12. });