qcobjects 2.4.82 → 2.4.84
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 +1 -1
- package/package.json +1 -1
- package/src/QCObjects.js +10 -13
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.84
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qcobjects",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.84",
|
|
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": "src/index.cjs",
|
|
6
6
|
"module": "src/index.mjs",
|
package/src/QCObjects.js
CHANGED
|
@@ -4938,25 +4938,22 @@
|
|
|
4938
4938
|
return _promise;
|
|
4939
4939
|
};
|
|
4940
4940
|
var _buildComponents = function () {
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
logger.debug("Initializing the service worker");
|
|
4944
|
-
_promise_ = __load__serviceWorker.call(_top)
|
|
4945
|
-
.finally (function (){
|
|
4941
|
+
return new Promise ((resolve, reject) => {
|
|
4942
|
+
if (isBrowser) {
|
|
4946
4943
|
logger.debug("Starting to building components");
|
|
4947
4944
|
try {
|
|
4948
4945
|
_top.componentsStack = document.buildComponents.call(document);
|
|
4949
4946
|
}catch (e){
|
|
4950
4947
|
throw Error (`Something went wrong trying to start components tree: ${e.message}`);
|
|
4951
4948
|
}
|
|
4952
|
-
|
|
4953
|
-
|
|
4954
|
-
|
|
4955
|
-
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
4949
|
+
logger.debug("Initializing the service worker");
|
|
4950
|
+
__load__serviceWorker.call(_top)
|
|
4951
|
+
.catch(function (e) {
|
|
4952
|
+
logger.debug(`error loading the service worker ${e}`);
|
|
4953
|
+
});
|
|
4954
|
+
}
|
|
4955
|
+
resolve();
|
|
4956
|
+
});
|
|
4960
4957
|
};
|
|
4961
4958
|
logger.debug("Starting to load the config settings...");
|
|
4962
4959
|
if (_top.CONFIG.get("useConfigService", false)) {
|