Closed
Description
Some SASS files in my projects seem not to be watched and do not trigger a recompile...
Here is the folder tree:
/app.scss
/_myproject.scss
/myproject/_mycomponent.scss
In /app.scss
I have :
@charset "UTF-8";
@import "myproject";
in /_myproject.scss
I have :
@import
"foundation",
"myproject/mycomponent";
When I edit the contents of /myproject/_mycomponent.scss
, the recompile is NOT triggered, even though if I manually hit the Compile button, everything is fine.
Actually, looking at the "imports" contents in the .koala/projects.js file in my home folder, it appears that all koala ever watches is the first-level imports, and does not recurse. Is that so ? Will this be extended to watch imports in imported files too please ?