You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
608 B
14 lines
608 B
4 years ago
|
diff --git a/node_modules/node-sass/lib/index.js b/node_modules/node-sass/lib/index.js
|
||
|
index 3f20708..425e97c 100644
|
||
|
--- a/node_modules/node-sass/lib/index.js
|
||
|
+++ b/node_modules/node-sass/lib/index.js
|
||
|
@@ -166,6 +166,8 @@ function buildIncludePaths(options) {
|
||
|
options.includePaths = options.includePaths || [];
|
||
|
|
||
|
if (process.env.hasOwnProperty('SASS_PATH')) {
|
||
|
+ //quick workaround for SASS_PATH.split undefined under lavamoat
|
||
|
+ process.env.SASS_PATH.split = String.prototype.split
|
||
|
options.includePaths = options.includePaths.concat(
|
||
|
process.env.SASS_PATH.split(path.delimiter)
|
||
|
);
|