refactor: remove legacy theme handling and streamline plugin initialization

This commit is contained in:
SethBurkart123
2025-03-28 00:19:40 +11:00
parent ad2ad4d456
commit dc4499e8a2
17 changed files with 2 additions and 498 deletions
-1
View File
@@ -16,7 +16,6 @@ pluginManager.registerPlugin(themesPlugin);
// Legacy plugin exports
export { init as Monofile } from './monofile';
export { init as Themes } from './themes';
export async function initializePlugins(): Promise<void> {
await pluginManager.startAllPlugins();
-5
View File
@@ -1,5 +0,0 @@
import { enableCurrentTheme } from "@/seqta/ui/themes/enableCurrent";
export async function init() {
enableCurrentTheme();
}