lockfile-lint
Advanced tools
Comparing version 4.3.4 to 4.3.5
@@ -6,2 +6,13 @@ # Change Log | ||
## [4.3.5](https://github.com/lirantal/lockfile-lint/compare/lockfile-lint@4.3.4...lockfile-lint@4.3.5) (2020-05-14) | ||
### Bug Fixes | ||
* all debug under lockfile-lint namespace ([#95](https://github.com/lirantal/lockfile-lint/issues/95)) ([a86485b](https://github.com/lirantal/lockfile-lint/commit/a86485b)) | ||
## [4.3.4](https://github.com/lirantal/lockfile-lint/compare/lockfile-lint@4.3.3...lockfile-lint@4.3.4) (2020-05-13) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "lockfile-lint", | ||
"version": "4.3.4", | ||
"version": "4.3.5", | ||
"description": "A CLI to lint a lockfile for security policies", | ||
@@ -182,3 +182,3 @@ "bin": { | ||
}, | ||
"gitHead": "fe4290d81a46e4353a351a09bd54cedbf33aa932" | ||
"gitHead": "9855701804782e471c4d1310b435b4c9da5b3090" | ||
} |
@@ -10,3 +10,3 @@ 'use strict' | ||
} = require('lockfile-lint-api') | ||
const debug = require('debug') | ||
const debug = require('debug')('lockfile-lint') | ||
@@ -21,4 +21,4 @@ module.exports = { | ||
function ValidateSchemeManager ({path, type, validatorValues, validatorOptions}) { | ||
debug('validate-scheme-manager')( | ||
`invoked with validator options: ${JSON.stringify(validatorValues)}` | ||
debug( | ||
`validate-scheme-manager invoked with validator options: ${JSON.stringify(validatorValues)}` | ||
) | ||
@@ -39,5 +39,3 @@ | ||
function ValidateHostManager ({path, type, validatorValues, validatorOptions}) { | ||
debug('validate-host-manager')( | ||
`invoked with validator options: ${JSON.stringify(validatorValues)}` | ||
) | ||
debug(`validate-host-manager invoked with validator options: ${JSON.stringify(validatorValues)}`) | ||
@@ -72,5 +70,3 @@ const options = { | ||
function ValidateHttpsManager ({path, type, validatorValues, validatorOptions}) { | ||
debug('validate-host-manager')( | ||
`invoked with validator options: ${JSON.stringify(validatorValues)}` | ||
) | ||
debug(`validate-host-manager invoked with validator options: ${JSON.stringify(validatorValues)}`) | ||
@@ -90,5 +86,3 @@ const options = { | ||
function ValidateUrlManager ({path, type, validatorValues, validatorOptions}) { | ||
debug('validate-url-manager')( | ||
`invoked with validator options: ${JSON.stringify(validatorValues)}` | ||
) | ||
debug(`validate-url-manager invoked with validator options: ${JSON.stringify(validatorValues)}`) | ||
@@ -95,0 +89,0 @@ const options = { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45330
273