tonytoponi/project-lvl2-s479

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install:
    npm install
build:
    rm -rf dist
    npm run build
start:
    npx babel-node -- 'src/bin/gendiff.js'
publish:
    npm publish --dry-run
installApp:
    npm link
removeApp:
    npm unlink
lint:
    npx eslint .
test:
    npm run test
test-coverage:
    npm test -- --coverage
watch:
    npm run testWatch