CountJr/project-lvl2-s13

View on GitHub
Makefile

Summary

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

lint:
    npm run eslint -- src __tests__

install:
    install-deps install-flow-typed

install-deps:
    yarn

install-flow-typed:
    npm run flow-typed install

build:
    rm -rf dist
    npm run build

test:
    npm test

check-types:
    npm run flow

publish:
    npm publish

.PHONY: test