From f3d0f2f0c6c5c74fd86d586be37c99a44462c363 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Morten=20Anton=20Bach=20Sj=C3=B8gren?= Date: Fri, 7 Oct 2016 12:34:18 +0200 Subject: [PATCH] fix: #11 scss-file under a symlink are not transpiled into css --- lib/converter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/converter.js b/lib/converter.js index 717c9c9..8a097cd 100644 --- a/lib/converter.js +++ b/lib/converter.js @@ -16,7 +16,7 @@ function convert(logger, projectDir, options) { ]; //console.log("SASS Import Path", sassImportPaths); - var sassFiles = glob.sync(sassFilesPath).filter(function(filePath){ + var sassFiles = glob.sync(sassFilesPath, { follow: true }).filter(function(filePath){ var path = filePath; var parts = path.split('/'); var filename = parts[parts.length - 1]; @@ -76,4 +76,4 @@ function parseSass(filePath, importPaths, callback){ }); } }); -} \ No newline at end of file +}