vbwdev/project-lvl2-s269

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install:
    npm install

lint:
    npm run eslint .

publish:
    @read -p "Enter type of version (major | minor | patch): " type; \
    npm version $$type
    npm publish
    git push

run:
    npm run babel-node -- src/bin/gendiff.js

build:
    rm -rf dist
    npm run build

test:
    npm test