mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-20 21:31:32 +02:00
Adding a proper css file handler (with automatic minification)
This commit is contained in:
@@ -14,8 +14,8 @@
|
|||||||
package hugolib
|
package hugolib
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"github.com/dchest/cssmin"
|
||||||
_ "github.com/dchest/cssmin"
|
"github.com/spf13/hugo/helpers"
|
||||||
"github.com/spf13/hugo/source"
|
"github.com/spf13/hugo/source"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -29,7 +29,7 @@ var css = Handle{
|
|||||||
results <- HandledResult{file: f}
|
results <- HandledResult{file: f}
|
||||||
},
|
},
|
||||||
fileConvert: func(f *source.File, s *Site, results HandleResults) {
|
fileConvert: func(f *source.File, s *Site, results HandleResults) {
|
||||||
|
x := cssmin.Minify(f.Bytes())
|
||||||
fmt.Println(f.Path())
|
s.WriteDestFile(f.Path(), helpers.BytesToReader(x))
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user