vestauth 0.2.4 → 0.2.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vestauth",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "auth for agents–from the creator of dotenvx",
5
5
  "keywords": [
6
6
  "vestauth"
@@ -6,7 +6,6 @@ function hello () {
6
6
  const options = this.opts()
7
7
  logger.debug(`options: ${JSON.stringify(options)}`)
8
8
 
9
-
10
9
  const output = {
11
10
  hello: agent.hello()
12
11
  }
@@ -21,7 +21,6 @@ agent.command('init')
21
21
  .option('-pp, --pretty-print', 'pretty print output')
22
22
  .action(initAction)
23
23
 
24
-
25
24
  // vestauth agent hello
26
25
  const helloAction = require('./../actions/agent/hello')
27
26
  agent.command('hello')
@@ -1,5 +1,4 @@
1
1
  const { http } = require('./http')
2
- const buildApiError = require('./buildApiError')
3
2
  const sign = require('./sign')
4
3
  const dotenvx = require('@dotenvx/dotenvx')
5
4