From 87782b400d2c6a086988b23db61a12145e91df43 Mon Sep 17 00:00:00 2001 From: Raul Ochoa Date: Mon, 16 Mar 2015 00:38:29 +0100 Subject: [PATCH] jshint to be tested by default --- Makefile | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c1c5a4ac..1d3c1cdd 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,8 @@ jshint: @echo "***jshint***" @./node_modules/.bin/jshint lib/ +test-all: jshint test + check: test .PHONY: pre-install test diff --git a/package.json b/package.json index af48512b..44a6e6f4 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ }, "scripts": { "preinstall": "make pre-install", - "test": "make test" + "test": "make test-all" }, "engines": { "node": ">=0.8 <0.11",