sheetjs/Makefile
SheetJS b0b3ffea84 version bump 0.5.2: cleanup
more formats:
o fractional seconds
o absolute time formats
o generalized engineering notation
o better resolution in splitting format strings
o support for LO uppercase date+time formats

other changes
- no more prototype pollution
- many many more tests
- passes jshint
- code coverage: blanket + coveralls + travis
- npmignore test files
2014-01-20 03:37:48 -05:00

21 lines
349 B
Makefile

.PHONY: test ssf
ssf: ssf.md
voc ssf.md
test:
npm test
.PHONY: lint
lint:
jshint ssf.js test/
.PHONY: cov
cov: tmp/coverage.html
tmp/coverage.html: ssf.md
mocha --require blanket -R html-cov > tmp/coverage.html
.PHONY: coveralls
coveralls:
mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js