forked from sheetjs/sheetjs
SheetJS
b0b3ffea84
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
21 lines
349 B
Makefile
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
|