I am searching for a solution for compiling my .scss files at run-time and at compile-time.
The reason I need both is that our designers work on Macs and prefer the ease of having their .scss files compiled dynamically at run-time (especially during a development phase). On the other hand, I need compile-time support to validate that the SCSS compiles successfully during my build process. My goal is to fail a build if the SCSS doesn't compile.
I have found several libraries available on NuGet, however, minor flaws in each of them are holding me back.
Is there a solution available for both of these scenarios?
Here's where my research has led me:
Run-time Support
- BundleTransformer.SassAndScss via HttpHandler (works with Bourbon, albeit very slow)
- Cassette.Sass (unable to compile Bourbon due to error)
Compile-time support:
- Cassette.MSBuild (Does not appear to bundle SCSS files, only CSS)
- Mindscape Web Workbench (Pro version apparently includes a command-line tool, however, documentation is very limited on the feature)
- Others?
compass watch
. – Encephalon