grunt-jsdoc
Advanced tools
Comparing version 0.5.5 to 0.5.6
{ | ||
"name": "grunt-jsdoc", | ||
"description": "Integrates jsdoc3 generation into your Grunt build", | ||
"version": "0.5.5", | ||
"version": "0.5.6", | ||
"homepage": "https://github.com/krampstudio/grunt-jsdoc", | ||
@@ -41,5 +41,5 @@ "author": { | ||
"grunt": "~0.4.3", | ||
"grunt-contrib-clean": "latest", | ||
"grunt-contrib-nodeunit": "latest", | ||
"grunt-contrib-jshint": "latest" | ||
"grunt-contrib-clean": "~0.5.0", | ||
"grunt-contrib-jshint": "~0.10.0", | ||
"grunt-contrib-nodeunit": "~0.4.0" | ||
}, | ||
@@ -46,0 +46,0 @@ "dependencies": { |
@@ -104,2 +104,3 @@ # grunt-jsdoc [](https://travis-ci.org/krampstudio/grunt-jsdoc) [](http://badge.fury.io/js/grunt-jsdoc) [](http://gruntjs.com/) | ||
* _0.5.5_ Update docstrap version | ||
* _0.5.6_ Fix dependencies version and bug [#87](https://github.com/krampstudio/grunt-jsdoc/issues/87) | ||
* _0.4.0_ Update to jsdoc 3.2.0 stable, Fix [#37](https://github.com/krampstudio/grunt-jsdoc/issues/37), add integration tests | ||
@@ -106,0 +107,0 @@ * _0.4.1_ Fix [#53](https://github.com/krampstudio/grunt-jsdoc/issues/53) and [#54](https://github.com/krampstudio/grunt-jsdoc/issues/54) |
@@ -83,3 +83,3 @@ /** | ||
//check if there is sources to generate the doc for | ||
if(srcs.length === 0){ | ||
if(srcs.length === 0 && !options.configure){ | ||
grunt.log.error('No source files defined'); | ||
@@ -86,0 +86,0 @@ grunt.fail.warn('Wrong configuration', errorCode.generic); |
21136
138