Repro steps are as follows:
I have a main.css.scss file that looks like this:
@import "defaults";
I have a _defaults.scss file that looks like this:
body { background: #FFF; }
When I first start the site, everything looks good. If I change main.css.scss, everything works as expected. But changes to _defaults.scss are not picked up unless I restart the server or touch main.css.scss
A workaround would be greatly appreciated!
It's really hacky, but this does fix the issue. In one terminal, I run the docpad server. In another terminal, I run this command:
What this does is touch the main scss file any time any of the imported scss files are touched. This in turn causes docpad to pick up the change and recompile the scss. There's probably a much better way to do this, but this works at the moment.
It's too hacky for me to actually accept it as the answer, though.