Skip to content

Commit ee10cca

Browse files
doc: add notes for adding support for new Angular releases
1 parent c5175e9 commit ee10cca

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Notes from when I added Angular 11 support
2+
3+
- in uirouter/angular:
4+
- update peer deps for angular packages, bumping each range by one
5+
- update angular packages manually to the lower range supported (for angular 11, set to ^10.0.0)
6+
- update ng-packagr manually to the lower range supported (for angular 11, set to ^10.0.0)
7+
- update typescript to the version required by @angular/compiler-cli
8+
- npx check-peer-dependencies
9+
- gh pr create
10+
- update other libs
11+
- npx check-peer-dependencies
12+
- gh pr create
13+
- npm run release
14+
15+
- in sample-app-angular:
16+
- git checkout -b update-to-latest-angular
17+
- npx ng update @angular/core @angular/cli
18+
- git commit -m "chore: update to Angular 11"
19+
- yarn && yarn test
20+
- gh pr create
21+

0 commit comments

Comments
 (0)