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-beta.0 to 3.0.0-beta.2

CHANGELOG.md

5

package.json
{
"name": "@lerna/symlink-binary",
"version": "3.0.0-beta.0",
"version": "3.0.0-beta.2",
"description": "TODO",

@@ -34,3 +34,2 @@ "keywords": [

"@lerna/create-symlink": "^3.0.0-beta.0",
"@lerna/fs-utils": "^3.0.0-beta.0",
"@lerna/package": "^3.0.0-beta.0",

@@ -41,3 +40,3 @@ "fs-extra": "^5.0.0",

},
"gitHead": "349b9c765bcbf38988d1fcd48313422417a04c8f"
"gitHead": "ca9561a1ffe6292cceaeca30e4f7d5d85757c710"
}

7

symlink-binary.js

@@ -9,3 +9,2 @@ "use strict";

const Package = require("@lerna/package");
const FileSystemUtilities = require("@lerna/fs-utils");
const createSymlink = require("@lerna/create-symlink");

@@ -39,8 +38,6 @@

return FileSystemUtilities.mkdirp(destPackage.binLocation).then(() =>
return fs.mkdirp(destPackage.binLocation).then(() =>
pMap(actions, meta => {
if (meta) {
return createSymlink(meta.src, meta.dst, "exec").then(() =>
FileSystemUtilities.chmod(meta.src, "755")
);
return createSymlink(meta.src, meta.dst, "exec").then(() => fs.chmod(meta.src, "755"));
}

@@ -47,0 +44,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