0TH0N/project-lvl3-s390

View on GitHub
Makefile

Summary

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

develop:
    npx webpack-dev-server

install-deps:
    npm install

build:
    rm -rf dist
    NODE_ENV=production npx webpack

test:
    npm test

lint:
    npx eslint .

publish:
    npm publish

.PHONY: test