qcobjects-cli 2.4.55 → 2.4.56
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.
|
|
1
|
+
2.4.56
|
package/package.json
CHANGED
|
@@ -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", ()=> {
|