17 lines
291 B
Makefile
17 lines
291 B
Makefile
frontend-deps: frontend/node_modules
|
|
cd frontend && yarn
|
|
|
|
build: *.go frontend
|
|
go build
|
|
|
|
frontend: frontend-deps
|
|
cd frontend && yarn build --mode development
|
|
|
|
frontend-watch:
|
|
cd frontend && yarn build --watch
|
|
|
|
run: *.go
|
|
go build && ./happy -develop
|
|
|
|
.PHONY: run frontend frontend-watch
|