BOMBYASCHER/TXT-combiner

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
setup: install-deps
    npx simple-git-hooks
install-deps:
    npm ci
publish:
    npm publish --dry-run
lint:
    npx eslint .
test:
    npm test
test-coverage:
    npm test -- --coverage --coverageProvider=v8
.PHONY: test