brackets-sass
brackets-sass copied to clipboard
warning when import "susy"
I use brackets sass, but when I compile, it has wrong msg:
'Error: File to import not found or unreadable: susy.
...
so, does brackets sass not support susy? thanks !
Do you have Susy's files in your project?
If you write @import "susy";
, you should have a file named _susy.scss
(or .sass
)
@nicolo-ribaudo susy is a framwork based on compass, so it doesn't have any file in my project :( here is documation: http://susydocs.oddbird.net/en/latest/install/#quick-start
@mukiwu The problem is that brackets-sass runs sass --compass
instead of compass
. A workaround can be adding a config.rb
file at the root of your project:
require "susy";
@nicolo-ribaudo yes, I already have it in my config.rb