Add theme clojure

This commit is contained in:
Andros Fenollosa
2021-10-25 18:38:01 +02:00
parent 4b95062ff8
commit b964a5c645
17 changed files with 706 additions and 19 deletions

View File

@@ -1,17 +1,20 @@
.DEFAULT_GOAL := build
build: ## Check style with black
build:
make build.templates
lein uberjar
make rm.statics
echo "Finish!"
build.templates:
make rm.statics
zip -r resources/themes/dark/static.zip resources/themes/dark/static/
zip -r resources/themes/sepia/static.zip resources/themes/sepia/static/
zip -r resources/themes/light/static.zip resources/themes/light/static/
tar cf resources/themes/light/static.tar --directory=./resources/themes/light/ static
tar cf resources/themes/dark/static.tar --directory=./resources/themes/dark/ static
tar cf resources/themes/sepia/static.tar --directory=./resources/themes/sepia/ static
tar cf resources/themes/clojure/static.tar --directory=./resources/themes/clojure/ static
rm.statics:
rm -rf resources/themes/dark/static.zip
rm -rf resources/themes/sepia/static.zip
rm -rf resources/themes/light/static.zip
rm -rf resources/themes/dark/static.tar
rm -rf resources/themes/sepia/static.tar
rm -rf resources/themes/light/static.tar
rm -rf resources/themes/clojure/static.tar