Skip to content

Commit 4c75da2

Browse files
committed
Update angular 13.1.1
1 parent a064aeb commit 4c75da2

File tree

272 files changed

+28161
-88001
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

272 files changed

+28161
-88001
lines changed

.browserslistrc

-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ last 2 Edge major versions
1414
last 2 Safari major versions
1515
last 2 iOS major versions
1616
Firefox ESR
17-
not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line.

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
# dependencies
1111
/node_modules
12-
package-lock.json
1312

1413
# profiling files
1514
chrome-profiler-events*.json
@@ -32,6 +31,7 @@ chrome-profiler-events*.json
3231
.history/*
3332

3433
# misc
34+
/.angular/cache
3535
/.sass-cache
3636
/connect.lock
3737
/coverage

.vscode/extensions.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3+
"recommendations": ["angular.ng-template"]
4+
}

.vscode/launch.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
3+
"version": "0.2.0",
4+
"configurations": [
5+
{
6+
"name": "ng serve",
7+
"type": "pwa-chrome",
8+
"request": "launch",
9+
"preLaunchTask": "npm: start",
10+
"url": "http://localhost:4200/"
11+
},
12+
{
13+
"name": "ng test",
14+
"type": "chrome",
15+
"request": "launch",
16+
"preLaunchTask": "npm: test",
17+
"url": "http://localhost:9876/debug.html"
18+
}
19+
]
20+
}

.vscode/tasks.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
3+
"version": "2.0.0",
4+
"tasks": [
5+
{
6+
"type": "npm",
7+
"script": "start",
8+
"isBackground": true,
9+
"problemMatcher": {
10+
"owner": "typescript",
11+
"pattern": "$tsc",
12+
"background": {
13+
"activeOnStart": true,
14+
"beginsPattern": {
15+
"regexp": "(.*?)"
16+
},
17+
"endsPattern": {
18+
"regexp": "bundle generation complete"
19+
}
20+
}
21+
}
22+
},
23+
{
24+
"type": "npm",
25+
"script": "test",
26+
"isBackground": true,
27+
"problemMatcher": {
28+
"owner": "typescript",
29+
"pattern": "$tsc",
30+
"background": {
31+
"activeOnStart": true,
32+
"beginsPattern": {
33+
"regexp": "(.*?)"
34+
},
35+
"endsPattern": {
36+
"regexp": "bundle generation complete"
37+
}
38+
}
39+
}
40+
}
41+
]
42+
}

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Angular 12 Example Bootstrap
1+
# Angular 13 Example Bootstrap
22

3-
> An Angular starter kit featuring [Angular 12.2.11](https://angular.io), [Angular CLI 12.2.11](https://cli.angular.io/)
3+
> An Angular starter kit featuring [Angular 13.1.1](https://angular.io), [Angular CLI 13.1.2](https://cli.angular.io/)
44
55
> it's part of a repo series designed to create a Web Application with Angular
66
77
# Web Application Live Demo
88
<a href="https://angular.ganatan.com/">
9-
<img src="https://media.giphy.com/media/RfqiR12yhtHpwaItBq/giphy.gif" alt="Angular 11 Web Application"/>
9+
<img src="https://media.giphy.com/media/RfqiR12yhtHpwaItBq/giphy.gif" alt="Angular 13 Web Application"/>
1010
</a>
1111

1212
## Quick start

angular.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
"src/assets"
2828
],
2929
"styles": [
30-
"src/styles.css",
3130
"node_modules/@fortawesome/fontawesome-free/css/all.min.css",
3231
"node_modules/bootstrap/dist/css/bootstrap.min.css",
33-
"src/assets/params/css/index.css"
32+
"src/assets/params/css/fonts.googleapis.min.css",
33+
"src/styles.css"
3434
],
3535
"scripts": [
3636
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"

img/ganatan-about-github.png

13.8 KB
Loading

0 commit comments

Comments
 (0)