zot-wo-auth/Makefile
Ramkumar Chinchani 340456c8b4 add a Makefile and update deps
Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
2022-03-18 12:33:48 -07:00

23 lines
201 B
Makefile

.PHONY: all
all: install build
.PHONY: install
install:
npm install
.PHONY: build
build:
npm build
.PHONY: update
update:
npm update
.PHONY: audit
audit:
npm audit
.PHONY: run
run:
npm start