I've installed Web Compiler 1.11.315 by Mads Kristensen, and I'm trying to configure it now to recognize my Compass imports.
Compass modifies SASS, and therefore, I've been unable to figure out how to install it properly. The best I've been able to do is include the Compass stylesheets by copying these files to an include folder and directing my compilerconfig.json
file to point at it.
That works - until you reference a mixin that uses some of the SASS extensions Compass installs: for example, legacy browser support with vendor prefixes in the CSS3 mixins.
So, what I'd like to do is install Compass properly with Web Compiler.
Has anyone managed to do that? If so, please explain. I've been unable to find anything on Google.
Compass' Ruby modules need to get loaded by SASS, but it would seem that Web Compiler can't do that because it uses node-sass which is based on libsass and doesn't use Ruby. Web Compiler's SassCompiler
So, I need to find an alternative that either doesn't extend SASS, or does so in a libsass supported way.