hsifananab/frontend-project-lvl2

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install: 
    npm ci

publish: 
    npm publish --dry-run

lint:
    npx eslint .

lint-fix:
    npx eslint . --fix

test: 
    npx jest

test-coverage:
    npx jest --coverage