play-sass
play-sass copied to clipboard
Fix for dependency tests and scss files
The current dependency change checking code will only look for .sass
files, not .scss
even though the main processor works fine with .scss
.
With this change DEV
mode will correctly pick up changes to files included without an extension (include "base"
) which actually refer to a .scss
file.
stumbled over this, too. scss syntax is closer to css, that's why I prefer it. And I would really like an official module release with this fix included.
There is a workaround, though. Instead of including
@import "name";
you can just include
@import "_name.scss";
and the dependencies will be resolved correctly.
Thanks for the effort.