8 lines
81 B
Makefile
8 lines
81 B
Makefile
.PHONY: build
|
|
build:
|
|
npm install
|
|
npm run build
|
|
|
|
.PHONY: run
|
|
run:
|
|
npm run start
|