raggrep 0.1.6 → 0.1.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.
Files changed (23) hide show
  1. package/dist/app/indexer/index.d.ts +2 -2
  2. package/dist/cli/main.js +683 -489
  3. package/dist/cli/main.js.map +17 -16
  4. package/dist/{introspection/conventions/types.d.ts → domain/entities/conventions.d.ts} +6 -5
  5. package/dist/domain/entities/index.d.ts +2 -0
  6. package/dist/{introspection → domain/services}/conventions/configFiles.d.ts +1 -1
  7. package/dist/{introspection → domain/services}/conventions/entryPoints.d.ts +1 -1
  8. package/dist/{introspection → domain/services}/conventions/frameworks/convex.d.ts +1 -1
  9. package/dist/{introspection → domain/services}/conventions/frameworks/index.d.ts +1 -1
  10. package/dist/{introspection → domain/services}/conventions/frameworks/nextjs.d.ts +1 -1
  11. package/dist/{introspection → domain/services}/conventions/index.d.ts +5 -5
  12. package/dist/domain/services/introspection.d.ts +31 -0
  13. package/dist/index.js +646 -465
  14. package/dist/index.js.map +16 -16
  15. package/dist/{introspection/index.d.ts → infrastructure/introspection/IntrospectionIndex.d.ts} +3 -14
  16. package/dist/infrastructure/introspection/index.d.ts +9 -0
  17. package/dist/{introspection → infrastructure/introspection}/projectDetector.d.ts +3 -12
  18. package/dist/types.d.ts +4 -4
  19. package/package.json +1 -1
  20. package/dist/introspection/fileIntrospector.d.ts +0 -14
  21. /package/dist/{introspection/types.d.ts → domain/entities/introspection.d.ts} +0 -0
  22. /package/dist/{introspection → domain/services}/conventions/conventions.test.d.ts +0 -0
  23. /package/dist/{introspection → domain/services}/introspection.test.d.ts +0 -0
@@ -1,4 +1,4 @@
1
- import type { EmbeddingModelName } from '../../domain/ports';
1
+ import type { EmbeddingModelName } from "../../domain/ports";
2
2
  export interface IndexResult {
3
3
  moduleId: string;
4
4
  indexed: number;
@@ -55,4 +55,4 @@ export declare function cleanupIndex(rootDir: string, options?: {
55
55
  * @returns Index status information
56
56
  */
57
57
  export declare function getIndexStatus(rootDir: string): Promise<IndexStatus>;
58
- export { watchDirectory, type WatchOptions, type FileWatcher } from './watcher';
58
+ export { watchDirectory, type WatchOptions, type FileWatcher } from "./watcher";