jstar-reviewer 2.4.3 → 2.4.4

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/bin/jstar.js CHANGED
@@ -29,7 +29,7 @@ function log(msg) {
29
29
 
30
30
  function printHelp() {
31
31
  log(`
32
- ${COLORS.bold}🌟 J-Star Reviewer v2.4.3${COLORS.reset}
32
+ ${COLORS.bold}🌟 J-Star Reviewer v2.4.4${COLORS.reset}
33
33
 
34
34
  ${COLORS.dim}AI-powered code review with local embeddings${COLORS.reset}
35
35
 
@@ -109,6 +109,7 @@ async function main() {
109
109
  /\.git/,
110
110
  /\.jstar/,
111
111
  /\.json$/, // Prefer code over JSON data for context unless docs
112
+ /\.(png|jpg|jpeg|gif|svg|ico|webp|bmp|tiff)$/i, // Exclude images (avoids vector store errors)
112
113
  ];
113
114
  const filteredDocuments = documents.filter(doc => {
114
115
  const filePath = doc.metadata?.file_path || doc.id_ || '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jstar-reviewer",
3
- "version": "2.4.3",
3
+ "version": "2.4.4",
4
4
  "description": "Local-First, Context-Aware AI Code Reviewer - Works with any language",
5
5
  "bin": {
6
6
  "jstar": "bin/jstar.js"
@@ -88,6 +88,7 @@ async function main() {
88
88
  /\.git/,
89
89
  /\.jstar/,
90
90
  /\.json$/, // Prefer code over JSON data for context unless docs
91
+ /\.(png|jpg|jpeg|gif|svg|ico|webp|bmp|tiff)$/i, // Exclude images (avoids vector store errors)
91
92
  ];
92
93
 
93
94
  const filteredDocuments = documents.filter(doc => {