Socket
Socket
Sign inDemoInstall

snyk-gradle-plugin

Package Overview
Dependencies
Maintainers
1
Versions
141
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

snyk-gradle-plugin - npm Package Compare versions

Comparing version 2.11.0 to 2.11.1

16

dist/index.js

@@ -13,3 +13,15 @@ "use strict";

// To enable debugging output, run the CLI as `DEBUG=snyk-gradle-plugin snyk ...`
const debugLogging = debugModule('snyk-gradle-plugin');
let logger = null;
function debugLog(s) {
if (logger === null) {
// Lazy init: Snyk CLI needs to process the CLI argument "-d" first.
// TODO(BST-648): more robust handling of the debug settings
if (process.env.DEBUG) {
debugModule.enable(process.env.DEBUG);
}
logger = debugModule('snyk-gradle-plugin');
console.log('debugger initialized ' + process.env.DEBUG);
}
logger(s);
}
const packageFormatVersion = 'mvn:0.0.1';

@@ -144,3 +156,3 @@ function isMultiSubProject(options) {

if (maybeMatch) {
debugLogging(maybeMatch[1]);
debugLog(maybeMatch[1]);
}

@@ -147,0 +159,0 @@ });

2

package.json

@@ -45,3 +45,3 @@ {

},
"version": "2.11.0"
"version": "2.11.1"
}

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