Socket
Socket
Sign inDemoInstall

heroku-cli-util

Package Overview
Dependencies
Maintainers
2
Versions
155
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

heroku-cli-util - npm Package Compare versions

Comparing version 3.5.1 to 3.5.2

2

command.js

@@ -12,3 +12,3 @@ 'use strict';

let opts = {
log: context.debug,
debug: context.debug,
token: context.auth.password,

@@ -15,0 +15,0 @@ };

'use strict';
let config = require('rc')('heroku', {
color: true
});
let fs = require('fs');
let path = require('path');
let _ = require('lodash');
let ini = require('ini');
let home = process.env.HOME || process.env.USERPROFILE || '/root';
let config = {
color: true,
home: home,
};
try {
let p = path.join(home, '.herokurc');
let iniConfig = ini.parse(fs.readFileSync(p, 'utf-8'));
config = _.assign(config, iniConfig);
} catch (e) {}
config.host = process.env.HEROKU_HOST || 'heroku.com';

@@ -8,0 +21,0 @@ config.git_host = process.env.HEROKU_GIT_HOST || config.host;

{
"name": "heroku-cli-util",
"version": "3.5.1",
"version": "3.5.2",
"description": "Set of helpful CLI utilities",

@@ -22,4 +22,3 @@ "main": "index.js",

"jshint": "*",
"mocha": "*",
"netrc": "*"
"mocha": "*"
},

@@ -30,6 +29,7 @@ "dependencies": {

"columnify": "^1.4.1",
"heroku-client": "^1.10.0",
"heroku-client": "^1.10.1",
"ini": "^1.3.3",
"linewrap": "^0.2.1",
"rc": "^1.0.1"
"lodash": "^3.8.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