UNPKG

220 BPlain TextView Raw
1SHELL = /bin/bash
2export PATH := ./node_modules/.bin/:${PATH}
3
4MAKEFLAGS += --no-print-directory --silent
5
6clean:
7 rm -rf build/ \
8 npm-debug.log
9lint:
10 eslint lib/
11test: clean lint
12 mocha --reporter spec $(MOCHAFLAGS)
\No newline at end of file