fix(cli): ignore waveform cache in project watcher

This commit is contained in:
Miguel Ángel
2026-08-02 17:19:51 +00:00
parent 7ea8250f50
commit bf739a4db2
2 changed files with 2 additions and 0 deletions
@@ -25,6 +25,7 @@ describe("shouldWatchProjectFile", () => {
expect(shouldWatchProjectFile(".hyperframes/cache.json")).toBe(false);
expect(shouldWatchProjectFile(".transcode-cache/proxy.mp4")).toBe(false);
expect(shouldWatchProjectFile(".thumbnails/frame.jpg")).toBe(false);
expect(shouldWatchProjectFile(".waveform-cache/peaks.json")).toBe(false);
});
});
+1
View File
@@ -15,6 +15,7 @@ const WATCHER_EXCLUDED_DIRS = new Set([
".next",
".thumbnails",
".transcode-cache",
".waveform-cache",
".vite",
"build",
"coverage",