refactor: use bun for runtime and packaging (#1063)

This commit is contained in:
Christian Benincasa
2025-01-29 13:42:34 -05:00
committed by GitHub
parent 58c4ce139c
commit c9c3130d70
373 changed files with 1745 additions and 2145 deletions

View File

@@ -1,12 +1,13 @@
import type { NewTranscodeConfig } from '@/db/schema/TranscodeConfig.js';
import {
NewTranscodeConfig,
TranscodeAudioOutputFormats,
TranscodeVideoOutputFormats,
} from '@/db/schema/TranscodeConfig.js';
import { DB } from '@/db/schema/db.js';
import type { DB } from '@/db/schema/db.js';
import { booleanToNumber } from '@/util/sqliteUtil.js';
import { Resolution } from '@tunarr/types';
import { Kysely, sql } from 'kysely';
import type { Resolution } from '@tunarr/types';
import type { Kysely } from 'kysely';
import { sql } from 'kysely';
import { isEmpty } from 'lodash-es';
import { v4 } from 'uuid';
import { SettingsDBFactory } from '../../db/SettingsDBFactory.ts';