grepmax 0.6.0 → 0.6.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.
@@ -14,25 +14,27 @@ exports.DEFAULT_IGNORE_PATTERNS = [
14
14
  "*.log",
15
15
  "*.csv",
16
16
  // Safety nets for nested non-git folders
17
- "**/node_modules/**",
18
- "**/dist/**",
19
- "**/build/**",
20
- "**/out/**",
21
- "**/target/**",
22
- "**/__pycache__/**",
23
- "**/coverage/**",
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/**",
17
+ // Use bare names so the `ignore` library matches the directory itself
18
+ // (prevents descending into it), not just files inside it.
19
+ "node_modules",
20
+ "dist",
21
+ "build",
22
+ "out",
23
+ "target",
24
+ "__pycache__",
25
+ "coverage",
26
+ "venv",
27
+ ".venv",
28
+ ".tox",
29
+ ".mypy_cache",
30
+ ".pytest_cache",
31
+ ".next",
32
+ ".nuxt",
33
+ ".gradle",
34
+ ".m2",
35
+ "vendor",
36
+ ".osgrep",
37
+ ".gmax",
36
38
  // Minified/generated assets
37
39
  "*.min.js",
38
40
  "*.min.css",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grepmax",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
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.6.0",
3
+ "version": "0.6.1",
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",