env/Makefile

16 lines
143 B
Makefile
Raw Normal View History

2020-07-14 06:06:58 -04:00
.PHONY: install
install:
npm install
.PHONY: lint
lint:
npm run lint
.PHONY: test
test:
npm run test
.PHONY: build
build:
npm run build