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

@@ -1,10 +1,8 @@
import { JsonPipe } from '@angular/common';
import { Component } from '@angular/core';
import { UserComponent } from './user.component';
@Component({
standalone: true,
imports: [UserComponent, JsonPipe],
imports: [UserComponent],
selector: 'app-root',
template: `
<div class="flex flex-col gap-3">

View File

@@ -16,7 +16,6 @@ const ageToCategory = (age: number): Category => {
@Component({
selector: 'app-user',
standalone: true,
imports: [TitleCasePipe],
template: `
{{ fullName | titlecase }} plays tennis in the {{ category }} category!!