Skip to content

Commit 64a8ed9

Browse files
chore(deps): upgrade to angular v19
1 parent 7c17f05 commit 64a8ed9

19 files changed

+3942
-4145
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
22

33
# Compiled output
44
/dist

angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
},
115115
"cli": {
116116
"schematicCollections": [
117-
"@angular-eslint/schematics"
117+
"angular-eslint"
118118
]
119119
}
120120
}

client/app/about/about.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import { Component } from '@angular/core';
33
@Component({
44
selector: 'app-about',
55
templateUrl: './about.component.html',
6-
styleUrls: ['./about.component.scss']
6+
styleUrls: ['./about.component.scss'],
7+
standalone: false
78
})
89
export class AboutComponent {
910

client/app/account/account.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import { User } from '../shared/models/user.model';
66

77
@Component({
88
selector: 'app-account',
9-
templateUrl: './account.component.html'
9+
templateUrl: './account.component.html',
10+
standalone: false
1011
})
1112
export class AccountComponent implements OnInit {
1213

client/app/add-cat-form/add-cat-form.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import { Cat } from '../shared/models/cat.model';
77
@Component({
88
selector: 'app-add-cat-form',
99
templateUrl: './add-cat-form.component.html',
10-
styleUrls: ['./add-cat-form.component.scss']
10+
styleUrls: ['./add-cat-form.component.scss'],
11+
standalone: false
1112
})
1213

1314
export class AddCatFormComponent {

client/app/admin/admin.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import { User } from '../shared/models/user.model';
77

88
@Component({
99
selector: 'app-admin',
10-
templateUrl: './admin.component.html'
10+
templateUrl: './admin.component.html',
11+
standalone: false
1112
})
1213
export class AdminComponent implements OnInit {
1314

client/app/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import { AuthService } from './services/auth.service';
33

44
@Component({
55
selector: 'app-root',
6-
templateUrl: './app.component.html'
6+
templateUrl: './app.component.html',
7+
standalone: false
78
})
89
export class AppComponent implements AfterViewChecked {
910

client/app/cats/cats.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import { Cat } from '../shared/models/cat.model';
77
@Component({
88
selector: 'app-cats',
99
templateUrl: './cats.component.html',
10-
styleUrls: ['./cats.component.scss']
10+
styleUrls: ['./cats.component.scss'],
11+
standalone: false
1112
})
1213
export class CatsComponent implements OnInit {
1314

client/app/login/login.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import { ToastComponent } from '../shared/toast/toast.component';
77

88
@Component({
99
selector: 'app-login',
10-
templateUrl: './login.component.html'
10+
templateUrl: './login.component.html',
11+
standalone: false
1112
})
1213
export class LoginComponent implements OnInit {
1314

client/app/logout/logout.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import { AuthService } from '../services/auth.service';
33

44
@Component({
55
selector: 'app-logout',
6-
template: ''
6+
template: '',
7+
standalone: false
78
})
89
export class LogoutComponent implements OnInit {
910

0 commit comments

Comments
 (0)