Is there a way to compile theme with debug info? I found an option on www.sass-lang.com, but don’t know how to use it with your compiler. I’m interested in the :line_numbers option (see
http://sass-lang.com/documentation/file.SASS_REFERENCE.html
). Even the command line version of sasscompiler does not support it. It would be nice to have other options too…
Vaadin sass compiler currently does not support the command line debugging options such as :line_numbers of the sass-lang implementation. Internally, in many cases, the Vaadin Sass compiler keeps track of line number information, but not necessarily always quite the same way as the sass-lang Ruby implementation (often a line of CSS is the result of many lines of SCSS). However, this is not output to the CSS files even when the information is available.
Please
create an enhancement request
for implementing this in our Sass compiler, and separate tickets for other relevant options.
In the meanwhile, you can also compile Valo based themes with the sass-lang implementation, though you’ll probably need to set $v-relative-paths: true for your theme to enable that (see valo/shared/_variables.scss).