Files
asciidisco.com/build/node_modules/stream-to/Makefile
2023-08-01 13:49:46 +02:00

11 lines
128 B
Makefile

BIN = ./node_modules/.bin/
test:
@${BIN}mocha \
--reporter spec \
--bail
clean:
@rm -rf node_modules
.PHONY: test clean