Angular接下来需要记住的事情
首先
我将整理一下在「Angular初学指南」之后需要查询的命令。
Angular的升级版本
我搜索了关于从Angular 12升级到13的问题,发现了Angular更新指南的存在。
https://update.angular.io/?v=12.0-13.0
我试着使用npx命令进行更新,但由于发生错误,我执行了npm命令。
$ npm install @angular/core@13 @angular/cli@13
@angular/cli升级了,但其他@angular包未更新。
选择Angular升级指南中的Angular Material部分,执行ng update @angular/material进行更新操作时,出现错误。
$ ng update @angular/animations
Repository is not clean. Please commit or stash any changes before updating.
如果按照消息中所述提交,即可执行命令,但据说也存在在不提交的情况下执行的选项。
ng update @angular/cli@13 @angular/core@13 --allow-dirty
相关文章
-
- Angular はじめに覚えること
-
- Angular フォーム (1):基礎
- Angular フォーム (2):バリデーション
参考文献
- Repository is not clean. Please commit or stash any changes before updating