diff --git a/ponyracer/package.json b/ponyracer/package.json index 3a15cec8c..eca084b2c 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -21,8 +21,8 @@ "tslib": "^2.3.0" }, "devDependencies": { - "@angular/build": "^22.1.4", - "@angular/cli": "^22.1.4", + "@angular/build": "^22.1.5", + "@angular/cli": "^22.1.5", "@angular/compiler-cli": "^22.1.0", "jsdom": "^28.0.0", "prettier": "^3.8.1", diff --git a/ponyracer/src/app/app.config.ts b/ponyracer/src/app/app.config.ts index cb1270e96..e60fc79fa 100644 --- a/ponyracer/src/app/app.config.ts +++ b/ponyracer/src/app/app.config.ts @@ -1,6 +1,5 @@ import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core'; import { provideRouter } from '@angular/router'; - import { routes } from './app.routes'; export const appConfig: ApplicationConfig = { diff --git a/ponyracer/src/app/app.spec.ts b/ponyracer/src/app/app.spec.ts index 1c33840ec..217c1807e 100644 --- a/ponyracer/src/app/app.spec.ts +++ b/ponyracer/src/app/app.spec.ts @@ -5,7 +5,8 @@ describe('App', () => { beforeEach(async () => { await TestBed.configureTestingModule({ imports: [App], - }).compileComponents(); + }) + .compileComponents(); }); it('should create the app', () => { diff --git a/ponyracer/src/app/app.ts b/ponyracer/src/app/app.ts index c6fdc7f02..15e5c4c73 100644 --- a/ponyracer/src/app/app.ts +++ b/ponyracer/src/app/app.ts @@ -2,10 +2,10 @@ import { Component, signal } from '@angular/core'; import { RouterOutlet } from '@angular/router'; @Component({ - selector: 'app-root', imports: [RouterOutlet], + selector: 'app-root', + styleUrl: './app.css', templateUrl: './app.html', - styleUrl: './app.css' }) export class App { protected readonly title = signal('ponyracer');