wallet-core/node_modules/stream-to-array/Makefile

12 lines
149 B
Makefile
Raw Normal View History

2016-10-10 03:43:44 +02:00
NODE ?= node
BIN = ./node_modules/.bin/
test:
@${NODE} ${BIN}mocha \
--reporter spec \
--bail
clean:
@rm -rf node_modules
.PHONY: test clean