I'm not sure the correct way to include 'Neat' in an ember-cli application.
I installed Bourbon using the ember-cli-bourbon addon, and then just @import "bourbon" in my scss file.
Any suggestions?
You should be able to install neat via bower:
bower install neat --save
Then in your scss file, after you import bourbon:
@import 'bourbon';
@import 'bower_components/neat/app/assets/stylesheets/neat';