mathias / boot-sassc

Sass compiler task for boot 2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Indent style syntax seems to be possible.

mull opened this issue · comments

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!