raggrep 0.8.1 → 0.8.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.
- package/README.md +43 -7
- package/dist/cli/main.js +1546 -14
- package/dist/cli/main.js.map +22 -14
- package/dist/domain/entities/searchResult.d.ts +11 -2
- package/dist/index.js +1435 -7
- package/dist/index.js.map +20 -12
- package/package.json +1 -1
|
@@ -75,8 +75,17 @@ export interface SearchOptions {
|
|
|
75
75
|
/** Filter to specific file patterns (e.g., ['*.ts', '*.tsx']) */
|
|
76
76
|
filePatterns?: string[];
|
|
77
77
|
/**
|
|
78
|
-
* Filter
|
|
79
|
-
*
|
|
78
|
+
* Filter results by path prefix or glob pattern.
|
|
79
|
+
*
|
|
80
|
+
* Supports two modes:
|
|
81
|
+
* - Path prefix: 'src/auth' matches all files in src/auth/
|
|
82
|
+
* - Glob pattern: '*.ts' matches all TypeScript files, '*.md' matches markdown
|
|
83
|
+
*
|
|
84
|
+
* Examples:
|
|
85
|
+
* - ['src/auth'] - files in src/auth/
|
|
86
|
+
* - ['*.ts'] - all TypeScript files
|
|
87
|
+
* - ['*.md'] - all Markdown files
|
|
88
|
+
* - ['src/**\/*.test.ts'] - test files in src/
|
|
80
89
|
*/
|
|
81
90
|
pathFilter?: string[];
|
|
82
91
|
/**
|