Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency @biomejs/biome to v1.8.0 #99

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"start": "bun src/main.ts",
"start:screen": "screen -DRS gdrive4d bun start",
"check": "biome check --apply ."
"check": "biome check --write"
},
"dependencies": {
"@googleapis/drive": "8.8.0",
Expand All @@ -15,7 +15,7 @@
"normalize-url": "8.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@biomejs/biome": "1.8.0",
"@tsconfig/bun": "1.0.6",
"@tsconfig/strictest": "2.0.5",
"@types/bun": "1.1.3",
Expand Down
2 changes: 1 addition & 1 deletion src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
Routes,
type UserContextMenuCommandInteraction,
} from "discord.js";
import { updateEmbedsMessage } from "./embeds";
import { updateEmbedsMessage } from "./embeds.ts";

type ExecutableCommand =
| {
Expand Down
4 changes: 2 additions & 2 deletions src/embeds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import { GaxiosError } from "gaxios";
import normalizeUrl, {
type Options as NormalizeUrlOptions,
} from "normalize-url";
import { driveClient, fileTypes } from "./gdrive";
import { appendInvisible, decodeAppendedInvisible } from "./util/invisible";
import { driveClient, fileTypes } from "./gdrive.ts";
import { appendInvisible, decodeAppendedInvisible } from "./util/invisible.ts";

/**
* Extract Google Drive file IDs from a string.
Expand Down
8 changes: 4 additions & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import {
type PartialMessage,
Partials,
} from "discord.js";
import { checkBotStatus, checkEnvs } from "./checks";
import { commandsListener, registerCommands } from "./commands";
import { deleteEmbedsMessage, updateEmbedsMessage } from "./embeds";
import { driveClient } from "./gdrive";
import { checkBotStatus, checkEnvs } from "./checks.ts";
import { commandsListener, registerCommands } from "./commands.ts";
import { deleteEmbedsMessage, updateEmbedsMessage } from "./embeds.ts";
import { driveClient } from "./gdrive.ts";

consola.start("gdrive4d is starting...");

Expand Down
Loading