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

heroku-cli-addons

Package Overview
Dependencies
Maintainers
7
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

heroku-cli-addons - npm Package Compare versions

Comparing version 1.2.4 to 1.2.5

5

commands/addons/destroy.js

@@ -15,2 +15,7 @@ 'use strict'

let addons = yield context.args.map(name => resolve.addon(heroku, context.app, name))
for (let addon of addons) {
// prevent deletion of app when context.app is set but the addon is attached to a different app
let app = addon.app.name
if (context.app && app !== context.app) throw new Error(`${cli.color.addon(addon.name)} is on ${cli.color.app(app)} not ${cli.color.app(context.app)}`)
}
for (let app of toPairs(groupBy(addons, 'app.name'))) {

@@ -17,0 +22,0 @@ addons = app[1]

32

package.json
{
"name": "heroku-cli-addons",
"description": "`heroku addons:*` commands",
"version": "1.2.4",
"version": "1.2.5",
"author": "Bo Jeanes @bjeanes",

@@ -12,11 +12,11 @@ "bugs": {

"co-wait": "0.0.0",
"heroku-cli-util": "6.0.15",
"lodash.flatten": "4.3.0",
"lodash.groupby": "4.5.1",
"lodash.memoize": "4.1.1",
"lodash.merge": "4.5.1",
"lodash.some": "4.5.1",
"lodash.sortby": "4.6.1",
"lodash.topairs": "4.2.0",
"lodash.values": "4.2.0",
"heroku-cli-util": "6.1.2",
"lodash.flatten": "4.4.0",
"lodash.groupby": "4.6.0",
"lodash.memoize": "4.1.2",
"lodash.merge": "4.6.0",
"lodash.some": "4.6.0",
"lodash.sortby": "4.7.0",
"lodash.topairs": "4.3.0",
"lodash.values": "4.3.0",
"printf": "0.2.5"

@@ -26,9 +26,9 @@ },

"chai": "^3.2.0",
"lolex": "1.5.1",
"mocha": "3.0.2",
"nock": "8.0.0",
"nyc": "7.1.0",
"standard": "7.1.2",
"lolex": "1.5.2",
"mocha": "3.2.0",
"nock": "9.0.4",
"nyc": "10.1.2",
"standard": "8.6.0",
"time-require": "0.1.2",
"unexpected": "10.15.1"
"unexpected": "10.25.0"
},

@@ -35,0 +35,0 @@ "homepage": "https://github.com/heroku/heroku-cli-addons",

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