@forge/cli

12.22.0-experimental-04cc2b912.23.0-next.7-experimental-44b7a12
out/command-line/index.js
~out/command-line/index.jsModified
+3−3
Index: package/out/command-line/index.js
===================================================================
--- package/out/command-line/index.js
+++ package/out/command-line/index.js
@@ -1,9 +1,7 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
-exports.main = void 0;
-exports.setupProxy = setupProxy;
-exports.registerCommands = registerCommands;
+exports.main = exports.registerCommands = exports.setupProxy = void 0;
 const tslib_1 = require("tslib");
 const cli_shared_1 = require("@forge/cli-shared");
 const http_proxy_agent_1 = require("http-proxy-agent");
 const http_1 = tslib_1.__importDefault(require("http"));
@@ -80,8 +78,9 @@
         https_1.default.globalAgent = agent;
         return agent;
     }
 }
+exports.setupProxy = setupProxy;
 async function registerCommands(deps) {
     (0, register_autocomplete_commands_1.registerCommands)(deps);
     (0, register_authentication_command_1.registerCommands)(deps);
     await (0, register_app_commands_1.registerCommands)(deps);
@@ -108,8 +107,9 @@
     (0, register_assistant_commands_1.registerCommands)(deps);
     (0, register_custom_scopes_commands_1.registerCommands)(deps);
     applyCommandHelpGroups(deps);
 }
+exports.registerCommands = registerCommands;
 const registerEvents = ({ ui }) => {
     process.on('unhandledRejection', async (reason) => {
         await (0, cli_shared_1.exitOnError)(ui, reason);
     });