This repository has been archived by the owner on Mar 5, 2023. It is now read-only.
"Breaking" Change
- Regex is now part of the config file renamed to
settings
. The config is now accessed throughclient.$settings.config
and regexes throughclient.$settings.regex
. It is encouraged to add regexes there, especially if it will be reused many times (issue #12).
New Feature
- Category property for a command will now be generated if subfoldered using relative path. E.g.
mod/ban
, the command decorator will look like:
@Command({
name: 'ban',
category: 'Mod'
})
This was added in hopes to speed up development time by even just a little bit so the developer does not need to re-specify the category (issue #10)