File tree 6 files changed +7
-28
lines changed
6 files changed +7
-28
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ speed-measure-plugin*.json
33
33
.history /*
34
34
35
35
# misc
36
+ /.angular /cache
36
37
/.sass-cache
37
38
/connect.lock
38
39
/coverage
Original file line number Diff line number Diff line change 3
3
4
4
This repository contains the code of the course [ Angular Universal In Depth] ( https://angular-university.io/course/angular-universal-course ) .
5
5
6
- This course repository is updated to Angular v12 .
6
+ This course repository is updated to Angular v13 .
7
7
8
8
![ Angular Universal In Depth] ( https://angular-university.s3-us-west-1.amazonaws.com/course-images/angular-universal-course.jpg )
9
9
10
10
# Installation pre-requisites
11
11
12
- Please use the latest Node long-term support (LTS) version.
12
+ Please use Node 16 long-term support (LTS) version.
13
13
14
14
# Installing the Angular CLI
15
15
Original file line number Diff line number Diff line change 103
103
"scripts" : []
104
104
}
105
105
},
106
- "lint" : {
107
- "builder" : " @angular-devkit/build-angular:tslint" ,
108
- "options" : {
109
- "tsConfig" : [
110
- " tsconfig.app.json" ,
111
- " tsconfig.spec.json" ,
112
- " e2e/tsconfig.json" ,
113
- " tsconfig.server.json"
114
- ],
115
- "exclude" : [
116
- " **/node_modules/**"
117
- ]
118
- }
119
- },
120
106
"e2e" : {
121
107
"builder" : " @angular-devkit/build-angular:protractor" ,
122
108
"options" : {
Original file line number Diff line number Diff line change 18
18
* BROWSER POLYFILLS
19
19
*/
20
20
21
- /** IE10 and IE11 requires the following for NgClass support on SVG elements */
22
- // import 'classlist.js'; // Run `npm install --save classlist.js`.
23
-
24
- /**
25
- * Web Animations `@angular/platform-browser/animations`
26
- * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
27
- * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
28
- */
29
- // import 'web-animations-js'; // Run `npm install --save web-animations-js`.
30
-
31
21
/**
32
22
* By default, zone.js will patch all possible macroTask and DomEvents
33
23
* user can disable parts of macroTask/DomEvents patch by setting following flags
Original file line number Diff line number Diff line change 1
- @use ' ~ @angular/material' as mat ;
1
+ @use ' @angular/material' as mat ;
2
2
/* You can add global styles to this file, and also import other style files */
3
3
4
4
Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ declare const require: {
17
17
// First, initialize the Angular testing environment.
18
18
getTestBed ( ) . initTestEnvironment (
19
19
BrowserDynamicTestingModule ,
20
- platformBrowserDynamicTesting ( )
20
+ platformBrowserDynamicTesting ( ) , {
21
+ teardown : { destroyAfterEach : false }
22
+ }
21
23
) ;
22
24
// Then we find all the tests.
23
25
const context = require . context ( './' , true , / \. s p e c \. t s $ / ) ;
You can’t perform that action at this time.
0 commit comments