We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2220ba9 commit 62dc218Copy full SHA for 62dc218
lib/extensions.js
@@ -49,11 +49,9 @@ function getBinaryName() {
49
} else if (process.env.SASS_BINARY_NAME) {
50
binaryName = process.env.SASS_BINARY_NAME;
51
} else {
52
- var v8SemVersion = process.versions.v8.split('.').slice(0, 3).join('.');
53
-
54
binaryName = [process.platform, '-',
55
process.arch, '-',
56
- v8SemVersion].join('');
+ process.versions.modules].join('');
57
}
58
59
return [binaryName, 'binding.node'].join('_');
0 commit comments