Closed (works as designed)
Project:
Sasson
Version:
7.x-2.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
15 Mar 2012 at 01:47 UTC
Updated:
26 Jun 2012 at 19:01 UTC
"Development mode" works fine when editing the main scss file but it doesn't trigger a recompile if I edit partials in the partials directory. If I want to use partials, I have to keep clicking the "Recompile SASS / SCSS files" button in the appearance tab.
Comments
Comment #1
tsi commentedYou are right, we do this to minimize the compilation work for faster development.
We are recompiling somefile.scss only if it has changed since we last compiled it, that means that if it calls a partial and this one has change since the last time we compiled somefile.scss the changes won't show unless something was changed in somefile.scss or you press the recompile button.
You can force compilation of somefile.scss in your theme .info file using this line :
This will cause it to recompile on every page load, it is not perfect but it is the best solution we could think of, and we are always open for suggestions.
Comment #2
tsi commentedComment #3
tsi commentedClearing the cache now trigger re-compilation of Sass files (in the dev branch)