Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

liftoff

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

liftoff - npm Package Compare versions

Comparing version 0.13.3 to 0.13.5

appveyor.yml

5

index.js

@@ -0,1 +1,2 @@

const fs = require('fs');
const util = require('util');

@@ -78,2 +79,6 @@ const path = require('path');

}
// resolve symlink if needed
if(fs.lstatSync(configPath).isSymbolicLink()) {
configPath = fs.realpathSync(configPath);
}
}

@@ -80,0 +85,0 @@

3

lib/find_config.js

@@ -22,6 +22,5 @@ const fs = require('fs');

if (fs.existsSync(configPath)) {
// traverse symlinks if needed
return fs.realpathSync(path.resolve(configPath));
return path.resolve(configPath);
}
return null;
};
{
"name": "liftoff",
"description": "Launch your command line tool with ease.",
"version": "0.13.3",
"version": "0.13.5",
"homepage": "https://github.com/tkellen/node-liftoff",

@@ -6,0 +6,0 @@ "author": {

Sorry, the diff of this file is not supported yet

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