@jefuriiij/synthra 0.13.0 → 0.14.0

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.
@@ -1649,7 +1649,17 @@ var DEFAULT_IGNORE = [
1649
1649
  ".mypy_cache/",
1650
1650
  ".ruff_cache/",
1651
1651
  // .NET
1652
- "obj/"
1652
+ "obj/",
1653
+ // Generated / minified bundles — no readable symbols, so indexing them only
1654
+ // pollutes retrieval (a markup query like `nav|menu|toggle` spuriously matches
1655
+ // a symbol inside vendored plugin JS → a useless Moat block) and bloats the
1656
+ // graph. Committed bootstrap/swiper-style plugin JS is the common offender.
1657
+ "*.min.js",
1658
+ "*.min.cjs",
1659
+ "*.min.mjs",
1660
+ "*.min.css",
1661
+ "*.bundle.js",
1662
+ "*-min.js"
1653
1663
  ];
1654
1664
  var BINARY_EXTS = /* @__PURE__ */ new Set([
1655
1665
  ".png",