react打包报错npm WARN [email protected] requires a peer of react@^15.x.x but none is insta

这个是报错图片:大概意思是 

npm WARN react html table to [email protected]需要react@^15.x.x的对等项,但未安装任何对等项。您必须自己安装对等依赖项。

npm WARN可选跳过可选依赖项:[email protected](节点模块\fsevents):

npm WARN notsup跳过可选依赖项:[email protected]不支持的平台:需要{“os”:“darwin”,“arch”:“any”}(当前:{“os”:“win32”,“arch”:“ia32”})

也就是react html table to excel这个插件@2.0.0版本,只能在react@^15.x.x下才能运行(而我的react的版本是16)

react打包报错npm WARN react-html-table-to-excel@2.0.0 requires a peer of react@^15.x.x but none is insta_第1张图片

解决办法吧pack.json中react 版本改为15的,然后npm install;或者

npm install -save react@~15.3.1

你可能感兴趣的:(React)