From fd8a57b0fbbc42363658604cfae6753505de0c02 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Wed, 19 Aug 2026 20:27:34 +0000 Subject: [PATCH] chore: version 22.1.5 --- ponyracer/README.md | 2 +- ponyracer/package.json | 4 ++-- ponyracer/projects/ponyracer-lib/README.md | 2 +- .../projects/ponyracer-lib/src/lib/ponyracer-lib.spec.ts | 1 - ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.ts | 4 ++-- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/ponyracer/README.md b/ponyracer/README.md index 8ff94ecc..f4c36475 100644 --- a/ponyracer/README.md +++ b/ponyracer/README.md @@ -1,6 +1,6 @@ # Ponyracer -This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 22.1.4. +This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 22.1.5. ## Development server diff --git a/ponyracer/package.json b/ponyracer/package.json index 2f406eee..4560f2bf 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", "ng-packagr": "^22.1.0", diff --git a/ponyracer/projects/ponyracer-lib/README.md b/ponyracer/projects/ponyracer-lib/README.md index cf83d6e7..ea878c96 100644 --- a/ponyracer/projects/ponyracer-lib/README.md +++ b/ponyracer/projects/ponyracer-lib/README.md @@ -43,7 +43,7 @@ Once the project is built, you can publish your library by following these steps ## Running unit tests -To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command: +To execute unit tests with the [Vitest](https://vitest.dev/) test runner, use the following command: ```bash ng test diff --git a/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.spec.ts b/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.spec.ts index 9f4d1f42..6f218aa5 100644 --- a/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.spec.ts +++ b/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.spec.ts @@ -1,5 +1,4 @@ import { ComponentFixture, TestBed } from '@angular/core/testing'; - import { PonyracerLib } from './ponyracer-lib'; describe('PonyracerLib', () => { diff --git a/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.ts b/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.ts index 496f660a..13a0f288 100644 --- a/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.ts +++ b/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.ts @@ -1,9 +1,9 @@ import { Component } from '@angular/core'; @Component({ - selector: 'lib-ponyracer-lib', imports: [], - template: `

ponyracer-lib works!

`, + selector: 'lib-ponyracer-lib', styles: ``, + template: `

ponyracer-lib works!

`, }) export class PonyracerLib {}