anilukin/frontend-project-11

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
develop:
    npx webpack serve

install:
    npm ci

build:
    NODE_ENV=production npx webpack

test:
    npm test

lint:
    npx eslint .

.PHONY: test