Skip to content

Commit ca10c05

Browse files
author
ng-update[bot]
committed
chore(ng-update): update angular dependencies
1 parent c819f03 commit ca10c05

File tree

8 files changed

+5136
-3774
lines changed

8 files changed

+5136
-3774
lines changed

package-lock.json

Lines changed: 5094 additions & 3726 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@
1414
},
1515
"private": true,
1616
"dependencies": {
17-
"@angular/animations": "^18.2.8",
18-
"@angular/common": "^18.2.8",
19-
"@angular/compiler": "^18.2.8",
20-
"@angular/core": "^18.2.8",
21-
"@angular/forms": "^18.2.8",
22-
"@angular/platform-browser": "^18.2.8",
23-
"@angular/platform-browser-dynamic": "^18.2.8",
24-
"@angular/router": "^18.2.8",
17+
"@angular/animations": "^19.2.9",
18+
"@angular/common": "^19.2.9",
19+
"@angular/compiler": "^19.2.9",
20+
"@angular/core": "^19.2.9",
21+
"@angular/forms": "^19.2.9",
22+
"@angular/platform-browser": "^19.2.9",
23+
"@angular/platform-browser-dynamic": "^19.2.9",
24+
"@angular/router": "^19.2.9",
2525
"rxjs": "~7.8.0",
2626
"tslib": "^2.3.0",
27-
"zone.js": "~0.14.10"
27+
"zone.js": "~0.15.1"
2828
},
2929
"devDependencies": {
30-
"@angular-devkit/build-angular": "^18.2.9",
31-
"@angular-eslint/builder": "18.4.0",
32-
"@angular-eslint/eslint-plugin": "18.4.0",
33-
"@angular-eslint/eslint-plugin-template": "18.4.0",
34-
"@angular-eslint/schematics": "18.4.0",
35-
"@angular-eslint/template-parser": "18.4.0",
36-
"@angular/cli": "^18.2.9",
37-
"@angular/compiler-cli": "^18.2.8",
30+
"@angular-devkit/build-angular": "^19.2.9",
31+
"@angular-eslint/builder": "20.1.1",
32+
"@angular-eslint/eslint-plugin": "20.1.1",
33+
"@angular-eslint/eslint-plugin-template": "20.1.1",
34+
"@angular-eslint/schematics": "20.1.1",
35+
"@angular-eslint/template-parser": "20.1.1",
36+
"@angular/cli": "^19.2.9",
37+
"@angular/compiler-cli": "^19.2.9",
3838
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
3939
"@types/jasmine": "~5.1.0",
4040
"@typescript-eslint/eslint-plugin": "^7.11.0",
@@ -48,6 +48,6 @@
4848
"karma-jasmine": "~5.1.0",
4949
"karma-jasmine-html-reporter": "~2.1.0",
5050
"prettier": "3.3.3",
51-
"typescript": "~5.4.5"
51+
"typescript": "~5.8.3"
5252
}
5353
}

src/app/app.component.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ import { AsideComponent } from './shared/components/aside/aside.component';
77
import { AsideService } from './shared/components/aside/aside.service';
88

99
@Component({
10-
selector: 'app-root',
11-
standalone: true,
12-
imports: [RouterOutlet, CommonModule, AsideComponent],
13-
templateUrl: './app.component.html',
14-
styleUrl: './app.component.scss',
10+
selector: 'app-root',
11+
imports: [RouterOutlet, CommonModule, AsideComponent],
12+
templateUrl: './app.component.html',
13+
styleUrl: './app.component.scss'
1514
})
1615
export class AppComponent implements OnInit {
1716
public asideExpanded = this.asideService.expanded;

src/app/pages/page-not-found/page-not-found.component.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ import { Component } from '@angular/core';
33
import { RouterLink } from '@angular/router';
44

55
@Component({
6-
selector: 'app-page-not-found',
7-
standalone: true,
8-
imports: [RouterLink],
9-
templateUrl: './page-not-found.component.html',
10-
styleUrl: './page-not-found.component.scss',
6+
selector: 'app-page-not-found',
7+
imports: [RouterLink],
8+
templateUrl: './page-not-found.component.html',
9+
styleUrl: './page-not-found.component.scss'
1110
})
1211
export class PageNotFoundComponent {}
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import { Component } from '@angular/core';
22

33
@Component({
4-
selector: 'app-settings',
5-
standalone: true,
6-
imports: [],
7-
templateUrl: './settings.component.html',
8-
styleUrl: './settings.component.scss',
4+
selector: 'app-settings',
5+
imports: [],
6+
templateUrl: './settings.component.html',
7+
styleUrl: './settings.component.scss'
98
})
109
export class SettingsComponent {}

src/app/pages/welcome/welcome.component.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import { Component } from '@angular/core';
22

33
@Component({
4-
selector: 'app-welcome',
5-
standalone: true,
6-
imports: [],
7-
templateUrl: './welcome.component.html',
8-
styleUrl: './welcome.component.scss',
4+
selector: 'app-welcome',
5+
imports: [],
6+
templateUrl: './welcome.component.html',
7+
styleUrl: './welcome.component.scss'
98
})
109
export class WelcomeComponent {
1110
title = 'Initial Template';

src/app/shared/components/aside/aside.component.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ import { RouterModule } from '@angular/router';
66
import { AsideService } from './aside.service';
77

88
@Component({
9-
selector: 'app-aside',
10-
standalone: true,
11-
imports: [RouterModule, CommonModule],
12-
templateUrl: './aside.component.html',
13-
styleUrl: './aside.component.scss',
9+
selector: 'app-aside',
10+
imports: [RouterModule, CommonModule],
11+
templateUrl: './aside.component.html',
12+
styleUrl: './aside.component.scss'
1413
})
1514
export class AsideComponent {
1615
public expanded = this.asideService.expanded;
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import { Component } from '@angular/core';
22

33
@Component({
4-
selector: 'app-header',
5-
standalone: true,
6-
imports: [],
7-
templateUrl: './header.component.html',
8-
styleUrl: './header.component.scss',
4+
selector: 'app-header',
5+
imports: [],
6+
templateUrl: './header.component.html',
7+
styleUrl: './header.component.scss'
98
})
109
export class HeaderComponent {}

0 commit comments

Comments
 (0)