Skip to content

Commit 8c7d2ce

Browse files
achbedmadskristensen
authored andcommitted
Implement SASS LineFeed parameter in Config (#385)
Allow a config setting to apply a value to the SASS Compiler LineFeed configuration option.
1 parent 103fe47 commit 8c7d2ce

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/WebCompiler/Compile/SassOptions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ protected override void LoadSettings(Config config)
4949
var sourceMapRoot = GetValue(config, "sourceMapRoot");
5050
if (sourceMapRoot != null)
5151
SourceMapRoot = sourceMapRoot;
52+
53+
var lineFeed = GetValue(config, "lineFeed");
54+
if (lineFeed != null)
55+
LineFeed = lineFeed;
5256
}
5357

5458
/// <summary>

0 commit comments

Comments
 (0)