mirror of
https://github.com/BreizhHardware/express-prom-bundle.git
synced 2026-01-18 16:27:28 +01:00
13 lines
243 B
Makefile
13 lines
243 B
Makefile
.PHONY: coverage
|
|
|
|
test:
|
|
npm test
|
|
lint:
|
|
npx eslint src
|
|
npm run dtslint-next
|
|
coverage:
|
|
npx nyc --include src --reporter=lcov --reporter=text node_modules/jasme/run.js
|
|
|
|
coveralls: coverage
|
|
npx nyc report --reporter=text-lcov | npx coveralls
|