qcobjects 2.5.118-beta → 2.5.119-beta
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/build/componentLoader.js +3 -2
- package/package.json +1 -1
- package/public/browser/QCObjects.js +2 -2
- package/public/browser/QCObjects.js.map +2 -2
- package/public/cjs/QCObjects.cjs +2 -2
- package/public/cjs/QCObjects.cjs.map +2 -2
- package/public/esm/QCObjects.mjs +2 -2
- package/public/esm/QCObjects.mjs.map +2 -2
- package/src/componentLoader.ts +4 -3
package/public/esm/QCObjects.mjs
CHANGED
|
@@ -2294,9 +2294,9 @@ var init_componentLoader = __esm({
|
|
|
2294
2294
|
} else {
|
|
2295
2295
|
logger.debug("Loading the component as a local file in server...");
|
|
2296
2296
|
const _directLoad = /* @__PURE__ */ __name(function() {
|
|
2297
|
-
const
|
|
2297
|
+
const { readFile } = __require("node:fs");
|
|
2298
2298
|
logger.debug("SENDING THE NORMAL REQUEST ");
|
|
2299
|
-
|
|
2299
|
+
readFile(component2.url, _componentLoaded);
|
|
2300
2300
|
}, "_directLoad");
|
|
2301
2301
|
if (component2.cached) {
|
|
2302
2302
|
logger.debug("USING CACHE FOR COMPONENT: " + component2.name);
|