Closed lessless closed 9 years ago
Hmm, it is hard for me to tell why it is failing. Is there any reason you need compass and the latest node-sass 2.x is not enough?
compass is collection of mixins, they help to save time for designer. It turned out that compass does sass compilation by itself https://github.com/quaertym/ember-cli-compass-compiler/issues/37
Having the same issue here. Did you find a workaround to keep using ember-cli-compass-compiler?
By quickly looking at it again the issue seems to be that ember-cli-sass has an includePaths
option. Which ensures that foundation can be imported. Does ember-cli-compass-compiler have a similar option?
IT seems https://github.com/quaertym/ember-cli-compass-compiler/issues/37#issuecomment-68347486 should do the trick.
@Globegitter thank you! that did the trick.
I have this in my Brocfile:
var app = new EmberApp({
'ember-cli-foundation-sass': {
'foundationJs': true
},
compassOptions: {
outputStyle: 'expanded',
importPath: [
'bower_components/foundation/scss/'
]
}
});
Hello! Thank you for the work the way you did is very convenient and if you find time please, make both this two great pieces of software work together - compass & foundation.
There is an error when this addon is used together with https://github.com/quaertym/ember-cli-compass-compiler