Socket
Socket
Sign inDemoInstall

@lerna/symlink-dependencies

Package Overview
Dependencies
Maintainers
2
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lerna/symlink-dependencies - 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 @@

6

package.json
{
"name": "@lerna/symlink-dependencies",
"version": "3.16.2",
"version": "3.17.0",
"description": "Lerna's internal symlinking tool",

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

"@lerna/resolve-symlink": "3.16.0",
"@lerna/symlink-binary": "3.16.2",
"@lerna/symlink-binary": "3.17.0",
"fs-extra": "^8.1.0",

@@ -43,3 +43,3 @@ "p-finally": "^1.0.0",

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

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

// create package symlink
chain = chain.then(() => createSymlink(dependencyNode.location, targetDirectory, "junction"));
const dependencyLocation = dependencyNode.pkg.contents
? path.resolve(dependencyNode.location, dependencyNode.pkg.contents)
: dependencyNode.location;
chain = chain.then(() => createSymlink(dependencyLocation, targetDirectory, "junction"));

@@ -83,0 +86,0 @@ // TODO: pass PackageGraphNodes directly instead of Packages

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