happy/Makefile

14 lines
207 B
Makefile

build: *.go frontend
go build
frontend:
cd frontend && yarn build --mode development
frontend-watch:
cd frontend && yarn build --watch
run: build
./happy -develop
.PHONY: run frontend frontend-watch