brackets-sass icon indicating copy to clipboard operation
brackets-sass copied to clipboard

warning when import "susy"

Open mukiwu opened this issue 9 years ago • 4 comments

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 !

mukiwu avatar May 06 '15 08:05 mukiwu

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 avatar May 06 '15 11:05 nicolo-ribaudo

@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 avatar May 07 '15 05:05 mukiwu

@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 avatar May 07 '15 16:05 nicolo-ribaudo

@nicolo-ribaudo yes, I already have it in my config.rb 2015-05-19 2 16 18

mukiwu avatar May 19 '15 06:05 mukiwu