diff --git a/lib/src/importer/utils.dart b/lib/src/importer/utils.dart index cf30caec..518bde9d 100644 --- a/lib/src/importer/utils.dart +++ b/lib/src/importer/utils.dart @@ -20,7 +20,7 @@ String resolveImportPath(String path) { /// Like [_tryPath], but checks both `.sass` and `.scss` extensions. List _tryPathWithExtensions(String path) => - _tryPath(path + '.sass') + _tryPath(path + '.scss'); + _tryPath(path + '.sass')..addAll(_tryPath(path + '.scss')); /// Returns the [path] and/or the partial with the same name, if either or both /// exists.