mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
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
|
all: clean docs
|
||||||
|
|
||||||
docs: clean modules
|
docs: clean modules staticmin
|
||||||
./build-site.py
|
./build-site.py
|
||||||
|
|
||||||
viewdocs: clean
|
viewdocs: clean staticmin
|
||||||
./build-site.py view
|
./build-site.py view
|
||||||
|
|
||||||
htmldocs:
|
htmldocs: staticmin
|
||||||
./build-site.py rst
|
./build-site.py rst
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@ -18,6 +18,8 @@ clean:
|
||||||
-rm -f .buildinfo
|
-rm -f .buildinfo
|
||||||
-rm -f *.inv
|
-rm -f *.inv
|
||||||
-rm -rf *.doctrees
|
-rm -rf *.doctrees
|
||||||
|
@echo "Cleaning up minified css files"
|
||||||
|
find . -type f -name "*.min.css" -delete
|
||||||
@echo "Cleaning up byte compiled python stuff"
|
@echo "Cleaning up byte compiled python stuff"
|
||||||
find . -regex ".*\.py[co]$$" -delete
|
find . -regex ".*\.py[co]$$" -delete
|
||||||
@echo "Cleaning up editor backup files"
|
@echo "Cleaning up editor backup files"
|
||||||
|
@ -29,4 +31,6 @@ clean:
|
||||||
modules: $(FORMATTER) ../hacking/templates/rst.j2
|
modules: $(FORMATTER) ../hacking/templates/rst.j2
|
||||||
PYTHONPATH=../lib $(FORMATTER) -t rst --template-dir=../hacking/templates --module-dir=../library -o rst/
|
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…
Add table
Add a link
Reference in a new issue