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
I am running macOS High Sierra (10.13.3). The plugin is correctly executed according to the log but nothing happens when a file arrives in the folder it is supposed to monitor.
I think it comes from a problem between chokidar and macOS Events API. I achieved to make the plugin work by changing the way chokidar is instantiated in index.js. I specified the following options: persistent: true, useFsEvents:false.
var watcher = chokidar.watch(this.path, {persistent: true, useFsEvents:false});
I use it since two days. It works very well!
The text was updated successfully, but these errors were encountered:
Hello,
I am running macOS High Sierra (10.13.3). The plugin is correctly executed according to the log but nothing happens when a file arrives in the folder it is supposed to monitor.
I think it comes from a problem between chokidar and macOS Events API. I achieved to make the plugin work by changing the way chokidar is instantiated in index.js. I specified the following options: persistent: true, useFsEvents:false.
var watcher = chokidar.watch(this.path, {persistent: true, useFsEvents:false});
I use it since two days. It works very well!
The text was updated successfully, but these errors were encountered: