@webiny/cli 5.18.0-beta.2 → 5.18.1-beta.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.1-beta.0](https://github.com/webiny/webiny-js/compare/v5.18.0...v5.18.1-beta.0) (2021-11-25)
7
+
8
+ **Note:** Version bump only for package @webiny/cli
9
+
10
+
11
+
12
+
13
+
14
+ # [5.18.0](https://github.com/webiny/webiny-js/compare/v5.18.0-beta.4...v5.18.0) (2021-11-24)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * adjust debug message [no ci] ([9c16da3](https://github.com/webiny/webiny-js/commit/9c16da3ba2ad1c7a61bfd02f44263790183b92e2))
20
+
21
+
22
+
23
+
24
+
25
+ # [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)
26
+
27
+ **Note:** Version bump only for package @webiny/cli
28
+
29
+
30
+
31
+
32
+
33
+ # [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)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * remove context ([ec4566a](https://github.com/webiny/webiny-js/commit/ec4566af26fe67cc7cb26728e7f65e54e7f16968))
39
+
40
+
41
+
42
+
43
+
6
44
  # [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)
7
45
 
8
46
  **Note:** Version bump only for package @webiny/cli
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.2",
3
+ "version": "5.18.1-beta.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.2",
16
+ "@webiny/telemetry": "5.18.1-beta.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": "02bb6242be1f61cbc204aea458fbc9e7c6000fc8"
63
+ "gitHead": "40a4ae326d4390061c3cf2051a8a8c051382168e"
64
64
  }