From 878bed986193c98ecde99b647b99015bcfec962e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Aug 2022 03:08:19 +0000 Subject: Automatically format code --- .yarnrc.yml | 4 ++-- src/tasks/feature/updateStats.d.ts | 12 ++++++------ src/tasks/feature/updateStats.js | 38 ++++++++++++++++++++------------------ 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; - static init(client: Client): Promise<{ - commandsUsed: bigint; - slashCommandsUsed: bigint; - }>; + constructor(); + exec(): Promise; + 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 -- cgit