aboutsummaryrefslogtreecommitdiff
path: root/node_modules/stream-to-array/Makefile
blob: 74096766cd9b4645e85645672864cb57aa4f0ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
NODE ?= node
BIN = ./node_modules/.bin/

test:
	@${NODE} ${BIN}mocha \
		--reporter spec \
		--bail

clean:
	@rm -rf node_modules

.PHONY: test clean