10 lines
94 B
Makefile
10 lines
94 B
Makefile
|
.PHONY: dist build
|
||
|
install:
|
||
|
@npm install
|
||
|
|
||
|
dev: install
|
||
|
@npm run dev
|
||
|
|
||
|
build:
|
||
|
@npm run build
|