22 lines
272 B
Makefile
22 lines
272 B
Makefile
.PHONY: dev test lint fmt fmt-check check docker
|
|
|
|
dev:
|
|
yarn dev
|
|
|
|
test:
|
|
timeout 30 yarn build
|
|
|
|
lint:
|
|
yarn prettier --check .
|
|
|
|
fmt:
|
|
yarn prettier --write .
|
|
|
|
fmt-check:
|
|
yarn prettier --check .
|
|
|
|
check: test lint fmt-check
|
|
|
|
docker:
|
|
timeout 300 docker build -t netwatch .
|