lizasolomyannik/frontend-project-lvl2

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install:
    npm ci

publish:
    npm publish --dry-run

gendiff:
    node bin/gendiff.js

getDiff:
    node bin/diff.js

lint:
    npx eslint .

test:
    NODE_OPTIONS=--experimental-vm-modules npx jest

test-coverage:
    NODE_OPTIONS=--experimental-vm-modules npm test -- --coverage --coverageProvider=v8