We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac804b0 commit 7acb20fCopy full SHA for 7acb20f
libs/language-server/watcher/src/lib/daemon-watcher.ts
@@ -95,8 +95,8 @@ export class DaemonWatcher {
95
data?.changedFiles?.filter((f) => {
96
const normalized = normalize(f.path);
97
return !(
98
- normalized.startsWith(normalize('.yarn/cache')) ||
99
- normalized.startsWith(normalize('.nx/cache'))
+ normalized.includes(normalize('.yarn/cache')) ||
+ normalized.includes(normalize('.nx/cache'))
100
);
101
}) ?? [];
102
if (filteredChangedFiles.length === 0) {
0 commit comments