4b0982a48c
Signed-off-by: Raul Kele <raulkeleblk@gmail.com>
23 lines
233 B
Makefile
23 lines
233 B
Makefile
.PHONY: all
|
|
all: install audit build
|
|
|
|
.PHONY: install
|
|
install:
|
|
npm install --no-audit
|
|
|
|
.PHONY: build
|
|
build:
|
|
npm run build
|
|
|
|
.PHONY: update
|
|
update:
|
|
npm update
|
|
|
|
.PHONY: audit
|
|
audit:
|
|
npm audit --omit=dev
|
|
|
|
.PHONY: run
|
|
run:
|
|
npm start
|