mirror of
https://github.com/Luzifer/wiki.git
synced 2024-11-08 14:50:11 +00:00
11 lines
346 B
Makefile
11 lines
346 B
Makefile
|
default: generate
|
||
|
|
||
|
generate:
|
||
|
docker run --rm -ti -v $(CURDIR):$(CURDIR) -w $(CURDIR)/src node:10-alpine \
|
||
|
sh -exc "npx npm@lts ci && npx npm@lts run build && chown -R $(shell id -u) ../frontend node_modules"
|
||
|
go generate
|
||
|
|
||
|
publish:
|
||
|
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
|
||
|
bash golang.sh
|