2020-08-10 11:45:26 -04:00
|
|
|
VER_FONTAWESOME=5.14.0
|
2018-05-05 12:09:37 -04:00
|
|
|
|
|
|
|
|
2021-09-08 11:43:24 -04:00
|
|
|
default: generate download_libs
|
2018-05-05 12:09:37 -04:00
|
|
|
|
2021-09-08 11:43:24 -04:00
|
|
|
generate:
|
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
|
|
|
|
2021-09-08 11:43:24 -04:00
|
|
|
publish: download_libs
|
2017-08-03 12:33:56 -04:00
|
|
|
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:
|
2021-09-08 11:43:24 -04:00
|
|
|
rm -rf \
|
|
|
|
frontend/css \
|
|
|
|
frontend/js \
|
|
|
|
frontend/openssl \
|
|
|
|
frontend/webfonts
|
|
|
|
|
|
|
|
download_libs: clean_libs
|
|
|
|
download_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'
|