@toa.io/cli 0.20.0-dev.6 → 0.20.0-dev.7

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.20.0-dev.6",
3
+ "version": "0.20.0-dev.7",
4
4
  "description": "Toa CLI",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -22,14 +22,14 @@
22
22
  "@toa.io/runtime": "*"
23
23
  },
24
24
  "dependencies": {
25
- "@toa.io/console": "0.20.0-dev.7",
26
- "@toa.io/generic": "0.20.0-dev.7",
27
- "@toa.io/kubernetes": "0.20.0-dev.7",
28
- "@toa.io/norm": "0.20.0-dev.7",
29
- "@toa.io/yaml": "0.20.0-dev.7",
25
+ "@toa.io/console": "0.20.0-dev.8",
26
+ "@toa.io/generic": "0.20.0-dev.8",
27
+ "@toa.io/kubernetes": "0.20.0-dev.8",
28
+ "@toa.io/norm": "0.20.0-dev.8",
29
+ "@toa.io/yaml": "0.20.0-dev.8",
30
30
  "dotenv": "16.1.1",
31
31
  "find-up": "5.0.0",
32
32
  "yargs": "17.6.2"
33
33
  },
34
- "gitHead": "146e7e209d7a8bfca0fdfacaa8eaa51f41412a9a"
34
+ "gitHead": "d8c08ec7def70ad93de06541af497cce8c4c1b50"
35
35
  }
@@ -20,7 +20,7 @@ async function build (contextPath, componentPatterns) {
20
20
 
21
21
  const composition = context.compositions[0].name
22
22
 
23
- return `${context.registry.base ? context.registry.base + '/' : ''}${context.name}/composition-${composition}`
23
+ return `${context.registry.base === undefined ? '' : context.registry.base + '/'}${context.name}/composition-${composition}`
24
24
  }
25
25
 
26
26
  /**