xxphantom/frontend-project-lvl3

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
develop:
    npx webpack serve

install:
    npm ci

build:
    rm -rf dist
    NODE_ENV=production npx webpack

test:
    npm test

lint:
    npx eslint .

test-coverage:
    npm test -- --coverage --coverageProvider=v8

.PHONY: test