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

tap-logel

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tap-logel - npm Package Compare versions

Comparing version 1.0.1 to 1.1.0

15

index.js

@@ -7,8 +7,19 @@ #!/usr/bin/env node

let currentExtras = [];
parser.on('extra', extra => {
currentExtras.push(extra.trim());
});
parser.on('assert', test => {
let extras = currentExtras.length === 0 ? undefined : currentExtras;
if (test.ok) {
log.debug('test pass', {name: test.name});
log.debug('test pass', {name: test.name, extras});
} else {
log.error('test fail', {name: test.name, diag: test.diag});
log.error('test fail', {name: test.name, diag: test.diag, extras});
}
if (currentExtras.length !== 0) {
currentExtras = [];
}
});

@@ -15,0 +26,0 @@

2

package.json
{
"name": "tap-logel",
"version": "1.0.1",
"version": "1.1.0",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

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