grepmax 0.2.1 → 0.2.2

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/dist/config.js CHANGED
@@ -142,7 +142,6 @@ exports.INDEXABLE_EXTENSIONS = new Set([
142
142
  ".xml",
143
143
  ".md",
144
144
  ".mdx",
145
- ".txt",
146
145
  ".gitignore",
147
146
  ".dockerfile",
148
147
  "dockerfile",
@@ -22,6 +22,22 @@ exports.DEFAULT_IGNORE_PATTERNS = [
22
22
  "**/__pycache__/**",
23
23
  "**/coverage/**",
24
24
  "**/venv/**",
25
+ "**/.venv/**",
26
+ "**/.tox/**",
27
+ "**/.mypy_cache/**",
28
+ "**/.pytest_cache/**",
29
+ "**/.next/**",
30
+ "**/.nuxt/**",
31
+ "**/.gradle/**",
32
+ "**/.m2/**",
33
+ "**/vendor/**",
34
+ "**/.osgrep/**",
35
+ "**/.gmax/**",
36
+ // Minified/generated assets
37
+ "*.min.js",
38
+ "*.min.css",
39
+ "*.map",
40
+ "*.wasm",
25
41
  // Test fixtures and benchmark data
26
42
  "**/fixtures/**",
27
43
  "**/benchmark/**",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grepmax",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "author": "Robert Owens <robowens@me.com>",
5
5
  "homepage": "https://github.com/reowens/grepmax",
6
6
  "bugs": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grepmax",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Semantic code search for Claude Code. Automatically indexes your project and provides intelligent search capabilities.",
5
5
  "author": {
6
6
  "name": "Robert Owens",