Vikman88/frontend-project-lvl2

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install:
    npm ci --production
    npm link
help:
    gendiff.js -h
publish:
    npm publish --dry-run
lint:
    npx eslint .
test:
    npm test
test-coverage:
    npm test -- --coverage --coverageProvider=v8
commit:
    $(VAR)
    git add .
    git status
    git commit -m '$(name)'

.PHONY: test