You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 24, 2024. It is now read-only.
Node Process (node -p process.versions): [see below]
Node Platform (node -p process.platform): darwin
Node architecture (node -p process.arch): x64
node-sass version (node -p "require('node-sass').info"): Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (72)
npm node-sass versions (npm ls node-sass): node-sass@4.11.0
Installation and compile is failing on windows.
And when I change v8::String::Utf8Value string(value);
to v8::String::Utf8Value string(v8::Isolate::GetCurrent(), value);
It's works!
Seems String::Utf8Value with one arg is removed in new V8 of node 12.
Ionaru, ender-null, cenfun, EricMCornelius, ddinchev and 7 more
@xzyfer - Looks like the compilation error is originating from that unshimmed v8 string constructor, which is no longer valid. Not actually something NAN updates will fix.
Activity
xzyfer commentedon Apr 23, 2019
Updated. We have a PR in #2633 but are blocked on the nodejs team updating nan for Node 12.
xzyfer commentedon Apr 24, 2019
Created a tracking issue nodejs/nan#849
jiqiangbing commentedon Apr 24, 2019
Installation and compile is failing on windows.

And when I change
v8::String::Utf8Value string(value);
to
v8::String::Utf8Value string(v8::Isolate::GetCurrent(), value);
It's works!
Seems String::Utf8Value with one arg is removed in new V8 of node 12.
EricMCornelius commentedon Apr 24, 2019
@xzyfer - Looks like the compilation error is originating from that unshimmed v8 string constructor, which is no longer valid. Not actually something NAN updates will fix.
You could use https://github.com/nodejs/nan/blob/master/doc/v8_misc.md#nanutf8string though.
Allow failures on node 12: sass/node-sass#2632
Change back to node v11 see sass/node-sass#2632
23 remaining items