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
In on Windows 8.1
I use Webpack for client code.
The server is run with nodemon simultaneously with Webpack.
When Webpack runs it parses all require()s and reads files from disk.
As it happens, false "change" event is being fired for each file accessed by Webpack (atime is not modified).
Via whatever combination of processes you're running, the OS is reporting change events. It isn't based on changing timestamps. You can log what's passed with the raw event to get more details on that. Aside from when it is a misreported add or unlink chokidar has no way to validate the accuracy of whether a file was actually changed.
You could try the usePolling: true option to see if it gives you results more like you'd expect and the perf impact is tolerable.
In on Windows 8.1
I use Webpack for client code.
The server is run with
nodemon
simultaneously with Webpack.When Webpack runs it parses all
require()
s and reads files from disk.As it happens, false "change" event is being fired for each file accessed by Webpack (atime is not modified).
The text was updated successfully, but these errors were encountered: