Files
linda-portfolio/Makefile
2026-06-22 05:51:46 +03:00

23 lines
232 B
Makefile

.PHONY: dev build preview check lint clean install
install:
npm install
dev:
npm run dev
build:
npm run build
preview:
npm run preview
check:
npm run check
lint:
npm run check
clean:
rm -rf dist/ .astro/ node_modules/