* Made path to vows local.
authorGoalSmashers <jakub@goalsmashers.com>
Thu, 2 Aug 2012 20:55:08 +0000 (22:55 +0200)
committerGoalSmashers <jakub@goalsmashers.com>
Thu, 2 Aug 2012 20:55:08 +0000 (22:55 +0200)
* Explicit node 0.6 requirement.

Makefile
package.json

index 1354423..15c2a68 100644 (file)
--- 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"
index 6f4815c..2a66b09 100644 (file)
@@ -20,6 +20,6 @@
     "vows": "0.6.x"
   },
   "engines": {
-    "node": ">=0.4.0"
+    "node": ">=0.6.0"
   }
 }