mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix buildall target
This commit is contained in:
parent
75d833a8c1
commit
9d144ad740
1 changed files with 6 additions and 7 deletions
13
Makefile
13
Makefile
|
@ -1,5 +1,5 @@
|
|||
GO_VERSION=1.13
|
||||
NODE_VERSION=12.14.1
|
||||
NODE_VERSION=v13.7.0
|
||||
|
||||
.PHONY: dev
|
||||
dev: check_env data
|
||||
|
@ -58,15 +58,14 @@ check_node_env:
|
|||
data:
|
||||
mkdir data
|
||||
|
||||
UI_SRC = $(shell find ui/src -name "*.js")
|
||||
UI_PUBLIC = $(shell find ui/public -name "*.js")
|
||||
ui/build: $(UI_SRC) $(UI_PUBLIC)
|
||||
UI_SRC = $(shell find ui/src ui/public -name "*.js")
|
||||
ui/build: $(UI_SRC) $(UI_PUBLIC) ui/package-lock.json
|
||||
@(cd ./ui && npm run build)
|
||||
|
||||
assets/gen.go: ui/build
|
||||
go-bindata -fs -prefix "ui/build" -tags embed -nocompress -pkg assets -o assets/gen.go ui/build/...
|
||||
assets/embedded_gen.go: ui/build
|
||||
go-bindata -fs -prefix "ui/build" -tags embed -nocompress -pkg assets -o assets/embedded_gen.go ui/build/...
|
||||
|
||||
.PHONY: buildall
|
||||
buildall: check_go_env assets/gen.go
|
||||
buildall: check_go_env assets/embedded_gen.go
|
||||
go build -tags embed
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue