play-sass icon indicating copy to clipboard operation
play-sass copied to clipboard

Fix for dependency tests and scss files

Open jagregory opened this issue 13 years ago • 1 comments

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.

jagregory avatar Dec 07 '11 22:12 jagregory

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.

neurolabs avatar Feb 13 '12 13:02 neurolabs