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

@aspecto/core

Package Overview
Dependencies
Maintainers
3
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aspecto/core - npm Package Compare versions

Comparing version 1.1.9 to 1.1.10

23

dist/collection/GitCollector.js

@@ -37,7 +37,20 @@ "use strict";

}
const gitData = dynamic_require_1.child_process()
.execSync('git rev-parse HEAD', { stdio: 'ignore' })
.toString()
.trim();
GITCollector.hash = gitData;
let gitData = undefined;
try {
gitData = dynamic_require_1.child_process()
.execSync('git rev-parse HEAD', { stdio: 'ignore' })
.toString()
.trim();
GITCollector.hash = gitData;
}
catch (e2) {
try {
gitData = dynamic_require_1.child_process()
.execSync('git rev-parse HEAD')
.toString()
.trim();
GITCollector.hash = gitData;
}
catch (e3) { }
}
return gitData;

@@ -44,0 +57,0 @@ }

{
"name": "@aspecto/core",
"version": "1.1.9",
"version": "1.1.10",
"description": "Aspecto metric collector",

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

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