lazycoder9/project-lvl2-s13

View on GitHub
Makefile

Summary

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

start:
    npm start

develop:
    NODE_ENV=development npm run webpack -- --watch --config config/webpack.development.babel.js

install-deps:
    yarn install

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

build:
    rm -rf dist
    npm run build

run:
    babel-node src\bin\gendiff.js __tests__\fixtures\1.json __tests__\fixtures\2.json

test:
    npm test

check-types:
    npm run flow

lint:
    npm run eslint -- src test

publish:
    npm publish

.PHONY: test