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 /pkg/server/assets.go
node_modules node_modules
yarn.lock

View File

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