build(package.json): update Angular dependencies to 19.2.2 #77
11 changed files with 568 additions and 400 deletions
|
@ -164,3 +164,5 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd frontend
|
cd frontend
|
||||||
bun run build
|
bun run build
|
||||||
|
- run: cat /tmp/ng-*/angular-errors.log || echo "No Angular error log found"
|
||||||
|
if: always()
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -13,15 +13,15 @@
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^18.2.0",
|
"@angular/animations": "^19.2.2",
|
||||||
"@angular/cdk": "~18.2.14",
|
"@angular/cdk": "19",
|
||||||
"@angular/common": "^18.2.0",
|
"@angular/common": "^19.2.2",
|
||||||
"@angular/compiler": "^18.2.0",
|
"@angular/compiler": "^19.2.2",
|
||||||
"@angular/core": "^18.2.0",
|
"@angular/core": "^19.2.2",
|
||||||
"@angular/forms": "^18.2.0",
|
"@angular/forms": "^19.2.2",
|
||||||
"@angular/platform-browser": "^18.2.0",
|
"@angular/platform-browser": "^19.2.2",
|
||||||
"@angular/platform-browser-dynamic": "^18.2.0",
|
"@angular/platform-browser-dynamic": "^19.2.2",
|
||||||
"@angular/router": "^18.2.0",
|
"@angular/router": "^19.2.2",
|
||||||
"@fortawesome/angular-fontawesome": "^1.0.0",
|
"@fortawesome/angular-fontawesome": "^1.0.0",
|
||||||
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
||||||
"@fortawesome/free-brands-svg-icons": "^6.7.2",
|
"@fortawesome/free-brands-svg-icons": "^6.7.2",
|
||||||
|
@ -37,9 +37,9 @@
|
||||||
"tslib": "^2.3.0"
|
"tslib": "^2.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/build-angular": "^18.2.2",
|
"@angular-devkit/build-angular": "^19.2.2",
|
||||||
"@angular/cli": "^18.2.2",
|
"@angular/cli": "^19.2.2",
|
||||||
"@angular/compiler-cli": "^18.2.0",
|
"@angular/compiler-cli": "^19.2.2",
|
||||||
"@types/jasmine": "~5.1.0",
|
"@types/jasmine": "~5.1.0",
|
||||||
"angular-eslint": "19.1.0",
|
"angular-eslint": "19.1.0",
|
||||||
"eslint": "^9.20.0",
|
"eslint": "^9.20.0",
|
||||||
|
|
|
@ -6,7 +6,6 @@ import { FooterComponent } from './shared/components/footer/footer.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-root',
|
selector: 'app-root',
|
||||||
standalone: true,
|
|
||||||
imports: [CommonModule, RouterOutlet, KeycloakAngularModule, FooterComponent],
|
imports: [CommonModule, RouterOutlet, KeycloakAngularModule, FooterComponent],
|
||||||
providers: [],
|
providers: [],
|
||||||
templateUrl: './app.component.html',
|
templateUrl: './app.component.html',
|
||||||
|
|
|
@ -25,7 +25,6 @@ import gsap from 'gsap';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-deposit',
|
selector: 'app-deposit',
|
||||||
standalone: true,
|
|
||||||
imports: [ReactiveFormsModule, NgIf],
|
imports: [ReactiveFormsModule, NgIf],
|
||||||
templateUrl: './deposit.component.html',
|
templateUrl: './deposit.component.html',
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
|
|
|
@ -9,7 +9,6 @@ import { ActivatedRoute } from '@angular/router';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-homepage',
|
selector: 'app-homepage',
|
||||||
standalone: true,
|
|
||||||
imports: [NavbarComponent, CurrencyPipe, NgFor, DepositComponent, ConfirmationComponent],
|
imports: [NavbarComponent, CurrencyPipe, NgFor, DepositComponent, ConfirmationComponent],
|
||||||
templateUrl: './home.component.html',
|
templateUrl: './home.component.html',
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
|
|
|
@ -4,7 +4,6 @@ import { NgFor } from '@angular/common';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-landing-page',
|
selector: 'app-landing-page',
|
||||||
standalone: true,
|
|
||||||
imports: [NavbarComponent, NgFor],
|
imports: [NavbarComponent, NgFor],
|
||||||
templateUrl: './landing.component.html',
|
templateUrl: './landing.component.html',
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
|
|
|
@ -5,7 +5,6 @@ import { Router } from '@angular/router';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-login-success',
|
selector: 'app-login-success',
|
||||||
standalone: true,
|
|
||||||
imports: [],
|
imports: [],
|
||||||
templateUrl: './login-success.component.html',
|
templateUrl: './login-success.component.html',
|
||||||
styleUrl: './login-success.component.css',
|
styleUrl: './login-success.component.css',
|
||||||
|
|
|
@ -13,7 +13,6 @@ import gsap from 'gsap';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-confirmation',
|
selector: 'app-confirmation',
|
||||||
standalone: true,
|
|
||||||
imports: [],
|
imports: [],
|
||||||
templateUrl: './confirmation.component.html',
|
templateUrl: './confirmation.component.html',
|
||||||
})
|
})
|
||||||
|
|
|
@ -5,7 +5,6 @@ import { faPaypal, faGooglePay, faApplePay } from '@fortawesome/free-brands-svg-
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-footer',
|
selector: 'app-footer',
|
||||||
standalone: true,
|
|
||||||
templateUrl: './footer.component.html',
|
templateUrl: './footer.component.html',
|
||||||
imports: [FontAwesomeModule],
|
imports: [FontAwesomeModule],
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
|
|
|
@ -7,7 +7,6 @@ import { CurrencyPipe } from '@angular/common';
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-navbar',
|
selector: 'app-navbar',
|
||||||
templateUrl: './navbar.component.html',
|
templateUrl: './navbar.component.html',
|
||||||
standalone: true,
|
|
||||||
imports: [RouterModule, CurrencyPipe],
|
imports: [RouterModule, CurrencyPipe],
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue