Add Makefile to build CSS

This commit is contained in:
Luiz de Prá 2018-03-23 16:49:06 -03:00
parent d3e619ecf9
commit 454ea0146d
3 changed files with 26 additions and 1 deletions

View File

@ -24,3 +24,6 @@ indent_size = 2
# web files
[*.{html,css,less}]
indent_size = 2
[Makefile]
indent_style = tab

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
LESS_DIR = ./static/less
LESS_FILE = style.less
CSS_DIR = ./static/css
CSS_FILE = style.min.css
CSS_TMP_FILE = tmp.css
.PHONY: clean build
build: clean
lessc $(LESS_DIR)/$(LESS_FILE) > $(CSS_DIR)/$(CSS_TMP_FILE)
uglifycss $(CSS_DIR)/$(CSS_TMP_FILE) > $(CSS_DIR)/$(CSS_FILE)
rm -f $(CSS_DIR)/$(CSS_TMP_FILE)
clean:
rm -f $(CSS_DIR)/*.css

View File

@ -58,6 +58,12 @@ You can look at full working [`config.toml`](https://github.com/luizdepra/hugo-c
### Build & Test
To update or generate the minified CSS file:
```
make build
```
To build your site and test, run:
```
@ -80,4 +86,4 @@ Coder is licensed under the [MIT license](https://github.com/luizdepra/hugo-code
## Special Thanks
- Gleen McComb, for his great [article](https://glennmccomb.com/articles/how-to-build-custom-hugo-pagination/) about custom pagination.
- All contributors, for every PR and Issue reported.\
- All contributors, for every PR and Issue reported.