Open bryaan opened 9 years ago
Looking into SbtSass.scala I see that this problem originates from using modifiedSources.
This of course cannot find dependencies of variables.sass that may need to be compiled.
Why don't we change this to use the sass --watch flag which will take care of the dependency check automatically and requires no code duplication on our side?
When a change is made in say variables.sass that is referenced by say main.sass, only the variables file compiles.
Problem is the main.sass references a variable in that changed file but is not compiled so the change does not propagate.
I attempted to use --force, but this requires --update, and in this configuration it is not easy to specify the params for --update without modifying the sbt-sass codebase.
So please either:
This would also solve: Partials with only variables not compiled #16 https://github.com/ShaggyYeti/sbt-sass/issues/16