Skip to content

Commit

Permalink
Update makefile to use npm to lint & test
Browse files Browse the repository at this point in the history
  • Loading branch information
fb55 committed Nov 1, 2018
1 parent 2ef2fd3 commit b75bd02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -3,10 +3,10 @@ XYZ = node_modules/.bin/xyz --message 'Release X.Y.Z' --tag X.Y.Z --repo git@git
UPSTREAM = git@github.com:cheeriojs/cheerio.git

lint:
@./node_modules/.bin/eslint --ignore-path .gitignore .
@npm run test:lint

test: lint
@./node_modules/.bin/mocha --recursive --reporter $(REPORTER)
test:
@npm run test

setup:
@npm install
Expand Down

0 comments on commit b75bd02

Please sign in to comment.