drytikov/project-lvl2-s129

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install: install-deps install-flow-typed

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

install-deps:
    npm install

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

build:
    rm -rf dist
    npm run build

test:
    npm test

check-types:
    npm run flow

lint:
    npm run eslint .

publish:
    npm publish

.PHONY: test