Socket
Socket
Sign inDemoInstall

symlink

Package Overview
Dependencies
11
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

test/cyclicals/module6/package.json

4

CHANGELOG.md

@@ -0,1 +1,5 @@

1.0.1 / 2015-03-28
==================
* Errors from library use are now propagated correctly via callback
1.0.0 / 2015-03-26

@@ -2,0 +6,0 @@ ==================

10

lib/symlink.js

@@ -108,6 +108,12 @@ var join = require('path').join

var cmds = analyze(deps, absPaths, globals, names);
cb(null, cmds);
var cmds;
try {
cmds = analyze(deps, absPaths, globals, names);
}
catch (err) {
return cb(err);
}
return cb(null, cmds);
});
};

@@ -5,3 +5,3 @@ {

"author": "Eirik Albrigtsen <analsandblaster@gmail.com>",
"version": "1.0.0",
"version": "1.0.1",
"repository": {

@@ -8,0 +8,0 @@ "type": "git",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc