qcobjects-cli 2.4.55 → 2.4.59

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.
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.4.55
1
+ 2.4.59
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qcobjects-cli",
3
- "version": "2.4.55",
3
+ "version": "2.4.59",
4
4
  "description": "qcobjects cli command line tool",
5
5
  "main": "src/index.cjs",
6
6
  "module": "src/index.mjs",
@@ -42,12 +42,12 @@
42
42
  "eslint-plugin-n": "^15.7.0",
43
43
  "eslint-plugin-promise": "^6.1.1",
44
44
  "jasmine": "^3.99.0",
45
- "qcobjects": "^2.4.92",
45
+ "qcobjects": "^2.4.94",
46
46
  "qcobjects-sdk": "^2.4.60",
47
47
  "qcobjects-tsconfig": "^2.4.10"
48
48
  },
49
49
  "peerDependencies": {
50
- "qcobjects": "^2.4.92",
50
+ "qcobjects": "^2.4.94",
51
51
  "qcobjects-sdk": "^2.4.60"
52
52
  },
53
53
  "repository": {
@@ -360,6 +360,14 @@ try {
360
360
  throw Error(`Something went wrong trying to load Dev commands: ${e.message}`);
361
361
  }
362
362
 
363
+ try {
364
+ const commands = CONFIG.get("backend", {commands:[]}).commands || [];
365
+ const devCommands = CONFIG.get("backend", {devCommands:[]}).devCommands || [];
366
+ setBackendValue("plugins", commands.concat(devCommands));
367
+ } catch (e) {
368
+ throw Error(`Something went wrong trying to load plugins list: ${e.message}`);
369
+ }
370
+
363
371
  logger.info("Dependencies loaded");
364
372
 
365
373
  process.once("SIGTERM", ()=> {