Open mull opened 8 years ago
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; }
This may have changed. Libsass, which sassc is based on, always said it did not support the indent syntax in the past.
Really does seem like it changed. The latest sassc (installed via homebrew) definitely handles it!
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: