Tags: AroxBot/framework
Tags
refactor!: remove global context, update command/event attachment (#59) * refactor!: remove global context, update command/event attachment BREAKING CHANGE: The global context module has been removed. Commands and events must now access the client and logger via instance properties after being attached. The `prefix` option is now a function. Update your usage accordingly. * refactor(core): limit export factory recursion depth Add MAX_EXPORT_FACTORY_DEPTH constant and enforce it in registerExport to prevent infinite recursion when registering export factories. Rename messages.ts to lang.ts and update imports. Remove unused prefix log and package.json imports field. * chore(utils): simplify getDefaultLang return logic