zot-wo-auth/Makefile
Raul Kele 4b0982a48c updated makefile to emit dev dependencies, fixed build script
Signed-off-by: Raul Kele <raulkeleblk@gmail.com>
2022-08-05 06:22:57 -07:00

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