I\'m using ember-cli v0.0.23, and am trying to get the broccoli-compass package working with my project, and I\'ve run into some problems.
First, in my Brocfile
Brocfile
Try this (added prefix and cssDir):
var compileCompass = require('broccoli-compass'); var styles = compileCompass(appAndDependencies, prefix + '/styles/app.scss', { outputStyle: 'expanded', sassDir: prefix + '/styles', imagesDir: 'public/images/', cssDir: '/assets' });
Steffen