mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 13:59:16 +01:00
fix(cli): 🐛 Fix CLI not working in build
Missing code in cli/index.ts does that to you
This commit is contained in:
parent
6b17b91235
commit
04cd140f6d
3 changed files with 6 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import { consoleLogger } from "@loggers";
|
||||
import { Command } from "@oclif/core";
|
||||
import { setupDatabase } from "~drizzle/db";
|
||||
import { consoleLogger } from "@loggers";
|
||||
|
||||
export abstract class BaseCommand<T extends typeof Command> extends Command {
|
||||
protected async init(): Promise<void> {
|
||||
|
|
|
|||
|
|
@ -13,3 +13,7 @@ export const commands = {
|
|||
"user:reset": UserReset,
|
||||
"emoji:add": EmojiAdd,
|
||||
};
|
||||
|
||||
if (import.meta.path === Bun.main) {
|
||||
await execute({ dir: import.meta.url });
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue