@webiny/cli 5.37.6 → 5.37.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.
Files changed (2) hide show
  1. package/bin.js +3 -3
  2. package/package.json +4 -4
package/bin.js CHANGED
@@ -22,12 +22,12 @@ const currentNodeVersion = process.versions.node;
22
22
 
23
23
  try {
24
24
  const { stdout } = await execa("yarn", ["--version"]);
25
- if (!semver.satisfies(stdout, ">=2")) {
26
- console.error(chalk.red(`"@webiny/cli" requires yarn >=2!`));
25
+ if (!semver.satisfies(stdout, ">=3")) {
26
+ console.error(chalk.red(`"@webiny/cli" requires yarn 3 or 4!`));
27
27
  process.exit(1);
28
28
  }
29
29
  } catch (err) {
30
- console.error(chalk.red(`"@webiny/cli" requires yarn >=2!`));
30
+ console.error(chalk.red(`"@webiny/cli" requires yarn 3 or 4!`));
31
31
  console.log(
32
32
  `Run ${chalk.blue("yarn set version berry")} to install a compatible version of yarn.`
33
33
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/cli",
3
- "version": "5.37.6",
3
+ "version": "5.37.7",
4
4
  "main": "index.js",
5
5
  "bin": {
6
6
  "webiny": "./bin.js"
@@ -13,8 +13,8 @@
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.37.6",
17
- "@webiny/wcp": "5.37.6",
16
+ "@webiny/telemetry": "5.37.7",
17
+ "@webiny/wcp": "5.37.7",
18
18
  "boolean": "3.2.0",
19
19
  "camelcase": "5.3.1",
20
20
  "chalk": "4.1.2",
@@ -64,5 +64,5 @@
64
64
  ]
65
65
  }
66
66
  },
67
- "gitHead": "53e962c150c2732178d0431d7dfb0f6e9caa3381"
67
+ "gitHead": "115054c51d8e6699eed34ab574ae30cb6a716be0"
68
68
  }