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.
_*.scss
1 parent a944245 commit 7d51d4eCopy full SHA for 7d51d4e
src/WebCompiler/Compile/SassCompiler.cs
@@ -33,11 +33,8 @@ public CompilerResult Compile(Config config)
33
OriginalContent = content,
34
};
35
36
- if (config.GlobalMatch)
37
- {
38
- if (string.IsNullOrWhiteSpace(content) || Path.GetFileName(config.InputFile).StartsWith("_"))
39
- return result;
40
- }
+ if (config.GlobalMatch && string.IsNullOrWhiteSpace(content) || Path.GetFileName(config.InputFile).StartsWith("_"))
+ return result;
41
42
try
43
{
0 commit comments