thedesk/app/node_modules/stream-to/Makefile

11 lines
128 B
Makefile
Raw Normal View History

2018-02-19 04:41:25 +11:00
BIN = ./node_modules/.bin/
test:
@${BIN}mocha \
--reporter spec \
--bail
clean:
@rm -rf node_modules
.PHONY: test clean