This commit reworks frontend asset generation to not need manually written html files, but instead generate them automatically.
13 lines
No EOL
189 B
Makefile
13 lines
No EOL
189 B
Makefile
.PHONY: clean all deps
|
|
|
|
all: wdcli
|
|
|
|
wdcli:
|
|
go generate ./internal/component/static/
|
|
go build -o ./wdcli ./cmd/wdcli
|
|
|
|
deps:
|
|
cd internal/component/static/ && yarn install
|
|
|
|
clean:
|
|
rm wdcli
|