joliss / broccoli-sass

Sass compiler for Broccoli, using libsass
MIT License
44 stars 97 forks source link

@at-root directive not compiled issue #70

Open vsymguysung opened 8 years ago

vsymguysung commented 8 years ago

When I use the bootstrap-sass v3.3.6, the output css still contains @at-root directive. From some research, I found it's a dependency issue of the node-sass because the bootstrap-sass Bower package requires node-sass 3.2.0+. Any plans for upgrading node-sass?

simonexmachina commented 8 years ago

FWIW you can provide your own version of node-sass using broccoli-sass-source-maps, which is a parallel fork of this project with some extra features. It's what's used in ember-cli-sass.

vsymguysung commented 8 years ago

@aexmachina, Thanks for the information.