Socket
Socket
Sign inDemoInstall

@lerna/package-graph

Package Overview
Dependencies
Maintainers
2
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lerna/package-graph - npm Package Compare versions

Comparing version 3.10.0 to 3.10.6

12

CHANGELOG.md

@@ -6,2 +6,14 @@ # Change Log

## [3.10.6](https://github.com/lerna/lerna/compare/v3.10.5...v3.10.6) (2019-01-19)
### Bug Fixes
* **package-graph:** Ensure cycle paths are always names, not objects ([ae81a76](https://github.com/lerna/lerna/commit/ae81a76))
* **package-graph:** Use correct property when testing for duplicates ([ef33cb7](https://github.com/lerna/lerna/commit/ef33cb7))
# [3.10.0](https://github.com/lerna/lerna/compare/v3.9.1...v3.10.0) (2019-01-08)

@@ -8,0 +20,0 @@

4

index.js

@@ -70,3 +70,3 @@ "use strict";

if (packages.size !== this.size) {
if (packages.length !== this.size) {
// weed out the duplicates

@@ -220,3 +220,3 @@ const seen = new Map();

// a transitive cycle
const cycleDependentName = Array.from(dependentNode.localDependencies).find(([key]) =>
const cycleDependentName = Array.from(dependentNode.localDependencies.keys()).find(key =>
currentNode.localDependents.has(key)

@@ -223,0 +223,0 @@ );

{
"name": "@lerna/package-graph",
"version": "3.10.0",
"version": "3.10.6",
"description": "Lerna's internal representation of a package graph",

@@ -37,3 +37,3 @@ "keywords": [

},
"gitHead": "ea8ffa7eb7f63cadc8534332ac3e19f6214ea6da"
"gitHead": "5a7392e59e6ae5ee8aea10467ffb4b12f3b1e3d1"
}
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