Windows 10 non existent folders causes onchange to fail
See original GitHub issueWhen running onchange in windows 10 I can get the function to work when I have the app
directory:
onchange \"app/**/*.js\" -- npm test
However it doesn’t work when I have the app
directory but not the test
directory:
onchange \"app/**/*.js\" \"test/**/*.js\" -- npm test
There seems to be an issue with non existent folders when using onchange on Windows 10.
Issue Analytics
- State:
- Created 6 years ago
- Comments:9
Top Results From Across the Web
Unable to change "location" of folders
Hi,. In regard with your query, its possible that some part of the hard drive that you are transferring your folder to might...
Read more >"Access Denied" or other errors when you access or work ...
Cause An "Access Denied" error message can occur for one or more of the following reasons: The folder ownership has changed. You do...
Read more >the action can't be completed because the folder or a file in ...
This error message seems to be triggered by any application that has navigated to the folder in question, usually with the File -...
Read more >Troubleshoot Start menu errors - Windows Client
Learn how to troubleshoot common Start menu errors in Windows 10. ... to folders or registry keys can cause issues with Start performance....
Read more >Operation to change a personal folder location fails in ...
However, after the operation, the two folders' locations are not separated. For more information about how to change the location of a personal...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Does this sound related: https://github.com/paulmillr/chokidar/issues/346?
Have you tried single quotes? I don’t use Window personally, but I know there’s some oddities. On another note, I’d just recommend combining them in a glob pattern:
{app,test}/**/*.js
.