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.
- package/dist/app/indexer/index.d.ts +6 -4
- package/dist/cli/main.js +624 -82
- package/dist/cli/main.js.map +6 -5
- package/dist/domain/entities/fileIndex.d.ts +5 -0
- package/dist/index.js +636 -68
- package/dist/index.js.map +5 -4
- package/package.json +2 -1
|
@@ -36,6 +36,11 @@ export interface FileManifestEntry {
|
|
|
36
36
|
* This prevents false positives when git updates mtime on branch switches.
|
|
37
37
|
*/
|
|
38
38
|
contentHash?: string;
|
|
39
|
+
/**
|
|
40
|
+
* File size in bytes. Used as a quick filter:
|
|
41
|
+
* If mtime changed but size is same, content is likely unchanged.
|
|
42
|
+
*/
|
|
43
|
+
fileSize?: number;
|
|
39
44
|
}
|
|
40
45
|
/**
|
|
41
46
|
* Manifest tracking all indexed files for a specific module.
|