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.

13 lines
772 B

2 months ago
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.command = void 0;
  4. const functionsShellCommandAction_1 = require("../functionsShellCommandAction");
  5. const command_1 = require("../command");
  6. const requireConfig_1 = require("../requireConfig");
  7. const requirePermissions_1 = require("../requirePermissions");
  8. exports.command = new command_1.Command("experimental:functions:shell")
  9. .description("launch full Node shell with emulated functions. (Alias for `firebase functions:shell.)")
  10. .option("-p, --port <port>", "the port on which to emulate functions (default: 5000)", 5000)
  11. .before(requireConfig_1.requireConfig)
  12. .before(requirePermissions_1.requirePermissions)
  13. .action(functionsShellCommandAction_1.actionFunction);