qcobjects 2.5.117-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/build-esbuild.js +1 -1
- 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/cjs/QCObjects.cjs
CHANGED
|
@@ -2290,9 +2290,9 @@ var init_componentLoader = __esm({
|
|
|
2290
2290
|
} else {
|
|
2291
2291
|
logger.debug("Loading the component as a local file in server...");
|
|
2292
2292
|
const _directLoad = /* @__PURE__ */ __name(function() {
|
|
2293
|
-
const
|
|
2293
|
+
const { readFile } = require("node:fs");
|
|
2294
2294
|
logger.debug("SENDING THE NORMAL REQUEST ");
|
|
2295
|
-
|
|
2295
|
+
readFile(component2.url, _componentLoaded);
|
|
2296
2296
|
}, "_directLoad");
|
|
2297
2297
|
if (component2.cached) {
|
|
2298
2298
|
logger.debug("USING CACHE FOR COMPONENT: " + component2.name);
|