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.5 to 0.2.6

4

CHANGELOG.md

@@ -1,3 +0,3 @@

<a name="0.2.5"></a>
# 0.2.4 (2015-06-09)
<a name="0.2.6"></a>
# 0.2.6 (2015-06-09)

@@ -4,0 +4,0 @@ ## Bug Fixes

{
"name": "grunt-karma-sonar",
"description": "Grunt plugin for integrating karma reports with sonar",
"version": "0.2.5",
"version": "0.2.6",
"homepage": "https://github.com/mdasberg/grunt-karma-sonar",

@@ -6,0 +6,0 @@ "author": {

@@ -45,8 +45,8 @@ 'use strict';

function mergeJson(original, override) {
return _.merge(original, override, function (a, b) {
if (_.isArray(a)) {
return a.concat(b);
return _.merge(original, override, function (a, b, key, aParent, bParent) {
if (_.isUndefined(b)) {
aParent[key] = undefined;
return;
}
});
}

@@ -74,3 +74,3 @@

if (value !== undefined && value !== null) {
if (value !== undefined) {
args.push('-D' + prop + '=' + value);

@@ -77,0 +77,0 @@ }

Sorry, the diff of this file is not supported yet

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