Update mobile

This commit is contained in:
Andros Fenollosa
2021-10-06 23:07:53 +02:00
parent e182c7bb77
commit e647ef6704
11 changed files with 27 additions and 15 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
.DEFAULT_GOAL := build
build: ## Check style with black
build.templates
lein uberjar
make rm.statics
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/
rm.statics:
rm -rf resources/themes/dark/static.zip
rm -rf resources/themes/sepia/static.zip
rm -rf resources/themes/light/static.zip