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