当更新到Angular 5时,我收到错误:严重依赖:依赖的请求是一个表达式

前端之家收集整理的这篇文章主要介绍了当更新到Angular 5时,我收到错误:严重依赖:依赖的请求是一个表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以前我的应用程序正在使用Angular 4.4.6.我跟着 guide
https://angular-update-guide.firebaseapp.com/更新为Angular 5.我使用了这个:
npm install @angular/animations@'^5.0.0' @angular/common@'^5.0.0' @angular/compiler@'^5.0.0' @angular/compiler-cli@'^5.0.0' @angular/core@'^5.0.0' @angular/forms@'^5.0.0' @angular/http@'^5.0.0' @angular/platform-browser@'^5.0.0' @angular/platform-browser-dynamic@'^5.0.0' @angular/platform-server@'^5.0.0' @angular/router@'^5.0.0' typescript@2.4.2 rxjs@'^5.5.2'

但它没有用.它会给我一个错误,没有找到rxjs的有效目标.所以相反,我只是更改了我的package.json中的版本并运行了npm install并且它工作正常,但是当运行npm start时,我收到了错误

WARNING in ./~/@angular/core/esm5/core.js
6456:15-102 Critical dependency: the request of a dependency is an expression

所以我删除了我的node_modules并再次进行了npm安装,运行npm start时仍然遇到同样的错误.

截图:

我设法通过改变webpack.common.js来解决它:
new webpack.ContextReplacementPlugin(
    /(.+)?angular(\\|\/)core(.+)?/,root('./src'),{}
)
原文链接:https://www.f2er.com/angularjs/140951.html

猜你在找的Angularjs相关文章