diff --git a/index.js b/index.js index bd254ce..ff69010 100644 --- a/index.js +++ b/index.js @@ -89,13 +89,9 @@ var gulpSass = function gulpSass(options, sync) { } } } - // Replace the stdin with the original file name - // sassMap.sources[sassMap.sources.indexOf(sassMapFile)] = sassFileSrc; - - // Commented out line 93 and added lines 95 - 103 // Remove 'stdin' from souces and replace with filenames! var srcs = sassMap.sources.filter(function(src) { - if (src.indexOf("stdin") === -1) { + if (src.indexOf('stdin') === -1) { return src; } });