Adding a proper css file handler (with automatic minification)
authorspf13 <steve.francia@gmail.com>
Tue, 4 Nov 2014 05:42:36 +0000 (00:42 -0500)
committerspf13 <steve.francia@gmail.com>
Tue, 4 Nov 2014 05:42:36 +0000 (00:42 -0500)
hugolib/handler_file.go

index 093fc686d4e39d6c297cac2500128159c342f622..39a90577026090ffa59ebf2bf5d48e6917ac105d 100644 (file)
@@ -14,8 +14,8 @@
 package hugolib
 
 import (
-       "fmt"
-       _ "github.com/dchest/cssmin"
+       "github.com/dchest/cssmin"
+       "github.com/spf13/hugo/helpers"
        "github.com/spf13/hugo/source"
 )
 
@@ -29,7 +29,7 @@ var css = Handle{
                results <- HandledResult{file: f}
        },
        fileConvert: func(f *source.File, s *Site, results HandleResults) {
-
-               fmt.Println(f.Path())
+               x := cssmin.Minify(f.Bytes())
+               s.WriteDestFile(f.Path(), helpers.BytesToReader(x))
        },
 }