-
Notifications
You must be signed in to change notification settings - Fork 450
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added support to configure sass compiler, sassc is way fast #940
Conversation
|
Looks good to me! (after you fix what @Kwpolska said) |
Also, this invalid email issue is prevalent. I should write a script that automates fetching the address (github is not helpful). For the record:
|
@Kwpolska Thanks, |
No, disregard those commands. You won’t get anything out of them. Looks well. Merging. |
added support to configure sass compiler, sassc is way fast
It looks like there are no alternative LESS compilers, therefore I decided not to support setting a LESS compiler. If there is one, we can easily add it later. |
This thing actually depends on the official lessc compiler. |
Yes but it produces different output. |
Signed-off-by: Chris “Kwpolska” Warrick <[email protected]>
there, done. |
Signed-off-by: Chris “Kwpolska” Warrick <[email protected]>
I am working on a new theme using Foundation 5 using the sass sources. Compiling with the Ruby implementation of sass is sort of slow, and I wanted to be able to use sasc which is implemented in C++ and is way faster.
This pull request adds a configuration option SASS_COMPILER which defaults to 'sass' but allows you to configure which compiler you want to use.