Socket
Socket
Sign inDemoInstall

@lerna/symlink-binary

Package Overview
Dependencies
Maintainers
2
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.16.2 to 3.17.0

11

CHANGELOG.md

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

# [3.17.0](https://github.com/lerna/lerna/compare/v3.16.5...v3.17.0) (2019-10-10)
### Features
* **link:** Use `publishConfig.directory` as symlink source if it exists to allow linking sub-directories ([#2274](https://github.com/lerna/lerna/issues/2274)) ([d04ce8e](https://github.com/lerna/lerna/commit/d04ce8e10503003e498c44d0db5ff455054d7d71))
## [3.16.2](https://github.com/lerna/lerna/compare/v3.16.1...v3.16.2) (2019-07-22)

@@ -8,0 +19,0 @@

4

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

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

},
"gitHead": "d4b1a0e48d1ff241fafa268dbe57256e10f2cdc8"
"gitHead": "bffa7f228fd5acd240dfea8d3e757040dbe4ca1b"
}

@@ -22,3 +22,6 @@ "use strict";

const actions = Object.keys(srcPackage.bin).map(name => {
const src = path.join(srcPackage.location, srcPackage.bin[name]);
const srcLocation = srcPackage.contents
? path.resolve(srcPackage.location, srcPackage.contents)
: srcPackage.location;
const src = path.join(srcLocation, srcPackage.bin[name]);
const dst = path.join(destPackage.binLocation, name);

@@ -25,0 +28,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