Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

Commit

Permalink
Disable minifying by default (#10812)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Henri Sara committed Nov 25, 2015
1 parent ab1591f commit 3c8b2c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/vaadin/sass/SassCompiler.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static void main(String[] args) throws Exception {
.defaultValue("mixed").help("Set URL handling mode");

argp.defineOption("minify").values("true", "false")
.defaultValue("true")
.defaultValue("false")
.help("Minify the compiled CSS with YUI Compressor");

argp.defineOption("compress").values("true", "false")
Expand Down

0 comments on commit 3c8b2c0

Please sign in to comment.