raggrep 0.2.0 → 0.2.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.
package/dist/cli/main.js CHANGED
@@ -3551,6 +3551,10 @@ async function ensureIndexFresh(rootDir, options = {}) {
3551
3551
  try {
3552
3552
  await fs6.unlink(indexFilePath);
3553
3553
  } catch {}
3554
+ const symbolicFilePath = path12.join(indexPath, "symbolic", filepath.replace(/\.[^.]+$/, ".json"));
3555
+ try {
3556
+ await fs6.unlink(symbolicFilePath);
3557
+ } catch {}
3554
3558
  delete manifest.files[filepath];
3555
3559
  totalRemoved++;
3556
3560
  }
@@ -4021,7 +4025,7 @@ init_embeddings();
4021
4025
  // package.json
4022
4026
  var package_default = {
4023
4027
  name: "raggrep",
4024
- version: "0.2.0",
4028
+ version: "0.2.1",
4025
4029
  description: "Local filesystem-based RAG system for codebases - semantic search using local embeddings",
4026
4030
  type: "module",
4027
4031
  main: "./dist/index.js",
@@ -4455,4 +4459,4 @@ Run 'raggrep <command> --help' for more information.
4455
4459
  }
4456
4460
  main();
4457
4461
 
4458
- //# debugId=4B6F0EA9EEB7164864756E2164756E21
4462
+ //# debugId=8D69E082C39BA9C964756E2164756E21