This took me a while to figure out, but when you are using check: true, compass: true together in die options, these two translate to CLI options to the sass command, which then does complain about:
Error: File to import not found or unreadable: compass/*.
So just omitting check: true does the trick.
As it took me quite some time, I wanted to mention. Maybe it should be fixed in the sass command, but also grunt-contrib-sass could detect this issue easily and give the user some feedback?
Btw. is it correct, that when using compass: true the dest: some/path setting is ignored and instead the setting from config.rb is used?
This took me a while to figure out, but when you are using
check: true, compass: true
together in die options, these two translate to CLI options to the sass command, which then does complain about:So just omitting
check: true
does the trick.As it took me quite some time, I wanted to mention. Maybe it should be fixed in the sass command, but also grunt-contrib-sass could detect this issue easily and give the user some feedback?
Btw. is it correct, that when using
compass: true
thedest: some/path
setting is ignored and instead the setting from config.rb is used?