grunt-cucumberjs
Advanced tools
Comparing version 0.8.0 to 0.8.1
{ | ||
"name": "grunt-cucumberjs", | ||
"description": "Generates documentation from Cucumber features", | ||
"version": "0.8.0", | ||
"version": "0.8.1", | ||
"homepage": "https://github.com/mavdi/grunt-cucumberjs", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -31,3 +31,9 @@ /* | ||
if (grunt.option(key)) { | ||
options[key] = grunt.option(key); | ||
if(key === 'tags') { | ||
if(options.tags === '') { | ||
options[key] = grunt.option(key); | ||
} | ||
}else { | ||
options[key] = grunt.option(key); | ||
} | ||
} | ||
@@ -34,0 +40,0 @@ } |
41531
568