raggrep 0.10.4 → 0.10.7

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.
@@ -38,12 +38,14 @@ export interface TimingInfo {
38
38
  indexingMs: number;
39
39
  /** Time spent on cleanup operations */
40
40
  cleanupMs: number;
41
- /** Number of files discovered */
41
+ /** Number of files discovered on disk */
42
42
  filesDiscovered: number;
43
- /** Number of files that needed stat check */
43
+ /** Number of files that had stat checks performed (may be > filesDiscovered due to multiple modules) */
44
44
  filesStatChecked: number;
45
- /** Number of files that needed indexing */
46
- filesIndexed: number;
45
+ /** Number of files with detected changes (mtime or size changed) that went to Phase 2 */
46
+ filesWithChanges: number;
47
+ /** Number of files that were actually re-indexed (content changed) */
48
+ filesReindexed: number;
47
49
  /** Whether result was from cache */
48
50
  fromCache: boolean;
49
51
  }