File tree 7 files changed +7826
-6843
lines changed
7 files changed +7826
-6843
lines changed Original file line number Diff line number Diff line change 3
3
4
4
This repository contains the code of the [ Angular Core Deep Dive] ( https://angular-university.io/course/angular-course ) .
5
5
6
- This course repository is updated to Angular 17 :
6
+ This course repository is updated to Angular 18 :
7
7
8
8
![ Angular Core Deep Dive] ( https://d3vigmphadbn9b.cloudfront.net/course-images/large-images/angular-core-deep-dive-new-2.jpg )
9
9
10
10
# Installation pre-requisites
11
11
12
- IMPORTANT: Please use Node 18 (Long Term Support version).
12
+ IMPORTANT: Please use Node 18 LTS (Long Term Support version).
13
13
14
14
# Installing the Angular CLI
15
15
Original file line number Diff line number Diff line change 19
19
"schematics" : {},
20
20
"architect" : {
21
21
"build" : {
22
- "builder" : " @angular-devkit/build-angular:browser " ,
22
+ "builder" : " @angular-devkit/build-angular:application " ,
23
23
"options" : {
24
- "outputPath" : " dist/angular-course" ,
24
+ "outputPath" : {
25
+ "base" : " dist/angular-course"
26
+ },
25
27
"index" : " src/index.html" ,
26
- "main" : " src/main.ts" ,
27
- "polyfills" : " src/polyfills.ts" ,
28
+ "polyfills" : [
29
+ " src/polyfills.ts"
30
+ ],
28
31
"tsConfig" : " src/tsconfig.app.json" ,
29
32
"assets" : [
30
33
" src/favicon.ico" ,
43
46
"inject" : true
44
47
}
45
48
],
46
- "vendorChunk" : true ,
47
49
"extractLicenses" : false ,
48
- "buildOptimizer" : false ,
49
50
"sourceMap" : true ,
50
51
"optimization" : false ,
51
- "namedChunks" : true
52
+ "namedChunks" : true ,
53
+ "browser" : " src/main.ts"
52
54
},
53
55
"configurations" : {
54
56
"production" : {
68
70
"outputHashing" : " all" ,
69
71
"sourceMap" : false ,
70
72
"namedChunks" : false ,
71
- "extractLicenses" : true ,
72
- "vendorChunk" : false ,
73
- "buildOptimizer" : true
73
+ "extractLicenses" : true
74
74
},
75
75
"fr" : {
76
76
"budgets" : [
79
79
"maximumWarning" : " 6kb"
80
80
}
81
81
],
82
- "outputPath" : " dist/angular-course-fr/" ,
82
+ "outputPath" : {
83
+ "base" : " dist/angular-course-fr/"
84
+ },
83
85
"i18nFile" : " src/locale/messages.fr.xlf" ,
84
86
"i18nLocale" : " fr" ,
85
87
"i18nMissingTranslation" : " ignore"
You can’t perform that action at this time.
0 commit comments