Socket
Socket
Sign inDemoInstall

dotnet-deps-parser

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dotnet-deps-parser - npm Package Compare versions

Comparing version 5.2.0 to 5.2.1

12

dist/parsers/index.js

@@ -257,2 +257,14 @@ "use strict";

if (propertyList.TargetFramework) {
// sanity check
if (Array.isArray(propertyList.TargetFramework)) {
// mutate the array to effectively "ignore" conditions
propertyList.TargetFramework = propertyList.TargetFramework.map((framework) => {
if (framework &&
typeof framework === 'object' &&
Object.hasOwnProperty.call(framework, '_')) {
return framework._;
}
return framework;
});
}
targetFrameworksResult = [

@@ -259,0 +271,0 @@ ...targetFrameworksResult,

4

package.json

@@ -8,3 +8,3 @@ {

"test:tap": "npm run build && tap test/lib/**/*.test.ts -Rspec --timeout=300",
"test:jest": "jest",
"test:jest": "jest --maxWorkers=1",
"lint": "npm run format:check && tslint -p tsconfig.json",

@@ -51,3 +51,3 @@ "build": "tsc",

},
"version": "5.2.0"
"version": "5.2.1"
}

Sorry, the diff of this file is not supported yet

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