From: GoalSmashers Date: Thu, 2 Aug 2012 20:55:08 +0000 (+0200) Subject: * Made path to vows local. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=106ec80294c15977f2f614f241c924271efa4491;p=clean-css.git * Made path to vows local. * Explicit node 0.6 requirement. --- diff --git a/Makefile b/Makefile index 13544235..15c2a68f 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,11 @@ TEST_DIR = test +VOWS = ./node_modules/vows/bin/vows all: test test: @@echo "Running all tests via vows" - @@vows ${TEST_DIR}/*-test.js + @@${VOWS} ${TEST_DIR}/*-test.js bench: @@echo "Running benchmark on big.css file" diff --git a/package.json b/package.json index 6f4815cf..2a66b09b 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,6 @@ "vows": "0.6.x" }, "engines": { - "node": ">=0.4.0" + "node": ">=0.6.0" } }