mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
feat(sern.ts) attempting to remove the bloated class in favor of smaller
functions, install rxjs
This commit is contained in:
17
package-lock.json
generated
17
package-lock.json
generated
@@ -15,6 +15,7 @@
|
||||
"discord.js": "^13.6.0",
|
||||
"eslint": "^8.8.0",
|
||||
"prettier": "^2.5.1",
|
||||
"rxjs": "^7.5.5",
|
||||
"ts-results": "^3.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -7755,6 +7756,14 @@
|
||||
"queue-microtask": "^1.2.2"
|
||||
}
|
||||
},
|
||||
"node_modules/rxjs": {
|
||||
"version": "7.5.5",
|
||||
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz",
|
||||
"integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==",
|
||||
"dependencies": {
|
||||
"tslib": "^2.1.0"
|
||||
}
|
||||
},
|
||||
"node_modules/safe-buffer": {
|
||||
"version": "5.2.1",
|
||||
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
||||
@@ -14690,6 +14699,14 @@
|
||||
"queue-microtask": "^1.2.2"
|
||||
}
|
||||
},
|
||||
"rxjs": {
|
||||
"version": "7.5.5",
|
||||
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz",
|
||||
"integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==",
|
||||
"requires": {
|
||||
"tslib": "^2.1.0"
|
||||
}
|
||||
},
|
||||
"safe-buffer": {
|
||||
"version": "5.2.1",
|
||||
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"release": "standard-version && git push --follow-tags",
|
||||
"test": "jest --coverage --verbose",
|
||||
"commit": "cz",
|
||||
"docs" : "typedoc src/index.ts --out docs"
|
||||
"docs": "typedoc src/index.ts --out docs"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
@@ -23,6 +23,7 @@
|
||||
"discord.js": "^13.6.0",
|
||||
"eslint": "^8.8.0",
|
||||
"prettier": "^2.5.1",
|
||||
"rxjs": "^7.5.5",
|
||||
"ts-results": "^3.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@@ -249,7 +249,7 @@ export class Handler {
|
||||
* @returns {string} Directory of the commands folder
|
||||
*/
|
||||
|
||||
get commandDir(): string {
|
||||
get commandDklir(): string {
|
||||
return this.wrapper.commands;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user