Skip to content

Commit

Permalink
chore: 🤖 update dependencies
Browse files Browse the repository at this point in the history
BREAKING CHANGE: 🧨 Generate React CLI requires Node 12 or higher now. We no longer support
Node 10.
  • Loading branch information
arminbro committed May 6, 2021
1 parent 29e6ed2 commit 331205f
Show file tree
Hide file tree
Showing 3 changed files with 1,569 additions and 6,545 deletions.
4 changes: 2 additions & 2 deletions bin/generate-react
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ const isNotValidNodeVersion = () => {
const semver = currentNodeVersion.split('.');
const major = semver[0];

if (major < 10) {
if (major < 12) {
console.error(
// eslint-disable-next-line
'You are running Node ' +
currentNodeVersion +
' Generate React CLI requires Node 10 or higher. Please update your version of Node.'
' Generate React CLI requires Node 12 or higher. Please update your version of Node.'
);

return true;
Expand Down
Loading

0 comments on commit 331205f

Please sign in to comment.