You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
cristian-spiescu
changed the title
When watching multiple patterns (e.g. **/*.ts AND **/*.tsx), some files from linked dirs are skipped
When watching multiple patterns (e.g. ["**/*.ts", "**/*.tsx"]), some files from linked dirs are skipped
Mar 8, 2020
Describe the bug
I have the following dir structure:
Watching "." works. I.e it finds all the 4 files above. But watching
[ "**/*.ts*", "**/t.tsx"]
doesn't findlink/file.tsx
. I.e. it finds only 3 files.NOTE: The above input for
chokidar
is generated bymocha
.Versions (please complete the following information):
To Reproduce:
Using the 2 dirs and 4 files cf. above:
outputs:
We can see that
link/file.tsx
is missing. So we have 3 of 4 files present.If using:
const watcher = chokidar.watch(".")
, all 4 files are present:The text was updated successfully, but these errors were encountered: