From bc11e0f8d706db3101ac973c4968cc6376dbd4dc Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 9 Jul 2017 18:09:25 +0100 Subject: [PATCH] Fix Makefile --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 75bd071..722b03a 100644 --- a/Makefile +++ b/Makefile @@ -10,11 +10,14 @@ hooks: .git/hooks/pre-push .git/hooks/pre-push: hook.sh cp $< $@ -publish: npm publish +publish: + npm publish -test: npm test +test: + npm run test -lint: npm run lint +lint: + npm run lint npm-dep: test `which npm` || echo 'You need npm to do npm install... makes sense?'