Badasper/project-lvl3-s382

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install: 
    npm install 

start:
    npx babel-node -- src/bin/page-loader.js https://hexlet.io/courses

publish:
    npm publish

build:
    

lint:
    npx eslint .

test:
    npm test -- --coverage

debug:
    DEBUG=page-loader* npm test -- --coverage

watch:
    npm test -- --watchAll

.PHONY: test install