Excellent work on this starter project, it has been incredibly useful! I just ran into one problem (stylesheets not loading using middleman server) and after quite a bit of debugging I found that the Linux kernel’s inotify events were firing initially when the css file was deleted, but then stopped working. First I thought it was a race condition, but ultimately I realized the issue was that the .tmp directory itself was being deleted with the Gulp clean process and then any changes within the .tmp folder after that weren’t being picked up. Here's a PR to fix this. There may be cleaner approach (I'm open to suggestions) but I've verified that this fixes the problem on Ubuntu 14.04, and still works on OS X too.
Excellent work on this starter project, it has been incredibly useful! I just ran into one problem (stylesheets not loading using
middleman server
) and after quite a bit of debugging I found that the Linux kernel’s inotify events were firing initially when the css file was deleted, but then stopped working. First I thought it was a race condition, but ultimately I realized the issue was that the .tmp directory itself was being deleted with the Gulp clean process and then any changes within the .tmp folder after that weren’t being picked up. Here's a PR to fix this. There may be cleaner approach (I'm open to suggestions) but I've verified that this fixes the problem on Ubuntu 14.04, and still works on OS X too.