我遇到了纱线错误。
错误moduleB@0.1.2:引擎“节点”与此模块不兼容。预期版本“~0.10.22”。
以下是我的package.json
"engines": {
"node": ">4.0.0"
}
"dependencies": {
"moduleA": "^x.x.x"
}
moduleA具有依赖性
“依赖项”:{ “moduleB”:“^ 3.3.3” }
我尝试了moduleB
。
npm show moduleB engines
{ node: '>=4.0.0 < 7.0.0' }
任何线索。非常感谢!
答案 0 :(得分:0)
很可能是因为 moduleB 包,我与 svgutils 有完全相同的问题,查看我在包中找到的GitHub上的源代码。 json 以下内容:
"engines": {
"node": "~0.10.22"
}
您可以为他们创建问题,也可以分叉回购并进行必要的更改。