Skip to content

Commit 2fa3100

Browse files
author
Todd Anglin
authored
Merge pull request #13 from m-abs/issue-11
fix: #11 scss-file under a symlink are not transpiled into css
2 parents 0619ec6 + f3d0f2f commit 2fa3100

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/converter.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function convert(logger, projectDir, options) {
1616
];
1717
//console.log("SASS Import Path", sassImportPaths);
1818

19-
var sassFiles = glob.sync(sassFilesPath).filter(function(filePath){
19+
var sassFiles = glob.sync(sassFilesPath, { follow: true }).filter(function(filePath){
2020
var path = filePath;
2121
var parts = path.split('/');
2222
var filename = parts[parts.length - 1];
@@ -76,4 +76,4 @@ function parseSass(filePath, importPaths, callback){
7676
});
7777
}
7878
});
79-
}
79+
}

0 commit comments

Comments
 (0)