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.
@@ -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 fs = _require_("fs");
2297
+ const { readFile } = __require("node:fs");
2298
2298
  logger.debug("SENDING THE NORMAL REQUEST ");
2299
- fs.readFile(component2.url, _componentLoaded);
2299
+ readFile(component2.url, _componentLoaded);
2300
2300
  }, "_directLoad");
2301
2301
  if (component2.cached) {
2302
2302
  logger.debug("USING CACHE FOR COMPONENT: " + component2.name);