projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4dcf734
)
Adding a proper css file handler (with automatic minification)
author
spf13
<steve.francia@gmail.com>
Tue, 4 Nov 2014 05:42:36 +0000
(
00:42
-0500)
committer
spf13
<steve.francia@gmail.com>
Tue, 4 Nov 2014 05:42:36 +0000
(
00:42
-0500)
hugolib/handler_file.go
patch
|
blob
|
history
diff --git
a/hugolib/handler_file.go
b/hugolib/handler_file.go
index 093fc686d4e39d6c297cac2500128159c342f622..39a90577026090ffa59ebf2bf5d48e6917ac105d 100644
(file)
--- 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
))
},
}