我的项目在 dot net core 2.0 上运行,角度为 4.2。我将其更新为最新的角度(5.0.0)。从那时起,在 startup.cs 配置方法中的这一行抛出异常。
app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions
{
HotModuleReplacement = true
});
在这里失败并出现错误
Error: Version of @angular/compiler-cli needs to be 2.3.1 or greater.
Current version is "5.0.0".
at Object.<anonymous> (D:\Personal\Code\PettlyUi\PettlyUi\node_modules\@ngtools\webpack\src\index.js:27:11)
at Module._compile (module.js:641:30)
at Object.Module._extensions..js (module.js:652:10)
当我从命令行使用 webpack 时也会抛出相同的错误。
我也对新项目进行了同样的尝试,但始终失败。这是某种错误还是我没有正确更新。
用于升级的命令:
npm install @angular/common@latest @angular/compiler@latest
@angular/compiler-cli@latest @angular/core@latest @angular/forms@latest
@angular/http@latest @angular/platform-browser@latest @angular/platform-
browser-dynamic@latest @angular/platform-server@latest
@angular/router@latest @angular/animations@latest typescript@latest