当我yarn install
在我的 React Native 项目中运行时,我得到了错误The engine "node" is incompatible with this module. Expected version "12". Got "14.15.4"
。
来自哪里12
是 package.json 中的行是
"engines": {
"node": "12"
},
来自哪里14.5.4
是当我运行node --version
它时返回14.5.4
。我正在使用 NVM。有没有办法改变14.5.4
to12
以便我可以正常运行yarn install
?