I've started using Thorax, and I have used the thorax generator with yeoman for setting up a webapp:
$ npm install -g yo generator-thorax
$ yo thorax desired-application
$ cd desired-application
$ grunt
I've selected SASS as css preprocessor, and then I can successfully run my webapp after building it with the grunt
command.
Now my problem is that I'm not sure how I can add susy to my Gruntfile.js.
The documentation states that you should add require: 'susy'
to the SASS options parameter.
But I don't have the SASS options in my Gruntfile.js, I've tried adding it in - but it doesn't work when I add @import "susy";
to my css/base.scss file.
Has anyone successfully added susy to a thorax application?
EDIT I've also tried adding susy through bower.
bower install susy --save
And I'm then able to do @import "../bower_components/susy/sass/susy";
However it would be nice to have susy added to my SASS options in gruntfile.js, and be able to do @import "susy";
instead.