Merge pull request #474 from xzyfer/feat/fix-include-paths

Restore includePaths logic
This commit is contained in:
Michael Mifsud 2016-04-22 08:52:13 +10:00
commit f049f688a1

View file

@ -45,6 +45,18 @@ var gulpSass = function gulpSass(options, sync) {
opts.indentedSyntax = true;
}
// Ensure file's parent directory in the include path
if (opts.includePaths) {
if (typeof opts.includePaths === 'string') {
opts.includePaths = [opts.includePaths];
}
}
else {
opts.includePaths = [];
}
opts.includePaths.unshift(path.dirname(file.path));
// Generate Source Maps if plugin source-map present
if (file.sourceMap) {
opts.sourceMap = file.path;