2019-05-10 10:19:38 -04:00
|
|
|
VER_BOOTSTRAP=4.3.1
|
|
|
|
VER_BOOTSWATCH=4.3.1
|
2020-08-10 11:45:26 -04:00
|
|
|
VER_FONTAWESOME=5.14.0
|
2018-05-05 12:09:37 -04:00
|
|
|
VER_GIBBERISH_AES=1.0.0
|
2019-05-10 10:19:38 -04:00
|
|
|
VER_JQUERY=3.4.1
|
|
|
|
VER_POPPER=1.15.0
|
|
|
|
VER_VUE=2.6.10
|
2019-07-14 11:38:22 -04:00
|
|
|
VER_VUE_I18N=8.12.0
|
2018-05-05 12:09:37 -04:00
|
|
|
|
|
|
|
|
|
|
|
default: generate
|
|
|
|
|
2019-05-10 17:12:00 -04:00
|
|
|
generate: download_libs
|
2021-09-06 15:05:48 -04:00
|
|
|
docker run --rm -ti -v $(CURDIR):$(CURDIR) -w $(CURDIR)/src node:14-alpine \
|
2019-07-14 12:20:16 -04:00
|
|
|
sh -exc "npx npm@lts ci && npx npm@lts run build && chown -R $(shell id -u) ../frontend node_modules"
|
2017-08-03 12:33:56 -04:00
|
|
|
|
|
|
|
publish:
|
|
|
|
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
|
|
|
|
bash golang.sh
|
2018-05-05 12:09:37 -04:00
|
|
|
|
|
|
|
# -- Download / refresh external libraries --
|
|
|
|
|
|
|
|
clean_libs:
|
|
|
|
rm -rf frontend/css frontend/webfonts frontend/js
|
|
|
|
|
2021-09-06 15:05:48 -04:00
|
|
|
download_libs: clean_libs fontawesome
|
2018-05-05 12:09:37 -04:00
|
|
|
|
|
|
|
fontawesome:
|
|
|
|
curl -sSfL https://github.com/FortAwesome/Font-Awesome/archive/$(VER_FONTAWESOME).tar.gz | \
|
2019-05-10 10:19:38 -04:00
|
|
|
tar -vC frontend -xz --strip-components=1 --wildcards --exclude='*/js-packages' '*/css' '*/webfonts'
|