@mishasinitcyn/betterrank 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cache.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mishasinitcyn/betterrank",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Structural code index with PageRank-ranked repo maps, symbol search, call-graph queries, and dependency analysis. Built on tree-sitter and graphology.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/cache.js CHANGED
@@ -50,6 +50,11 @@ const IGNORE_PATTERNS = [
50
50
  '**/Pods/**',
51
51
  '**/*.xcframework/**',
52
52
 
53
+ // UI component libraries (shadcn, etc.) — high fan-in but rarely investigation targets.
54
+ // To re-include, add "!**/components/ui/**" in .code-index/config.json ignore list,
55
+ // or pass --ignore '!**/components/ui/**' on the CLI.
56
+ '**/components/ui/**',
57
+
53
58
  // Scratch / temp
54
59
  'tmp/**',
55
60
  ];