From 3c8b2c0acd8023138e9ccd810e578fc5592c3d76 Mon Sep 17 00:00:00 2001 From: Henri Sara Date: Wed, 25 Nov 2015 14:54:25 +0200 Subject: [PATCH] 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 --- src/main/java/com/vaadin/sass/SassCompiler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/vaadin/sass/SassCompiler.java b/src/main/java/com/vaadin/sass/SassCompiler.java index 9388e03e..b3cba30a 100644 --- a/src/main/java/com/vaadin/sass/SassCompiler.java +++ b/src/main/java/com/vaadin/sass/SassCompiler.java @@ -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")