fix includePaths

This commit is contained in:
David Manning 2014-10-28 11:01:55 -07:00
parent ca6a21ce5c
commit 91776b3a39
2 changed files with 4 additions and 1 deletions

View file

@ -42,6 +42,9 @@ module.exports = function (options) {
opts.includePaths = [fileDir];
}
// temporary hack to target a change (mistake?) in nodeSass.
opts.includePath = opts.includePaths;
opts.success = function (css, map) {
var sourceMap;
if (typeof opts.onSuccess === 'function') opts.onSuccess(css, map);

View file

@ -1,6 +1,6 @@
{
"name": "gulp-sass",
"version": "1.2.0",
"version": "1.2.1",
"description": "Gulp plugin for sass",
"main": "index.js",
"scripts": {