尝试安装ngmin-webpack-plugin
,我收到此错误:
npm ERR! peerinvalid The package webpack does not satisfy its siblings' peerDependencies requirements!
npm ERR! peerinvalid Peer angular-webpack-plugin@0.0.1 wants webpack@~1.1.0
npm ERR! peerinvalid Peer webpack-dev-server@1.4.6 wants webpack@1.x
请注意,1.x
和~1.1.0
版本要求实际上并不冲突。
如何解决此问题?
答案 0 :(得分:0)
正如matthewwithanm所述,问题在于我安装的webpack
版本:webpack@1.3.4
与angular-webpack-plugin
对~1.1.0
的要求不兼容
在我的情况下,修复程序正在更新angular-webpack-plugin
,其中包含更新的webpack版本要求。