错误MSB3073:命令"节点node_modules / webpack / bin / webpack.js --env.prod"退出代码2

时间:2018-02-04 04:00:13

标签: visual-studio-2017 asp.net-core-2.0 angular5 webpack-production

我正在使用asp.net core 2x和angular 5构建Web应用程序,在开发/调试模式期间,所有内容都得到了很好的构建。但是当我尝试在visual studio 2017中使用发布模式发布它时出现此错误.please帮我解决这个问题。我的代码中没有使用它,但它存在。装饰器不支持函数调用,但makeParamDecorator'被称为“可注射的”#39; '注射'电话' makeParamDecorator'。请帮忙。谢谢。Screenshot of my error message

1 个答案:

答案 0 :(得分:10)

您需要在控制台上运行此命令: node node_modules / webpack / bin / webpack.js --env.prod

然后你会得到所有问题的清单,并需要解决所有问题,有人会像:

ERROR in navmenu.component.html: Property 'auth' is protected and only accessible within class 'NavMenuComponent' and its subclasses.

另一个案例:

ERROR in Error at estados.component.html(19,72): Expected 0 arguments, but got 1.
Error at home.component.html(8,12): Property 'selectedCharacter' does not exist on type 'HomeComponent'. Did you mean 'selectedCharacters'?

每个错误都有一个直接的解决方案,你需要解决它们。

您可以查看此链接: Angular – The command “node node_modules/webpack/bin/webpack.js –env.prod” exited with code 2 and similar errors: how to fix them