Skip to content

Commit 6920479

Browse files
iouri-smadskristensen
authored andcommitted
Update to reflect new LESS behavior (#388)
1 parent 8c7d2ce commit 6920479

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WebCompiler/Compile/LessCompiler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ private static string ConstructArguments(Config config)
118118
if (options.StrictMath)
119119
arguments += " --strict-math=on";
120120

121-
if (!options.IECompat)
122-
arguments += " --no-ie-compat";
121+
if (options.IECompat)
122+
arguments += " --ie-compat";
123123

124124
if (options.StrictUnits)
125125
arguments += " --strict-units=on";

0 commit comments

Comments
 (0)