grunt-karma-sonar
Advanced tools
Comparing version 0.2.20 to 0.2.21
@@ -0,1 +1,7 @@ | ||
<a name="0.2.21"></a> | ||
# 0.2.21 (2016-02-04) | ||
## Bugfix | ||
- Fix sonar properties with null values are not added anymore | ||
<a name="0.2.20"></a> | ||
@@ -2,0 +8,0 @@ # 0.2.20 (2016-02-02) |
@@ -27,10 +27,14 @@ /* | ||
defaultOutputDir: '.tmp/sonar2', | ||
language: null, | ||
instance: { | ||
jdbcUrl: 'jdbc:h2:tcp://localhost:9092/sonar' | ||
}, | ||
dryRun: true, | ||
dryRun: false, | ||
runnerProperties: { | ||
'sonar.links.homepage': 'https://github.com/mdasberg/grunt-karma-sonar', | ||
'sonar.branch': 'master' | ||
} | ||
}, | ||
excludedProperties: [ | ||
] | ||
}, | ||
@@ -37,0 +41,0 @@ all: { |
{ | ||
"name": "grunt-karma-sonar", | ||
"description": "Grunt plugin for integrating karma reports with sonar", | ||
"version": "0.2.20", | ||
"version": "0.2.21", | ||
"homepage": "https://github.com/mdasberg/grunt-karma-sonar", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -89,4 +89,3 @@ /*globals process */ | ||
var value = _.result(object, key); | ||
if (value !== undefined && sonarOptions.excludedProperties.indexOf(prop) === -1) { | ||
if (value !== undefined && value !== null && sonarOptions.excludedProperties.indexOf(prop) === -1) { | ||
args.push('-D' + prop + '=' + value); | ||
@@ -93,0 +92,0 @@ } |
56670
854