From: spf13 Date: Tue, 4 Nov 2014 05:42:36 +0000 (-0500) Subject: Adding a proper css file handler (with automatic minification) X-Git-Tag: v0.13~341 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7fba2500;p=brevno-suite%2Fhugo Adding a proper css file handler (with automatic minification) --- diff --git a/hugolib/handler_file.go b/hugolib/handler_file.go index 093fc686..39a90577 100644 --- a/hugolib/handler_file.go +++ b/hugolib/handler_file.go @@ -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)) }, }