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

heroku-cli-util

Package Overview
Dependencies
Maintainers
1
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 1.8.1 to 1.9.0

preauth.js

2

cli.js

@@ -11,1 +11,3 @@ var console = require('./console');

exports.console = console;
exports.preauth = require('./preauth');
exports.prompt = require('./prompt');

5

package.json
{
"name": "heroku-cli-util",
"version": "1.8.1",
"version": "1.9.0",
"description": "Set of helpful CLI utilities",

@@ -27,4 +27,5 @@ "main": "cli.js",

"chalk": "^1.0.0",
"columnify": "^1.4.1"
"columnify": "^1.4.1",
"heroku-client": "^1.10.0"
}
}

@@ -15,2 +15,11 @@ # heroku-cli-util

## Prompt
```js
var h = require('heroku-cli-util');
h.prompt('email', function (email) {
console.log(`your email is: ${email}`);
});
```
## Errors (display in red)

@@ -55,3 +64,12 @@

## Preauth
```js
var h = require('heroku-cli-util');
h.preauth("APPNAME", "APITOKEN", function (err) {
console.log('preauthed');
});
```
## Tests

@@ -58,0 +76,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