UNPKG

213 BPlain TextView Raw
1default: test lint
2
3test:
4 @./node_modules/.bin/mocha \
5 -r should \
6 -R spec
7
8lint-changed:
9 @jshint `git status --porcelain | sed -e "s/^...//g"`
10
11lint:
12 @jshint . test
13
14.PHONY: default test lint lint-changed