@webiny/cli 5.18.0-beta.1 → 5.18.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,44 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.18.0](https://github.com/webiny/webiny-js/compare/v5.18.0-beta.4...v5.18.0) (2021-11-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * adjust debug message [no ci] ([9c16da3](https://github.com/webiny/webiny-js/commit/9c16da3ba2ad1c7a61bfd02f44263790183b92e2))
12
+
13
+
14
+
15
+
16
+
17
+ # [5.18.0-beta.4](https://github.com/webiny/webiny-js/compare/v5.18.0-beta.3...v5.18.0-beta.4) (2021-11-23)
18
+
19
+ **Note:** Version bump only for package @webiny/cli
20
+
21
+
22
+
23
+
24
+
25
+ # [5.18.0-beta.3](https://github.com/webiny/webiny-js/compare/v5.18.0-beta.2...v5.18.0-beta.3) (2021-11-22)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * remove context ([ec4566a](https://github.com/webiny/webiny-js/commit/ec4566af26fe67cc7cb26728e7f65e54e7f16968))
31
+
32
+
33
+
34
+
35
+
36
+ # [5.18.0-beta.2](https://github.com/webiny/webiny-js/compare/v5.18.0-beta.1...v5.18.0-beta.2) (2021-11-21)
37
+
38
+ **Note:** Version bump only for package @webiny/cli
39
+
40
+
41
+
42
+
43
+
6
44
  # [5.18.0-beta.1](https://github.com/webiny/webiny-js/compare/v5.18.0-beta.0...v5.18.0-beta.1) (2021-11-19)
7
45
 
8
46
 
package/cli.js CHANGED
@@ -21,7 +21,7 @@ for (let i = 0; i < paths.length; i++) {
21
21
  const { error } = require("dotenv").config({ path });
22
22
  if (boolean(yargs.argv.debug)) {
23
23
  if (error) {
24
- log.info(`Could not load environment variables from ${log.info.hl(path)}.`);
24
+ log.debug(`No environment file found on ${log.debug.hl(path)}.`);
25
25
  } else {
26
26
  log.success(`Successfully loaded environment variables from ${log.success.hl(path)}.`);
27
27
  }
@@ -57,18 +57,10 @@ module.exports = [
57
57
  }
58
58
 
59
59
  const defaultUpgradeTargetVersion = semver.coerce(context.version).version;
60
- const ctx = {
61
- project: {
62
- name: context.project.name,
63
- root: context.project.root
64
- }
65
- };
66
60
 
67
61
  const command = [
68
62
  "https://github.com/webiny/webiny-upgrades",
69
- argv.useVersion || defaultUpgradeTargetVersion,
70
- "--context",
71
- `'${JSON.stringify(ctx)}'`
63
+ argv.useVersion || defaultUpgradeTargetVersion
72
64
  ];
73
65
 
74
66
  if (yargs.argv.debug) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/cli",
3
- "version": "5.18.0-beta.1",
3
+ "version": "5.18.0",
4
4
  "main": "index.js",
5
5
  "bin": {
6
6
  "webiny": "./bin.js"
@@ -13,7 +13,7 @@
13
13
  "author": "Pavel Denisjuk <pavel@webiny.com>",
14
14
  "description": "A tool to bootstrap a Webiny project.",
15
15
  "dependencies": {
16
- "@webiny/telemetry": "5.18.0-beta.1",
16
+ "@webiny/telemetry": "5.18.0",
17
17
  "boolean": "3.1.4",
18
18
  "camelcase": "5.3.1",
19
19
  "chalk": "4.1.2",
@@ -60,5 +60,5 @@
60
60
  ]
61
61
  }
62
62
  },
63
- "gitHead": "7819276c40a119fb5e9b4fec19ab6f1057082691"
63
+ "gitHead": "1afc4528b6d396b4463be25b411a4e9f4b2e3da9"
64
64
  }