We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bbd318 commit bfe6d5fCopy full SHA for bfe6d5f
src/core/sass/analyzer/parse.ts
@@ -8,6 +8,9 @@ export const makeParserModule = (
8
) => {
9
return {
10
getSassAst: (contents: string) => {
11
+ // scss-parser doesn't support the `$.` operator for module access and it breaks their parser oO, so we remove it.
12
+ contents = contents.replaceAll(".$", "_dot_dollar");
13
+
14
// scss-parser doesn't support the `...` operator and it breaks their parser oO, so we remove it.
15
// our analysis doesn't need to know about it.
16
contents = contents.replaceAll("...", "_dot_dot_dot");
0 commit comments