Update checks for correct Node.js and Yarn versions

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-11-17 20:39:50 +01:00
parent 0ad434a69a
commit 1529d54b43
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -21,18 +21,22 @@ EOF
exit 1
fi
if version_lt "$(yarn --version)" '1.3.2'; then
if version_lt "$(yarn --version)" '1.22.0'; then
cat <<EOF
Your yarn version is outdated. Please upgrade to a version
newer than 1.3.2.
FATAL: Your Yarn version is outdated.
Please upgrade to a version newer than 1.22.0.
See https://classic.yarnpkg.com/en/docs/install for instructions.
EOF
exit 1
fi
if version_lt "$(node --version)" 'v6.0.0'; then
if version_lt "$(node --version)" 'v10.13.0'; then
cat <<EOF
Your node version is outdated. Please upgrade to version 6
or higher. (Version 8 or higher is recommended)
FATAL: Your Node.js version is outdated.
Please upgrade to version 10.13 or higher.
We recommend running the latest LTS release.
EOF
exit 1
fi