feat(nx): upgrade nx 20 and angular 19

This commit is contained in:
thomas
2024-12-06 21:34:43 +01:00
parent bdc6d9ede4
commit f3be3eedff
143 changed files with 7652 additions and 7864 deletions

View File

@@ -3,7 +3,6 @@ import { Component, HostListener } from '@angular/core';
import { BehaviorSubject } from 'rxjs';
@Component({
standalone: true,
imports: [NgIf, AsyncPipe],
selector: 'app-root',
template: `

View File

@@ -4,7 +4,6 @@ import { PersonListComponent } from './person-list.component';
import { RandomComponent } from './random.component';
@Component({
standalone: true,
imports: [PersonListComponent, RandomComponent],
selector: 'app-root',
template: `

View File

@@ -10,7 +10,6 @@ import { MatListModule } from '@angular/material/list';
@Component({
selector: 'app-person-list',
standalone: true,
imports: [
CommonModule,
FormsModule,

View File

@@ -3,7 +3,6 @@ import { Component } from '@angular/core';
@Component({
selector: 'app-random',
standalone: true,
template: `
<div cd-flash>I do nothing but I'm here</div>
`,

View File

@@ -4,7 +4,6 @@ import { generateList } from './generateList';
import { PersonListComponent } from './person-list.component';
@Component({
standalone: true,
imports: [PersonListComponent, NgIf],
selector: 'app-root',
template: `

View File

@@ -17,7 +17,6 @@ const fibonacci = (num: number): number => {
@Component({
selector: 'app-person-list',
standalone: true,
imports: [
CommonModule,
FormsModule,

View File

@@ -6,7 +6,6 @@ import { PersonService } from './list.service';
import { PersonListComponent } from './person-list.component';
@Component({
standalone: true,
imports: [
PersonListComponent,
FormsModule,

View File

@@ -5,7 +5,6 @@ import { Person } from './person.model';
@Component({
selector: 'app-person-list',
standalone: true,
imports: [CommonModule],
template: `
<div

View File

@@ -8,7 +8,6 @@ import { PersonService } from './list.service';
import { PersonListComponent } from './person-list.component';
@Component({
standalone: true,
imports: [
NgIf,
PersonListComponent,

View File

@@ -6,7 +6,6 @@ import { Person } from './person.model';
@Component({
selector: 'app-person-list',
standalone: true,
imports: [CommonModule, NgForTrackByModule],
template: `
<div class="relative h-[300px] overflow-hidden">

View File

@@ -4,7 +4,6 @@ import { HeavyCalculationService } from './heavy-calculation.service';
import { UnknownPersonComponent } from './unknown-person/unknown-person.component';
@Component({
standalone: true,
imports: [CommonModule, UnknownPersonComponent],
providers: [HeavyCalculationService],
selector: 'app-root',