Skip to content

Commit 786d105

Browse files
committedNov 3, 2022
Update Angular 14.2.8 & ESLint
1 parent c6b51c5 commit 786d105

File tree

9 files changed

+422
-364
lines changed

9 files changed

+422
-364
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ it's part of a repo series designed
1212

1313
to create a **Web Application with Angular 14**
1414

15-
* Featuring [**Angular 14.2.7**](https://github.com/angular/angular/releases) & [**Angular CLI 14.2.6**](https://github.com/angular/angular-cli/releases/)
15+
* Featuring [**Angular 14.2.8**](https://github.com/angular/angular/releases) & [**Angular CLI 14.2.8**](https://github.com/angular/angular-cli/releases/)
1616

1717

1818
* See the [**Live demo**](#angular-live-demo), Test the repo with [**Quick start**](#angular-quick-start) and for more information Read the step by step [**Tutorial**](#angular-tutorial) or read the [**Getting started**](#angular-getting-started)

‎angular/package-lock.json

+337-294
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎angular/package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-bootstrap",
3-
"version": "14.2.7",
3+
"version": "14.2.8",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve --port 4200",
@@ -13,34 +13,34 @@
1313
},
1414
"private": true,
1515
"dependencies": {
16-
"@angular/animations": "14.2.7",
17-
"@angular/common": "14.2.7",
18-
"@angular/compiler": "14.2.7",
19-
"@angular/core": "14.2.7",
20-
"@angular/forms": "14.2.7",
21-
"@angular/platform-browser": "14.2.7",
22-
"@angular/platform-browser-dynamic": "14.2.7",
23-
"@angular/router": "14.2.7",
16+
"@angular/animations": "14.2.8",
17+
"@angular/common": "14.2.8",
18+
"@angular/compiler": "14.2.8",
19+
"@angular/core": "14.2.8",
20+
"@angular/forms": "14.2.8",
21+
"@angular/platform-browser": "14.2.8",
22+
"@angular/platform-browser-dynamic": "14.2.8",
23+
"@angular/router": "14.2.8",
2424
"@fortawesome/fontawesome-free": "6.2.0",
2525
"bootstrap": "5.2.2",
2626
"rxjs": "7.5.7",
27-
"tslib": "2.4.0",
27+
"tslib": "2.4.1",
2828
"zone.js": "0.11.8"
2929
},
3030
"devDependencies": {
31-
"@angular-devkit/build-angular": "14.2.6",
31+
"@angular-devkit/build-angular": "14.2.8",
3232
"@angular-eslint/builder": "14.1.2",
3333
"@angular-eslint/eslint-plugin": "14.1.2",
3434
"@angular-eslint/eslint-plugin-template": "14.1.2",
3535
"@angular-eslint/schematics": "14.1.2",
3636
"@angular-eslint/template-parser": "14.1.2",
37-
"@angular/cli": "14.2.6",
38-
"@angular/compiler-cli": "14.2.7",
37+
"@angular/cli": "14.2.8",
38+
"@angular/compiler-cli": "14.2.8",
3939
"@types/jasmine": "4.3.0",
40-
"@typescript-eslint/eslint-plugin": "5.40.1",
41-
"@typescript-eslint/parser": "5.40.1",
42-
"eslint": "8.25.0",
43-
"jasmine-core": "4.4.0",
40+
"@typescript-eslint/eslint-plugin": "5.42.0",
41+
"@typescript-eslint/parser": "5.42.0",
42+
"eslint": "8.26.0",
43+
"jasmine-core": "4.5.0",
4444
"karma": "6.4.1",
4545
"karma-chrome-launcher": "3.1.1",
4646
"karma-coverage": "2.2.0",

‎angular/src/app/modules/general/home/home.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class HomeComponent implements OnInit {
2222
this.meta.updateTag(
2323
{
2424
name: 'description',
25-
content: 'This application was developed with Angular version 14.2.7 and bootstrap 5.2.2' +
25+
content: 'This application was developed with Angular version 14.2.8 and bootstrap 5.2.2' +
2626
' It applies Routing, Lazy loading, Server side rendering and Progressive Web App (PWA)'
2727
});
2828

‎angular/src/environments/environment.prod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const environment = {
33
application:
44
{
55
name: 'angular-starter',
6-
version: 'Angular 14.2.7',
6+
version: 'Angular 14.2.8',
77
bootstrap: 'Bootstrap 5.2.2',
88
fontawesome: 'Font Awesome 6.2.0',
99
}

‎angular/src/environments/environment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const environment = {
33
application:
44
{
55
name: 'angular-bootstrap',
6-
version: 'Angular 14.2.7',
6+
version: 'Angular 14.2.8',
77
bootstrap: 'Bootstrap 5.2.2',
88
fontawesome: 'Font Awesome 6.2.0',
99
}

‎angular/ui/angular-starter-home.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ <h1 class="h5">
180180
</div>
181181
<div class="col-12 col-sm-12 col-md-12 col-lg-4 col-xl-3 text-center text-danger mb-2">
182182
<h2 class="h5">
183-
Angular 14.2.7<i class="fab fa-angular fa-lg ms-2"></i>
183+
Angular 14.2.8<i class="fab fa-angular fa-lg ms-2"></i>
184184
</h2>
185185
</div>
186186
<div class="col-12 col-sm-12 col-md-12 col-lg-4 col-xl-3 text-center text-primary mb-2">

‎react/package-lock.json

+61-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"bootstrap": "5.2.2",
1111
"react": "18.2.0",
1212
"react-dom": "18.2.0",
13-
"react-router-dom": "6.4.2",
13+
"react-router-dom": "6.4.3",
1414
"react-scripts": "5.0.1",
1515
"web-vitals": "3.0.4"
1616
},
@@ -42,7 +42,7 @@
4242
]
4343
},
4444
"devDependencies": {
45-
"eslint": "8.25.0",
45+
"eslint": "8.26.0",
4646
"eslint-plugin-react": "7.31.10"
4747
}
4848
}

0 commit comments

Comments
 (0)
Please sign in to comment.