qcobjects-cli 2.4.62 → 2.4.63

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.62
1
+ 2.4.63
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qcobjects-cli",
3
- "version": "2.4.62",
3
+ "version": "2.4.63",
4
4
  "description": "qcobjects cli command line tool",
5
5
  "main": "src/index.cjs",
6
6
  "module": "src/index.mjs",
@@ -40,10 +40,6 @@ const path = require("path");
40
40
  const absolutePath = path.resolve( __dirname, "./" );
41
41
  const { exec,execSync } = require("child_process");
42
42
 
43
- const package_config = require(absolutePath+"/package.json");
44
- const qcobjects_pkg_config = require("qcobjects/package.json");
45
- const qcobjects_sdk_pkg_config = require("qcobjects-sdk/package.json");
46
-
47
43
  console.log(welcometo);
48
44
  console.log(logo);
49
45
 
@@ -333,6 +333,7 @@ Package("org.quickcorp.qcobjects.main.http.gae.server", [
333
333
  logger.debug(this.showIPAddress());
334
334
  logger.info("Listening on HTTP PORT: " + CONFIG.get("serverPortHTTP").toString());
335
335
  logger.info("Go to: \n" + this.showPossibleURL());
336
+ this.interceptorInstances = interceptorInstances;
336
337
 
337
338
  const http = require("http");
338
339
 
@@ -353,6 +353,7 @@ Package("org.quickcorp.qcobjects.main.http.server",[
353
353
  logger.debug(this.showIPAddress());
354
354
  logger.info("Listening on HTTP PORT: "+CONFIG.get("serverPortHTTP").toString());
355
355
  logger.info("Go to: \n"+this.showPossibleURL());
356
+ this.interceptorInstances = interceptorInstances;
356
357
 
357
358
  const http = require("http");
358
359
  this.server = http.createServer((req, res) => {