wpw-final/frontend/Makefile
2022-12-02 20:40:23 +07:00

17 lines
No EOL
186 B
Makefile

ifdef ENV
ENV_FLAG := --mode $(ENV)
endif
all: dev
typecheck:
pnpm run typecheck
lint:
pnpm run lint
dev:
pnpm run dev
build:
pnpm run build $(ENV_FLAG)
preview:
pnpm run preview