New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grunt-karma-sonar

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-karma-sonar - npm Package Compare versions

Comparing version 0.2.20 to 0.2.21

6

CHANGELOG.md

@@ -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)

8

Gruntfile.js

@@ -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 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc