LoginSignup
0
0

More than 1 year has passed since last update.

Angular 次に覚えること

Last updated at Posted at 2022-01-03

はじめに

「Angular はじめに覚えること」の次に調べたコマンドをまとめます。

Angularのバージョンアップ

Angular12から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

関連記事

References

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0