We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi. From the README:
The sassc executable only compiles SCSS syntax, not the indent-style Sass syntax!
However that seemed wrong to me, so I tested both sassc and boot-sassc and each of them works just fine with SASS syntax. Tested with this:
$font-stack: Helvetica, sans-serif $primary-color: #333 body font: 100% $font-stack color: $primary-color background-color: #eee
Output:
body { font: 100% Helvetica, sans-serif; color: #333; background-color: #eee; }
The text was updated successfully, but these errors were encountered:
This may have changed. Libsass, which sassc is based on, always said it did not support the indent syntax in the past.
Sorry, something went wrong.
Really does seem like it changed. The latest sassc (installed via homebrew) definitely handles it!
No branches or pull requests
Hi. From the README:
However that seemed wrong to me, so I tested both sassc and boot-sassc and each of them works just fine with SASS syntax. Tested with this:
Output:
The text was updated successfully, but these errors were encountered: