Marcin Cieślak
Marcin Cieślak
What happens if you run `./node_modules/.bin/node-sass invalid.scss` ? Did you create a clean workspace in the temporary directory?
Can you post the full output of `./node_modules/.bin/grunt -v sass` ?
Thanks. It seems that the node (JavaScript) thread continues normally and we are getting the error message back. The back-end libsass thread crashes though. Looks like a race condition somewhere....
@xzyfer can you reproduce this as well?
Thanks. The stacktrace also points to the color name conversion routines. In [my repo](https://github.com/saper/sass_issue_1672) there are two files that grunt tries to process, `valid.scss` and `invalid.scss`. Do we also get...
Thanks @xzyfer, this is helpful. This is probably related to multiple parallel calls to `render()` and to reproduce this one needs to run them within one process. Probably it can...
Can you produce a minimal reproduction case?
We currently do not support workers - our add on is not [context-aware](https://nodejs.org/api/addons.html#addons_context_aware_addons). We are using libuv lowlevel routines and it might be difficult to make it worker-aware. Can you...
We have some static initialization that is done by C++ runtime for us. An example of a problem that was caused by static initialization was this https://github.com/sass/node-sass/issues/1283#issuecomment-169845062 However we run...
I am not sure if 3.6.x is good enough to be used without breaking compatibility too much...