Commit e5c3c8ae by Andrew Nesbitt

Merge pull request #95 from middric/master

The includePaths option is missing from middleware.js
parents 0647cbb4 7dc7911f
......@@ -110,7 +110,7 @@ module.exports = function(options){
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
});
});
......
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