aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.yarnrc.yml4
-rw-r--r--src/tasks/feature/updateStats.d.ts12
-rw-r--r--src/tasks/feature/updateStats.js38
3 files changed, 28 insertions, 26 deletions
diff --git a/.yarnrc.yml b/.yarnrc.yml
index 39b22a0..c800e03 100644
--- a/.yarnrc.yml
+++ b/.yarnrc.yml
@@ -6,9 +6,9 @@ nodeLinker: pnpm
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
- spec: "@yarnpkg/plugin-interactive-tools"
+ spec: '@yarnpkg/plugin-interactive-tools'
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
- spec: "@yarnpkg/plugin-typescript"
+ spec: '@yarnpkg/plugin-typescript'
pnpEnableEsmLoader: true
diff --git a/src/tasks/feature/updateStats.d.ts b/src/tasks/feature/updateStats.d.ts
index 1274267..22e0308 100644
--- a/src/tasks/feature/updateStats.d.ts
+++ b/src/tasks/feature/updateStats.d.ts
@@ -1,10 +1,10 @@
import { BushTask } from '#lib';
import { Client } from 'discord.js';
export default class UpdateStatsTask extends BushTask {
- constructor();
- exec(): Promise<void>;
- static init(client: Client): Promise<{
- commandsUsed: bigint;
- slashCommandsUsed: bigint;
- }>;
+ constructor();
+ exec(): Promise<void>;
+ static init(client: Client): Promise<{
+ commandsUsed: bigint;
+ slashCommandsUsed: bigint;
+ }>;
}
diff --git a/src/tasks/feature/updateStats.js b/src/tasks/feature/updateStats.js
index 18a9a7c..48d431a 100644
--- a/src/tasks/feature/updateStats.js
+++ b/src/tasks/feature/updateStats.js
@@ -1,22 +1,24 @@
import { BushTask, Stat, Time } from '#lib';
import { Client } from 'discord.js';
export default class UpdateStatsTask extends BushTask {
- constructor() {
- super('updateStats', {
- delay: 10 * 60000,
- runOnStart: true
- });
- }
- async exec() {
- const row = (await Stat.findByPk(this.client.config.environment)) ??
- (await Stat.create({ environment: this.client.config.environment }));
- row.commandsUsed = this.client.stats.commandsUsed;
- row.slashCommandsUsed = this.client.stats.slashCommandsUsed;
- await row.save();
- }
- static async init(client) {
- const temp = (await Stat.findByPk(client.config.environment)) ?? (await Stat.create({ environment: client.config.environment }));
- return { commandsUsed: temp.commandsUsed, slashCommandsUsed: temp.slashCommandsUsed };
- }
+ constructor() {
+ super('updateStats', {
+ delay: 10 * 60000,
+ runOnStart: true
+ });
+ }
+ async exec() {
+ const row =
+ (await Stat.findByPk(this.client.config.environment)) ??
+ (await Stat.create({ environment: this.client.config.environment }));
+ row.commandsUsed = this.client.stats.commandsUsed;
+ row.slashCommandsUsed = this.client.stats.slashCommandsUsed;
+ await row.save();
+ }
+ static async init(client) {
+ const temp =
+ (await Stat.findByPk(client.config.environment)) ?? (await Stat.create({ environment: client.config.environment }));
+ return { commandsUsed: temp.commandsUsed, slashCommandsUsed: temp.slashCommandsUsed };
+ }
}
-//# sourceMappingURL=updateStats.js.map \ No newline at end of file
+//# sourceMappingURL=updateStats.js.map