timesite/Makefile
2025-07-14 18:43:59 -07:00

15 lines
127 B
Makefile

.PHONY: all dev fmt lint install
all: dev
dev:
npm run dev
fmt:
npm run format
lint:
npm run lint
install:
npm install