暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

setup-emulators-storage.js 511B

123456789101112
  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.STORAGE;
  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. });