grunt-groc
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "grunt-groc", | ||
"description": "Generate documentation using groc", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"homepage": "https://github.com/jdcataldo/grunt-groc", | ||
@@ -23,5 +23,2 @@ "author": { | ||
], | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"engines": { | ||
@@ -28,0 +25,0 @@ "node": ">= 0.8.0" |
@@ -37,3 +37,9 @@ /* | ||
// Pass the args to groc | ||
groc(_.flatten(args), function(){ | ||
groc(_.flatten(args), function(error){ | ||
if(error) { | ||
grunt.warn(error); | ||
process.exit(1); | ||
done(false); | ||
return; | ||
} | ||
done(); | ||
@@ -40,0 +46,0 @@ }); |
4848
7
69