trm-client 5.0.0 → 5.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -46,6 +46,7 @@ exports.InquirerType = exports.LoggerType = void 0;
46
46
  exports.executeCommand = executeCommand;
47
47
  const commands = __importStar(require("../commands"));
48
48
  const Core = __importStar(require("trm-core"));
49
+ const Commons = __importStar(require("trm-commons"));
49
50
  const systemAlias_1 = require("../systemAlias");
50
51
  const logError_1 = require("./logError");
51
52
  const checkTrmDependencies_1 = require("./checkTrmDependencies");
@@ -92,6 +93,7 @@ function executeCommand(args) {
92
93
  try {
93
94
  yield Context_1.Context.getInstance().load();
94
95
  yield trm_commons_1.Plugin.call("client", "loadCore", { core: Core });
96
+ yield trm_commons_1.Plugin.call("client", "loadCommons", { commons: Commons });
95
97
  trm_commons_1.Inquirer.inquirer = _getInquirer(InquirerType.CLI);
96
98
  trm_commons_1.Logger.logger = _getLogger(args.logType, args.debug, args.logOutputFolder);
97
99
  if (process.platform !== 'win32' && process.platform !== 'darwin') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-client",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "TRM (Transport Request Manager) Client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",