I have switched grunt-contrib-sass to grunt-sass then using node-sass instead of the sass Ruby gem, which not only improves performances, but it frees us from installing Ruby for compiling scss to css.
As you can see, compiling css with node-sass produces a little different css, but it is actually the same style.
I have switched
grunt-contrib-sass
togrunt-sass
then usingnode-sass
instead of thesass
Ruby gem, which not only improves performances, but it frees us from installing Ruby for compiling scss to css. As you can see, compiling css withnode-sass
produces a little different css, but it is actually the same style.