Commit 7dc7911f by Rich Middleditch

added support for includePaths as well as include_paths to middleware.js

parent 0647cbb4
...@@ -110,7 +110,7 @@ module.exports = function(options){ ...@@ -110,7 +110,7 @@ module.exports = function(options){
fs.writeFile(cssPath, css, 'utf8', next); fs.writeFile(cssPath, css, 'utf8', next);
}); });
}, { }, {
include_paths: [ sassDir ].concat(options.include_paths || []), include_paths: [ sassDir ].concat(options.include_paths || options.includePaths || []),
output_style: options.output_style || options.outputStyle output_style: options.output_style || options.outputStyle
}); });
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment