frac/Makefile

22 lines
365 B
Makefile
Raw Normal View History

2014-05-01 02:32:25 +00:00
.PHONY: frac
frac: frac.md
2013-12-14 07:11:37 +00:00
voc frac.md
.PHONY: test
test:
2013-12-14 07:11:37 +00:00
mocha -R spec
2014-05-01 02:32:25 +00:00
.PHONY: lint
lint:
jshint --show-non-errors frac.js
.PHONY: cov
cov: coverage.html
coverage.html: frac
mocha --require blanket -R html-cov > coverage.html
.PHONY: coveralls
coveralls:
mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js