From 2b090fe07d1240a51635c35c45e2a7718b97e7cc Mon Sep 17 00:00:00 2001 From: Yusril Herlian Syah Date: Tue, 30 Jan 2018 04:25:12 +0700 Subject: [PATCH] Add whitespace --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index cb7009e..a2a89a8 100644 --- a/index.js +++ b/index.js @@ -85,7 +85,7 @@ var gulpSass = function gulpSass(options, sync) { // Grab the path portion of the file that's being worked on sassFileSrcPath = path.dirname(sassFileSrc); if (sassFileSrcPath) { - //Prepend the path to all files in the sources array except the file that's being worked on + // Prepend the path to all files in the sources array except the file that's being worked on sourceFileIndex = sassMap.sources.indexOf(sassMapFile); sassMap.sources = sassMap.sources.map(function(source, index) { return (index === sourceFileIndex) ? source : path.join(sassFileSrcPath, source);