Socket
Socket
Sign inDemoInstall

@lerna/symlink-binary

Package Overview
Dependencies
Maintainers
4
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lerna/symlink-binary - npm Package Compare versions

Comparing version 3.0.0 to 3.1.4

12

CHANGELOG.md

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

<a name="3.1.4"></a>
## [3.1.4](https://github.com/lerna/lerna/compare/v3.1.3...v3.1.4) (2018-08-21)
### Bug Fixes
* **symlink-binary:** Avoid instanceof across nested module boundaries ([26d1b72](https://github.com/lerna/lerna/commit/26d1b72)), closes [#1525](https://github.com/lerna/lerna/issues/1525)
<a name="3.0.0"></a>

@@ -8,0 +20,0 @@ # [3.0.0](https://github.com/lerna/lerna/compare/v3.0.0-rc.0...v3.0.0) (2018-08-10)

4

package.json
{
"name": "@lerna/symlink-binary",
"version": "3.0.0",
"version": "3.1.4",
"description": "An internal Lerna tool",

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

},
"gitHead": "0c40a17a7cd4e9acd8e7ec33ffacd1c1acef5dc6"
"gitHead": "37ef5f2ebd4fd207ee74a4fe8838323acb882435"
}

@@ -49,3 +49,4 @@ "use strict";

function resolvePackageRef(pkgRef) {
if (pkgRef instanceof Package) {
// don't use instanceof because it fails across nested module boundaries
if (typeof pkgRef !== "string" && pkgRef.location) {
return pkgRef;

@@ -52,0 +53,0 @@ }

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