@runeya/runeya 2.0.3 → 2.0.4

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/agent/index.js CHANGED
@@ -4470,10 +4470,14 @@ var gitRouter = router({
4470
4470
  const gitWatcher = fsWatch(absGitDir, { recursive: true }, (event, filename) => {
4471
4471
  onFsChange();
4472
4472
  });
4473
+ gitWatcher.on("error", () => {
4474
+ });
4473
4475
  const cwdWatcher = fsWatch(cwd, { recursive: true }, (event, filename) => {
4474
4476
  if (filename && filename.startsWith(".git")) return;
4475
4477
  onFsChange();
4476
4478
  });
4479
+ cwdWatcher.on("error", () => {
4480
+ });
4477
4481
  yield await getGitStatus(cwd);
4478
4482
  try {
4479
4483
  while (true) {