本文介绍了引擎“节点”位于服务器110上。与该模块不兼容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当部署到AWS时,我遇到了纱线错误

I am getting below yarn error when deploying to AWS

error [email protected]: The engine "node" is incompatible with this module. Expected version ">=6 <7 || >=8". Got "7.0.0"

有人知道如何解决吗?

如果我在package.json中指定引擎,将解决​​此问题

Will this work out if I specify engine in package.json

{ 
  "engines" : { 
    "node" : ">=8.0.0" 
  }
}


推荐答案

您可以尝试忽略引擎:

$ yarn安装--ignore-engines

OR

$ yarn global add< your app> --ignore-engines

您可以通过运行查看所有可以忽略的内容:

You can see all what you can ignore by running:

$ yarn help | grep -- --ignore

--ignore-scripts     don't run lifecycle scripts
--ignore-platform    ignore platform checks
--ignore-engines     ignore engines check
--ignore-optional    ignore optional dependencies

这篇关于引擎“节点”位于服务器110上。与该模块不兼容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 05:12