14 lines
112 B
Makefile
14 lines
112 B
Makefile
all:
|
|
npm run build
|
|
|
|
run:
|
|
npm run dev
|
|
|
|
format:
|
|
npm run format
|
|
|
|
clean:
|
|
rm -rf build
|
|
|
|
.PHONY: format run clean
|