-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Contents of done()
console.log'd out
#2
Comments
@akhleung @am11 @andrew @dlmanning thoughts on why this may be happening? |
@Jakobo @chriseppstein too |
@Snugug, that was due to sass/node-sass#615. A temporary hack which is supposed to be fixed in v3 stable. BTW, you can search node-sass issue tracker to figure out this kind of thing.. |
Didn't quite know what I was looking for there, haven't seen many people doing things with custom importers. Thanks! |
As an aside, the code as written also has some issues. Since the This is a known bug in eyeglass. The addition of a context object (v3) should make it possible to maintain a per- function importer(uri, prev, done) {
var isRealFile = fs.existsSync(prev),
file;
// new!
if (!this._importOnceCache) {
this._importOnceCache = {};
}
// ... |
Ooo, like. I was just running simple things trying to get a basic version of this out, but I'll circle back to that. Thanks! |
@Snugug there's no need to mention everyone involved, anyone who's watching the repo will get an email about new issues and comments. |
Yah, my brain wasn't functioning last night when I wrote those issues, sorry about that. Thought I would as no one was watching this repo at the time.
|
When run successfully, the object passed to
done()
getsconsole.log
'd out, even without me doing so. Not sure if it's related togulp-sass
ornode-sass
The text was updated successfully, but these errors were encountered: