UNPKG

321 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 --exit --reporter spec $(MOCHAFLAGS)
13
14version:
15 node -e "console.log(require('./package.json').version)"
16
17release:
18 npm run build
\No newline at end of file