Skip to content
Advertisement

I am getting various warrnings and errors when trying to create react app with npx

I am trying to create react app with npx and get the following error: error fork-ts-checker-webpack-plugin@1.5.0: The engine "yarn" is incompatible with this module. Expected version ">=1.0.0".

Any ideas what could be the source of the issue? any tips would be appreciated. Thanks!

npx create-react-app food

JavaScript

About my environment:

JavaScript

JavaScript

node -v

JavaScript

npm -v

JavaScript

Advertisement

Answer

Look at this line in the log error fork-ts-checker-webpack-plugin@1.5.0: The engine "yarn" is incompatible with this module. Expected version ">=1.0.0". It says your yarn version is not compatible. You have yarn v0.16.1 but it has to be above 1.0.0. Please try to update your yarn version.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement