finetune #316 update the makerfile with review opinion and remove yarn.lock in

.gitignore
This commit is contained in:
TonyQ 2021-12-08 19:41:14 +08:00
parent 3aed794c79
commit 4553152ab1
2 changed files with 6 additions and 7 deletions

1
.gitignore vendored
View File

@ -34,4 +34,3 @@
/pkg/server/assets.go
node_modules
yarn.lock

View File

@ -24,9 +24,7 @@ $(BIN_DIR):
# build native bbgo
bbgo: static bbgo-full
bbgo-full:
bbgo: static
go build -tags web,release -o $(BIN_DIR)/bbgo ./cmd/bbgo
# build native bbgo (slim version)
@ -148,8 +146,10 @@ docker-push:
docker push yoanlin/bbgo
bash -c "[[ -n $(DOCKER_TAG) ]] && docker push yoanlin/bbgo:$(DOCKER_TAG)"
frontend/out/index.html:
frontend/node_modules:
cd frontend && yarn install
frontend/out/index.html: frontend/node_modules
cd frontend && yarn export
pkg/server/assets.go: frontend/out/index.html