@heroku/skynet 1.6.5 → 1.6.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@ let SkynetAPI = require('../../lib/skynet')
4
4
 
5
5
  async function run (context) {
6
6
  const skynet = new SkynetAPI(context.auth.password)
7
- await cli.action(`removing ${cli.color.cyan(context.flags.userpass)} from ${cli.color.cyan(context.flags.user)}`, skynet.removeUserpass(context.flags.user, context.flags.flag))
7
+ await cli.action(`removing ${cli.color.cyan(context.flags.flag)} from ${cli.color.cyan(context.flags.user)}`, skynet.removeUserpass(context.flags.user, context.flags.flag))
8
8
  }
9
9
 
10
10
  module.exports = {
@@ -31,7 +31,7 @@ module.exports = {
31
31
  char: 'n',
32
32
  description: 'additional information for the whitelist entry',
33
33
  hasValue: true,
34
- required: false
34
+ required: true
35
35
  }
36
36
  ],
37
37
  run: command(run)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heroku/skynet",
3
- "version": "1.6.5",
3
+ "version": "1.6.6",
4
4
  "description": "use Skynet from Heroku CLI",
5
5
  "main": "index.js",
6
6
  "author": "Bob Argenbright @byt3smith",