grunt-groc
Advanced tools
Comparing version 0.1.2 to 0.2.0
{ | ||
"name": "grunt-groc", | ||
"description": "Generate documentation using groc", | ||
"version": "0.1.2", | ||
"version": "0.2.0", | ||
"homepage": "https://github.com/jdcataldo/grunt-groc", | ||
@@ -30,5 +30,8 @@ "author": { | ||
"devDependencies": { | ||
"grunt": "~0.4.0rc7", | ||
"grunt-contrib-jshint": "~0.1.1rc6" | ||
"grunt": "~0.4.0", | ||
"grunt-contrib-jshint": "~0.1.1" | ||
}, | ||
"peerDependencies": { | ||
"grunt": "~0.4.0" | ||
}, | ||
"keywords": [ | ||
@@ -35,0 +38,0 @@ "gruntplugin", "groc", "documentation" |
@@ -13,3 +13,3 @@ /* | ||
var groc = require("groc").CLI, | ||
util = grunt.util || grunt.utils, | ||
util = grunt.util, | ||
// Alias for Lo-Dash | ||
@@ -20,4 +20,4 @@ _ = util._; | ||
// Merge options | ||
var options = this.options ? this.options() : this.data.options, | ||
files = this.filesSrc || this.data.src, | ||
var options = this.options(), | ||
files = this.filesSrc, | ||
// Set task as async | ||
@@ -24,0 +24,0 @@ done = this.async(), |
5051
2