Skip to content
This repository was archived by the owner on May 5, 2022. It is now read-only.

Commit 3c8b2c0

Browse files
author
Henri Sara
committed
Disable minifying by default (#10812)
The yuicompressor used for minifying sometimes produces broken output and is not compatible with the sprite support in Vaadin framework builds, so set the default value for minifying "false". Change-Id: Ida05318a7f882564021a5d953cc134b4265f6ae9
1 parent ab1591f commit 3c8b2c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/vaadin/sass/SassCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static void main(String[] args) throws Exception {
5151
.defaultValue("mixed").help("Set URL handling mode");
5252

5353
argp.defineOption("minify").values("true", "false")
54-
.defaultValue("true")
54+
.defaultValue("false")
5555
.help("Minify the compiled CSS with YUI Compressor");
5656

5757
argp.defineOption("compress").values("true", "false")

0 commit comments

Comments
 (0)