Add staticmin make target for compressing docs related css and js files, currently only theme.css
This commit is contained in:
parent
e3c0c148e4
commit
cc440d0a64
1 changed files with 7 additions and 3 deletions
|
@ -4,13 +4,13 @@ FORMATTER=../hacking/module_formatter.py
|
|||
|
||||
all: clean docs
|
||||
|
||||
docs: clean modules
|
||||
docs: clean modules staticmin
|
||||
./build-site.py
|
||||
|
||||
viewdocs: clean
|
||||
viewdocs: clean staticmin
|
||||
./build-site.py view
|
||||
|
||||
htmldocs:
|
||||
htmldocs: staticmin
|
||||
./build-site.py rst
|
||||
|
||||
clean:
|
||||
|
@ -18,6 +18,8 @@ clean:
|
|||
-rm -f .buildinfo
|
||||
-rm -f *.inv
|
||||
-rm -rf *.doctrees
|
||||
@echo "Cleaning up minified css files"
|
||||
find . -type f -name "*.min.css" -delete
|
||||
@echo "Cleaning up byte compiled python stuff"
|
||||
find . -regex ".*\.py[co]$$" -delete
|
||||
@echo "Cleaning up editor backup files"
|
||||
|
@ -29,4 +31,6 @@ clean:
|
|||
modules: $(FORMATTER) ../hacking/templates/rst.j2
|
||||
PYTHONPATH=../lib $(FORMATTER) -t rst --template-dir=../hacking/templates --module-dir=../library -o rst/
|
||||
|
||||
staticmin:
|
||||
yuicompressor --type css -o _themes/srtd/static/css/theme.min.css _themes/srtd/static/css/theme.css
|
||||
|
||||
|
|
Loading…
Reference in a new issue