qcobjects 2.3.66-lts → 2.3.67-lts
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/QCObjects.js +4 -0
- package/VERSION +1 -1
- package/package.json +1 -1
package/QCObjects.js
CHANGED
|
@@ -2801,6 +2801,10 @@
|
|
|
2801
2801
|
var _serviceLoaderInNode = function(service, _async) {
|
|
2802
2802
|
var _promise = new Promise(
|
|
2803
2803
|
function(resolve, reject) {
|
|
2804
|
+
if (typeof URL === "undefined") {
|
|
2805
|
+
global.URL = require("url").URL;
|
|
2806
|
+
let URL = global.URL;
|
|
2807
|
+
}
|
|
2804
2808
|
var serviceURL = new URL(service.url);
|
|
2805
2809
|
var req;
|
|
2806
2810
|
service.useHTTP2 = service.hasOwnProperty.call(service,"useHTTP2") && service.useHTTP2;
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.3.
|
|
1
|
+
2.3.67-lts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qcobjects",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.67-lts",
|
|
4
4
|
"description": "QCObjects is an Open-source framework that empowers full-stack developers to make micro-services and micro-frontends into an N-Tier architecture.",
|
|
5
5
|
"main": "QCObjects.js",
|
|
6
6
|
"license": "LGPL-3.0",
|