fs.watch(*file*, function(event, filename){
console.log('event ' + event);
console.log('filename ' + filename);
});
when the file changes this is outputting:
event: change
filename: null
Any ideas what could cause this? I’m on OSX.
Thanks!
From the documentation: