12 lines
129 B
Makefile
12 lines
129 B
Makefile
.PHONY: dist build
|
|
|
|
build: install
|
|
@npm run build:all
|
|
|
|
dev: install
|
|
@npm run serve:s
|
|
@npm run serve:c
|
|
|
|
install:
|
|
@npm install
|