2019-10-28 14:29:39 +00:00
|
|
|
frontend-deps: frontend/node_modules
|
|
|
|
cd frontend && yarn
|
|
|
|
|
2019-10-18 12:46:20 +00:00
|
|
|
build: *.go frontend
|
|
|
|
go build
|
|
|
|
|
2019-10-28 14:29:39 +00:00
|
|
|
frontend: frontend-deps
|
2019-10-18 12:48:39 +00:00
|
|
|
cd frontend && yarn build --mode development
|
2019-10-18 12:46:20 +00:00
|
|
|
|
|
|
|
frontend-watch:
|
|
|
|
cd frontend && yarn build --watch
|
|
|
|
|
2019-10-28 11:56:13 +00:00
|
|
|
run: *.go
|
2019-10-28 14:29:39 +00:00
|
|
|
go build && ./happy -develop
|
2019-10-18 12:46:20 +00:00
|
|
|
|
|
|
|
.PHONY: run frontend frontend-watch
|