diff --git a/ponyracer/package.json b/ponyracer/package.json index d11a8a3c2..1018ac458 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -10,22 +10,22 @@ }, "private": true, "dependencies": { - "@angular/animations": "^17.0.0", - "@angular/common": "^17.0.0", - "@angular/compiler": "^17.0.0", - "@angular/core": "^17.0.0", - "@angular/forms": "^17.0.0", - "@angular/platform-browser": "^17.0.0", - "@angular/platform-browser-dynamic": "^17.0.0", - "@angular/router": "^17.0.0", + "@angular/animations": "^17.1.0-next.0", + "@angular/common": "^17.1.0-next.0", + "@angular/compiler": "^17.1.0-next.0", + "@angular/core": "^17.1.0-next.0", + "@angular/forms": "^17.1.0-next.0", + "@angular/platform-browser": "^17.1.0-next.0", + "@angular/platform-browser-dynamic": "^17.1.0-next.0", + "@angular/router": "^17.1.0-next.0", "rxjs": "~7.8.0", "tslib": "^2.3.0", "zone.js": "~0.14.2" }, "devDependencies": { - "@angular-devkit/build-angular": "^17.0.10", - "@angular/cli": "^17.0.10", - "@angular/compiler-cli": "^17.0.0", + "@angular-devkit/build-angular": "^17.1.0-next.0", + "@angular/cli": "^17.1.0-next.0", + "@angular/compiler-cli": "^17.1.0-next.0", "@types/jasmine": "~5.1.0", "jasmine-core": "~5.1.0", "karma": "~6.4.0", diff --git a/ponyracer/src/app/app.component.html b/ponyracer/src/app/app.component.html index f4d87f3b1..36093e187 100644 --- a/ponyracer/src/app/app.component.html +++ b/ponyracer/src/app/app.component.html @@ -333,4 +333,4 @@

Hello, {{ title }}

- + diff --git a/ponyracer/src/app/app.component.ts b/ponyracer/src/app/app.component.ts index 3efc02f32..716e5f273 100644 --- a/ponyracer/src/app/app.component.ts +++ b/ponyracer/src/app/app.component.ts @@ -1,11 +1,10 @@ import { Component } from '@angular/core'; -import { CommonModule } from '@angular/common'; import { RouterOutlet } from '@angular/router'; @Component({ selector: 'app-root', standalone: true, - imports: [CommonModule, RouterOutlet], + imports: [RouterOutlet], templateUrl: './app.component.html', styleUrl: './app.component.css' })