File tree 6 files changed +7
-46
lines changed
6 files changed +7
-46
lines changed Original file line number Diff line number Diff line change 25
25
! .vscode /extensions.json
26
26
27
27
# misc
28
+ /.angular /cache
28
29
/.sass-cache
29
30
/connect.lock
30
31
/coverage
Original file line number Diff line number Diff line change 3
3
4
4
This repository contains the code of the [ Angular Forms In Depth] ( https://angular-university.io/course/angular-forms-course ) video 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 Forms In Depth] ( https://angular-university.s3-us-west-1.amazonaws.com/course-images/angular-forms-course-small.jpg )
9
9
10
-
11
10
# Installation pre-requisites
12
11
13
- For running this project we need node and npm installed on our machine. These are some tutorials to install node in different operating systems:
14
-
15
- * Its important to install the latest version of Node*
16
-
17
- - [ Install Node and NPM on Windows] ( https://www.youtube.com/watch?v=8ODS6RM6x7g )
18
- - [ Install Node and NPM on Linux] ( https://www.youtube.com/watch?v=yUdHk-Dk_BY )
19
- - [ Install Node and NPM on Mac] ( https://www.youtube.com/watch?v=Imj8PgG3bZU )
20
-
12
+ Please use Node 16 (Long Term Support version).
21
13
22
14
# Installing the Angular CLI
23
15
Original file line number Diff line number Diff line change 88
88
" src/favicon.ico"
89
89
]
90
90
}
91
- },
92
- "lint" : {
93
- "builder" : " @angular-devkit/build-angular:tslint" ,
94
- "options" : {
95
- "tsConfig" : [
96
- " src/tsconfig.app.json" ,
97
- " src/tsconfig.spec.json"
98
- ],
99
- "exclude" : [
100
- " **/node_modules/**"
101
- ]
102
- }
103
91
}
104
92
}
105
93
},
114
102
"protractorConfig" : " ./protractor.conf.js" ,
115
103
"devServerTarget" : " angular-forms-course:serve"
116
104
}
117
- },
118
- "lint" : {
119
- "builder" : " @angular-devkit/build-angular:tslint" ,
120
- "options" : {
121
- "tsConfig" : [
122
- " e2e/tsconfig.e2e.json"
123
- ],
124
- "exclude" : [
125
- " **/node_modules/**"
126
- ]
127
- }
128
105
}
129
106
}
130
107
}
Original file line number Diff line number Diff line change 34
34
// import 'core-js/es6/weak-map';
35
35
// import 'core-js/es6/set';
36
36
37
- /** IE10 and IE11 requires the following for NgClass support on SVG elements */
38
- // import 'classlist.js'; // Run `npm install --save classlist.js`.
39
-
40
37
/** IE10 and IE11 requires the following for the Reflect API. */
41
38
// import 'core-js/es6/reflect';
42
39
46
43
47
44
48
45
49
- /**
50
- * Required to support Web Animations `@angular/platform-browser/animations`.
51
- * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation
52
- **/
53
- // import 'web-animations-js'; // Run `npm install --save web-animations-js`.
54
-
55
-
56
-
57
46
/***************************************************************************************************
58
47
* Zone JS is required by Angular itself.
59
48
*/
Original file line number Diff line number Diff line change 1
1
/* You can add global styles to this file, and also import other style files */
2
2
3
- @use ' ~ @angular/material' as mat ;
3
+ @use ' @angular/material' as mat ;
4
4
@import " global-styles.scss" ;
5
5
6
6
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ __karma__.loaded = function () {};
22
22
// First, initialize the Angular testing environment.
23
23
getTestBed ( ) . initTestEnvironment (
24
24
BrowserDynamicTestingModule ,
25
- platformBrowserDynamicTesting ( )
25
+ platformBrowserDynamicTesting ( ) , {
26
+ teardown : { destroyAfterEach : false }
27
+ }
26
28
) ;
27
29
// Then we find all the tests.
28
30
const context = require . context ( './' , true , / \. s p e c \. t s $ / ) ;
You can’t perform that action at this time.
0 commit comments