env/Makefile
2020-07-14 12:06:58 +02:00

15 lines
143 B
Makefile

.PHONY: install
install:
npm install
.PHONY: lint
lint:
npm run lint
.PHONY: test
test:
npm run test
.PHONY: build
build:
npm run build