Skip to content

Commit c6b51c5

Browse files
committed
Update Angular 14.2.7
1 parent 6526cbb commit c6b51c5

File tree

9 files changed

+730
-878
lines changed

9 files changed

+730
-878
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.5**](https://github.com/angular/angular/releases) & [**Angular CLI 14.2.5**](https://github.com/angular/angular-cli/releases/)
15+
* Featuring [**Angular 14.2.7**](https://github.com/angular/angular/releases) & [**Angular CLI 14.2.6**](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

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

angular/package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-bootstrap",
3-
"version": "14.2.5",
3+
"version": "14.2.7",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve --port 4200",
@@ -13,32 +13,32 @@
1313
},
1414
"private": true,
1515
"dependencies": {
16-
"@angular/animations": "14.2.5",
17-
"@angular/common": "14.2.5",
18-
"@angular/compiler": "14.2.5",
19-
"@angular/core": "14.2.5",
20-
"@angular/forms": "14.2.5",
21-
"@angular/platform-browser": "14.2.5",
22-
"@angular/platform-browser-dynamic": "14.2.5",
23-
"@angular/router": "14.2.5",
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",
2424
"@fortawesome/fontawesome-free": "6.2.0",
2525
"bootstrap": "5.2.2",
2626
"rxjs": "7.5.7",
2727
"tslib": "2.4.0",
2828
"zone.js": "0.11.8"
2929
},
3030
"devDependencies": {
31-
"@angular-devkit/build-angular": "14.2.5",
31+
"@angular-devkit/build-angular": "14.2.6",
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.5",
38-
"@angular/compiler-cli": "14.2.5",
37+
"@angular/cli": "14.2.6",
38+
"@angular/compiler-cli": "14.2.7",
3939
"@types/jasmine": "4.3.0",
40-
"@typescript-eslint/eslint-plugin": "5.40.0",
41-
"@typescript-eslint/parser": "5.40.0",
40+
"@typescript-eslint/eslint-plugin": "5.40.1",
41+
"@typescript-eslint/parser": "5.40.1",
4242
"eslint": "8.25.0",
4343
"jasmine-core": "4.4.0",
4444
"karma": "6.4.1",

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.5 and bootstrap 5.2.2' +
25+
content: 'This application was developed with Angular version 14.2.7 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.5',
6+
version: 'Angular 14.2.7',
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.5',
6+
version: 'Angular 14.2.7',
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.5<i class="fab fa-angular fa-lg ms-2"></i>
183+
Angular 14.2.7<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

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

react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"react-dom": "18.2.0",
1313
"react-router-dom": "6.4.2",
1414
"react-scripts": "5.0.1",
15-
"web-vitals": "3.0.3"
15+
"web-vitals": "3.0.4"
1616
},
1717
"scripts": {
1818
"start": "react-scripts start",

0 commit comments

Comments
 (0)