1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-20 01:15:29 +02:00

deps: Update dependencies (#17304)

* update deps

* update dependencies (major)

* fix: migrate meilisearch

* fix: migrate color-convert types

* fix cypress?

* rollback ts v5 as it is not supported by cypress

* fix fake-timers
This commit is contained in:
かっこかり
2026-04-12 00:57:16 +09:00
committed by GitHub
parent cdf0438154
commit 4d6256e91d
29 changed files with 2835 additions and 1935 deletions

View File

@@ -10,7 +10,7 @@ import { bindThis } from '@/decorators.js';
import { DI } from '@/di-symbols.js';
import { readyRef } from '@/boot/ready.js';
import type { FastifyInstance, FastifyPluginOptions } from 'fastify';
import type { MeiliSearch } from 'meilisearch';
import type { Meilisearch } from 'meilisearch';
@Injectable()
export class HealthServerService {
@@ -34,7 +34,7 @@ export class HealthServerService {
private db: DataSource,
@Inject(DI.meilisearch)
private meilisearch: MeiliSearch | null,
private meilisearch: Meilisearch | null,
) {}
@bindThis