340456c8b4
Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
23 lines
201 B
Makefile
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
|