23 lines
232 B
Makefile
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/
|