create-webiny-project 5.26.0 → 5.27.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 +27 -0
- package/bin.js +4 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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.27.0](https://github.com/webiny/webiny-js/compare/v5.27.0-beta.0...v5.27.0) (2022-05-26)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package create-webiny-project
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [5.27.0-beta.0](https://github.com/webiny/webiny-js/compare/v5.26.1-beta.0...v5.27.0-beta.0) (2022-05-25)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package create-webiny-project
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [5.26.1-beta.0](https://github.com/webiny/webiny-js/compare/v5.26.0...v5.26.1-beta.0) (2022-05-24)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **create-webiny-project:** require node >=14 ([#2420](https://github.com/webiny/webiny-js/issues/2420)) ([82a0454](https://github.com/webiny/webiny-js/commit/82a0454c82fb778a691111578bf5c683ca9a55c8))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [5.26.0](https://github.com/webiny/webiny-js/compare/v5.26.0-beta.2...v5.26.0) (2022-05-13)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package create-webiny-project
|
package/bin.js
CHANGED
|
@@ -8,12 +8,12 @@ const verifyConfig = require("./utils/verifyConfig");
|
|
|
8
8
|
|
|
9
9
|
(async () => {
|
|
10
10
|
const nodeVersion = process.versions.node;
|
|
11
|
-
if (!semver.satisfies(nodeVersion, "
|
|
11
|
+
if (!semver.satisfies(nodeVersion, ">=14")) {
|
|
12
12
|
console.error(
|
|
13
13
|
chalk.red(
|
|
14
14
|
[
|
|
15
|
-
`You are running Node.js ${nodeVersion}, but Webiny requires version
|
|
16
|
-
`Please switch to one of the
|
|
15
|
+
`You are running Node.js ${nodeVersion}, but Webiny requires version 14 or higher.`,
|
|
16
|
+
`Please switch to one of the required versions and try again.`,
|
|
17
17
|
"For more information, please visit https://docs.webiny.com/docs/tutorials/install-webiny#prerequisites."
|
|
18
18
|
].join(" ")
|
|
19
19
|
)
|
|
@@ -23,7 +23,7 @@ const verifyConfig = require("./utils/verifyConfig");
|
|
|
23
23
|
|
|
24
24
|
try {
|
|
25
25
|
const yarnVersion = await getYarnVersion();
|
|
26
|
-
if (!semver.satisfies(yarnVersion, "
|
|
26
|
+
if (!semver.satisfies(yarnVersion, ">=1.22.0")) {
|
|
27
27
|
console.error(
|
|
28
28
|
chalk.red(
|
|
29
29
|
[
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-webiny-project",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.27.0",
|
|
4
4
|
"description": "Webiny project bootstrap tool.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"author": "Webiny Ltd.",
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@webiny/telemetry": "5.
|
|
16
|
+
"@webiny/telemetry": "5.27.0",
|
|
17
17
|
"chalk": "4.1.0",
|
|
18
18
|
"execa": "4.1.0",
|
|
19
19
|
"find-up": "5.0.0",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"access": "public",
|
|
36
36
|
"directory": "."
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "0f2b0b65639d2e1a79cf9189c8fe5cea2c32d302"
|
|
39
39
|
}
|