@riboseinc/anafero-cli 0.0.43 → 0.0.44

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/bootstrap.js CHANGED
@@ -131258,7 +131258,10 @@ schema (${ast._tag}): ${ast}`;
131258
131258
  const pageMap = (0, import_react212.useMemo)(
131259
131259
  function computePageMap() {
131260
131260
  const pageMap2 = { ...resourceMap };
131261
- for (const key of Object.keys(pageMap2).filter((p) => p.includes("#"))) {
131261
+ for (const key of Object.keys(pageMap2).filter((p) => (
131262
+ // Exclude in-page resources from page map
131263
+ p.includes("#") || p.includes(".")
131264
+ ))) {
131262
131265
  delete pageMap2[key];
131263
131266
  }
131264
131267
  return pageMap2;