Revert to minify v2.6.1
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 23 Jan 2020 16:03:23 +0000 (17:03 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 23 Jan 2020 16:03:23 +0000 (17:03 +0100)
Closes #6791

go.mod
minifiers/minifiers.go

diff --git a/go.mod b/go.mod
index 32e820e8ebb9168d4b8bf5d5be4c06e297c7eeb7..086e324bac7ab453e912831677e3106184432b0c 100644 (file)
--- a/go.mod
+++ b/go.mod
@@ -51,7 +51,7 @@ require (
        github.com/spf13/jwalterweatherman v1.1.0
        github.com/spf13/pflag v1.0.5
        github.com/spf13/viper v1.6.1
-       github.com/tdewolff/minify/v2 v2.7.2
+       github.com/tdewolff/minify/v2 v2.6.1
        github.com/yuin/goldmark v1.1.21
        github.com/yuin/goldmark-highlighting v0.0.0-20191202084645-78f32c8dd6d5
        go.opencensus.io v0.22.0 // indirect
index 7dc59dada26644b37ea6705c71783bc18ae90a59..9533ebb6917ef168414022a92600619ae670f8fb 100644 (file)
@@ -72,8 +72,8 @@ func New(mediaTypes media.Types, outputFormats output.Formats) Client {
        }
 
        cssMin := &css.Minifier{
-               Precision: 0,
-               KeepCSS2:  true,
+               Decimals: -1,
+               KeepCSS2: true,
        }
 
        // We use the Type definition of the media types defined in the site if found.