@jefuriiij/synthra 0.13.0 → 0.13.1
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/CHANGELOG.md +14 -0
- package/dist/cli/index.js +12 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/dashboard/index.js.map +1 -1
- package/dist/server/index.js +11 -1
- package/dist/server/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ For older versions, see [GitHub Releases](https://github.com/jefuriiij/synthra/r
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.13.1] — 2026-06-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Minified/bundle files are no longer indexed.** Committed vendored plugin JS
|
|
15
|
+
(`*.min.js`, `*.bundle.js`, `*.min.css`, …) has no readable symbols, so indexing
|
|
16
|
+
it only polluted retrieval and caused **useless Moat blocks** on markup-heavy
|
|
17
|
+
projects — a Grep for CSS classes like `nav|menu|toggle` would spuriously match a
|
|
18
|
+
symbol *inside* the minified library and get blocked, only for `graph_continue` to
|
|
19
|
+
then find nothing. The scanner now skips these files (cleaner retrieval, smaller
|
|
20
|
+
graph, no behavior change for real source).
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
10
24
|
## [0.13.0] — 2026-06-24
|
|
11
25
|
|
|
12
26
|
### Added
|
package/dist/cli/index.js
CHANGED
|
@@ -18,7 +18,7 @@ var init_package = __esm({
|
|
|
18
18
|
"package.json"() {
|
|
19
19
|
package_default = {
|
|
20
20
|
name: "@jefuriiij/synthra",
|
|
21
|
-
version: "0.13.
|
|
21
|
+
version: "0.13.1",
|
|
22
22
|
publishConfig: {
|
|
23
23
|
access: "public"
|
|
24
24
|
},
|
|
@@ -2890,7 +2890,17 @@ var DEFAULT_IGNORE = [
|
|
|
2890
2890
|
".mypy_cache/",
|
|
2891
2891
|
".ruff_cache/",
|
|
2892
2892
|
// .NET
|
|
2893
|
-
"obj/"
|
|
2893
|
+
"obj/",
|
|
2894
|
+
// Generated / minified bundles — no readable symbols, so indexing them only
|
|
2895
|
+
// pollutes retrieval (a markup query like `nav|menu|toggle` spuriously matches
|
|
2896
|
+
// a symbol inside vendored plugin JS → a useless Moat block) and bloats the
|
|
2897
|
+
// graph. Committed bootstrap/swiper-style plugin JS is the common offender.
|
|
2898
|
+
"*.min.js",
|
|
2899
|
+
"*.min.cjs",
|
|
2900
|
+
"*.min.mjs",
|
|
2901
|
+
"*.min.css",
|
|
2902
|
+
"*.bundle.js",
|
|
2903
|
+
"*-min.js"
|
|
2894
2904
|
];
|
|
2895
2905
|
var BINARY_EXTS = /* @__PURE__ */ new Set([
|
|
2896
2906
|
".png",
|