mirror of
https://github.com/karakeep-app/karakeep.git
synced 2026-02-28 18:25:55 +01:00
* refactor: consolidate plugin packages into single plugins directory - Create new `packages/plugins` directory with consolidated package.json - Move queue-liteque, queue-restate, and search-meilisearch to subdirectories - Update imports in packages/shared-server/src/plugins.ts - Remove individual plugin package directories - Update shared-server dependency to use @karakeep/plugins This reduces overhead of maintaining multiple separate packages for plugins. * refactor: consolidate plugin config files to root level - Move .oxlintrc.json to packages/plugins root - Move vitest.config.ts to packages/plugins root - Update vitest config paths to work from root - Remove individual config files from plugin subdirectories This reduces configuration duplication across plugin subdirectories. --------- Co-authored-by: Claude <noreply@anthropic.com>
11 lines
306 B
TypeScript
11 lines
306 B
TypeScript
// Auto-register the Liteque queue provider when this package is imported
|
|
import { PluginManager, PluginType } from "@karakeep/shared/plugins";
|
|
|
|
import { LitequeQueueProvider } from "./src";
|
|
|
|
PluginManager.register({
|
|
type: PluginType.Queue,
|
|
name: "Liteque",
|
|
provider: new LitequeQueueProvider(),
|
|
});
|