Skip to content

Commit c069125

Browse files
committed
Upgrade to Angular 20 and update dependencies
1 parent 7e0242b commit c069125

File tree

6 files changed

+6345
-8147
lines changed

6 files changed

+6345
-8147
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33

44
This repository contains the code of the [Angular Forms In Depth](https://angular-university.io/course/angular-forms-course) video course.
55

6-
This course repository is updated to Angular v19:
6+
This course repository is updated to Angular v20:
77

88
![Angular Forms In Depth](https://angular-university.s3-us-west-1.amazonaws.com/course-images/angular-forms-course-small.jpg)
99

1010
# Installation pre-requisites
1111

12-
Please use Node 18 LTS (Long Term Support version).
12+
Please use Node 22 LTS (Long Term Support version).
1313

1414
# Installing the Angular CLI
1515

@@ -71,6 +71,11 @@ We can checkout the remote branch and start tracking it with a local branch that
7171
It's also possible to download a ZIP file for a given branch, using the branch dropdown on this page on the top left, and then selecting the Clone or Download / Download as ZIP button.
7272

7373
# Other Courses
74+
# Modern Angular With Signals
75+
76+
If you are looking for the [Modern Angular With Signals Course](https://angular-university.io/course/angular-signals-course), the repo with the full code can be found here:
77+
78+
![Modern Angular With Signals Course](https://d3vigmphadbn9b.cloudfront.net/course-images/large-images/angular-signals-course.jpg)
7479

7580
# Angular PWA Course
7681

angular.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,30 @@
108108
},
109109
"schematics": {
110110
"@schematics/angular:component": {
111-
"style": "scss"
111+
"style": "scss",
112+
"type": "component"
112113
},
113114
"@schematics/angular:directive": {
114-
"prefix": ""
115+
"prefix": "",
116+
"type": "directive"
117+
},
118+
"@schematics/angular:service": {
119+
"type": "service"
120+
},
121+
"@schematics/angular:guard": {
122+
"typeSeparator": "."
123+
},
124+
"@schematics/angular:interceptor": {
125+
"typeSeparator": "."
126+
},
127+
"@schematics/angular:module": {
128+
"typeSeparator": "."
129+
},
130+
"@schematics/angular:pipe": {
131+
"typeSeparator": "."
132+
},
133+
"@schematics/angular:resolver": {
134+
"typeSeparator": "."
115135
}
116136
},
117137
"cli": {

0 commit comments

Comments
 (0)