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

@atlaspack/logger

Package Overview
Dependencies
Maintainers
0
Versions
292
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atlaspack/logger - npm Package Compare versions

Comparing version 2.13.2-canary.3638 to 2.13.2-canary.3639

5

lib/tracer.js

@@ -28,8 +28,9 @@ "use strict";

const span = tracer.enter(label);
let result;
try {
const result = await fn();
return result;
result = await fn();
} finally {
tracer.exit(span);
}
return result;
}

10

package.json
{
"name": "@atlaspack/logger",
"version": "2.13.2-canary.3638+27667e303",
"version": "2.13.2-canary.3639+30053076d",
"description": "Blazing fast, zero configuration web application bundler",

@@ -25,7 +25,7 @@ "license": "(MIT OR Apache-2.0)",

"dependencies": {
"@atlaspack/diagnostic": "2.13.2-canary.3638+27667e303",
"@atlaspack/events": "2.13.2-canary.3638+27667e303",
"@atlaspack/rust": "2.13.2-canary.3638+27667e303"
"@atlaspack/diagnostic": "2.13.2-canary.3639+30053076d",
"@atlaspack/events": "2.13.2-canary.3639+30053076d",
"@atlaspack/rust": "2.13.2-canary.3639+30053076d"
},
"gitHead": "27667e30343a30246292af83d394bcfd542f04e5"
"gitHead": "30053076dfd20ca62ddbc682f58adb994029ac55"
}

@@ -22,8 +22,9 @@ // @flow strict-local

const span = tracer.enter(label);
let result;
try {
const result = await fn();
return result;
result = await fn();
} finally {
tracer.exit(span);
}
return result;
}
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