Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
|
b725faaca0 | ||
b617aa00c2 |
3 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
### [1.1.1](https://code.relms.dev/NeonJS/framework/compare/v1.1.0...v1.1.1) (2021-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* made logger non-static ([b617aa0](https://code.relms.dev/NeonJS/framework/commit/b617aa00c27149d2f167aaede4128cdf760db3c6))
|
||||
|
||||
## [1.1.0](https://code.relms.dev/NeonJS/framework/compare/v1.0.4...v1.1.0) (2021-11-04)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@neonjs/framework",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"description": "Discord.JS Slash Commands based framework",
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
|
|
|
@ -14,10 +14,9 @@ let isBotReady = false;
|
|||
|
||||
export class NeonClient extends Client {
|
||||
public commands: Collection<string, Command> = new Collection();
|
||||
public logger = new Logger();
|
||||
public ownerID: string;
|
||||
|
||||
public static logger = new Logger();
|
||||
|
||||
public constructor(ownerID: string, options: ClientOptions) {
|
||||
super(options);
|
||||
|
||||
|
|
Reference in a new issue