FLUJOS/BACK_BACK/node_modules/unicode-trie/Makefile
2025-11-07 00:06:12 +01:00

13 lines
227 B
Makefile
Executable file

test:
@./node_modules/.bin/mocha
coverage:
@./node_modules/.bin/mocha --require coverage.js --reporter html-cov > coverage.html
build:
coffee --bare -c *.coffee
clean:
rm -rf index.js builder.js
.PHONY: test coverage