mathias / boot-sassc

Sass compiler task for boot 2
Eclipse Public License 1.0
9 stars 8 forks source link

Indent style syntax seems to be possible. #16

Open mull opened 8 years ago

mull commented 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; }
mathias commented 8 years ago

This may have changed. Libsass, which sassc is based on, always said it did not support the indent syntax in the past.

mull commented 8 years ago

Really does seem like it changed. The latest sassc (installed via homebrew) definitely handles it!