@toa.io/cli 0.9.2-dev.0 → 1.0.0-dev.1

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": "@toa.io/cli",
3
- "version": "0.9.2-dev.0",
3
+ "version": "1.0.0-dev.1",
4
4
  "description": "Toa CLI",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -23,13 +23,12 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@toa.io/console": "0.6.0",
26
- "@toa.io/generic": "0.9.0",
27
- "@toa.io/kubernetes": "0.7.2",
28
- "@toa.io/norm": "0.10.1-dev.0",
29
- "@toa.io/yaml": "0.7.3",
30
- "dotenv": "16.0.3",
26
+ "@toa.io/generic": "0.9.1-dev.0",
27
+ "@toa.io/kubernetes": "0.7.3-dev.0",
28
+ "@toa.io/norm": "1.0.0-dev.1",
29
+ "@toa.io/yaml": "0.7.4-dev.1",
31
30
  "find-up": "5.0.0",
32
31
  "yargs": "17.6.2"
33
32
  },
34
- "gitHead": "7f1fdbfe3aa33eb4a06cb1a33d15be18854bcd88"
33
+ "gitHead": "1121d84f7051a0d54ecf899efeaf3b328d7894c0"
35
34
  }
package/readme.md CHANGED
@@ -17,7 +17,7 @@ Set Configuration Object key. Nested keys are addressed with dot notation.
17
17
 
18
18
  #### Examples
19
19
 
20
- It is assumed you are in the component's directory, use `--path` otherwise.
20
+ > It is assumed you are in the component's directory, use `--path` otherwise.
21
21
 
22
22
  ```shell
23
23
  # set new value
package/src/program.js CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  'use strict'
4
4
 
5
- if (!('TOA_ENV' in process.env)) require('dotenv').config()
6
-
7
5
  const yargs = require('yargs/yargs')
8
6
 
9
7
  const { console } = require('@toa.io/console')