ng update @angular/cli @angular/core 或 npx @angular/cli@13 update @angular/core@13 @angular/cli@13 不工作
ng update @angular/cli @angular/core or npx @angular/cli@13 update @angular/core@13 @angular/cli@13 is not working
我正在尝试将我的 angular cli 和 angular 核心从 12 升级到 13,但似乎存在对等依赖性问题。有人遇到过这个问题吗?
npx @angular/cli@13 update @angular/core@13 @angular/cli@13
[![npm ERR! Could not resolve dependency:
npm ERR! dev @angular/compiler-cli@"~13.0.0" from the root project
npm ERR!
npm ERR! Conflicting peer dependency: typescript@4.4.4
npm ERR! node_modules/typescript
npm ERR! peer typescript@">=4.4.2 <4.5" from @angular/compiler-cli@13.0.0
npm ERR! node_modules/@angular/compiler-cli
npm ERR! dev @angular/compiler-cli@"~13.0.0" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.][1]][1]
每当我将 Angular 应用程序升级到更高版本时,我都会遇到同样的问题。我一直使用 --force
命令,升级成功。所以只需添加--force
命令,升级后一定要测试你的应用程序。
npx @angular/cli@13 update @angular/core@13 @angular/cli@13 --force
此外,如果您升级 Material:
,请执行相同的操作
npx @angular/cli@13 update @angular/material@13 --force
我正在尝试将我的 angular cli 和 angular 核心从 12 升级到 13,但似乎存在对等依赖性问题。有人遇到过这个问题吗?
npx @angular/cli@13 update @angular/core@13 @angular/cli@13
[![npm ERR! Could not resolve dependency:
npm ERR! dev @angular/compiler-cli@"~13.0.0" from the root project
npm ERR!
npm ERR! Conflicting peer dependency: typescript@4.4.4
npm ERR! node_modules/typescript
npm ERR! peer typescript@">=4.4.2 <4.5" from @angular/compiler-cli@13.0.0
npm ERR! node_modules/@angular/compiler-cli
npm ERR! dev @angular/compiler-cli@"~13.0.0" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.][1]][1]
每当我将 Angular 应用程序升级到更高版本时,我都会遇到同样的问题。我一直使用 --force
命令,升级成功。所以只需添加--force
命令,升级后一定要测试你的应用程序。
npx @angular/cli@13 update @angular/core@13 @angular/cli@13 --force
此外,如果您升级 Material:
,请执行相同的操作npx @angular/cli@13 update @angular/material@13 --force