build: bump deps

This commit is contained in:
Jozef Steinhübl 2024-01-16 19:27:24 +01:00
parent fd02e46e06
commit 7a81256260
No known key found for this signature in database
GPG key ID: E944BC293F5FF7E7
4 changed files with 5 additions and 4 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -11,12 +11,13 @@
"bun-types": "^1.0.22"
},
"dependencies": {
"@lilybird/handlers": "^0.2.2",
"@lilybird/handlers": "^0.3.1",
"@lilybird/jsx": "^0.2.0",
"@paperdave/logger": "^3.0.1",
"algoliasearch": "^4.22.1",
"chrono-node": "^2.7.4",
"gray-matter": "^4.0.3",
"lilybird": "^0.4.4",
"lilybird": "^0.5.1",
"zlib-sync": "^0.1.9"
}
}

View file

@ -113,7 +113,7 @@ export default {
const response = await search(query, state, type, 25);
await silently(
interaction.respond(
interaction.showChoices(
response.map((r) => ({
name: safeSlice<string>(
`${r.emoji.type} ${r.emoji.state} #${r.number} | ${r.title}`,

View file

@ -1,6 +1,6 @@
import { Event } from "@lilybird/handlers";
import { PartialMessage } from "lilybird";
import { getRandomBunEmoji, isBunOnlyLikeMessage } from "src/util.ts";
import { isBunOnlyLikeMessage } from "src/util.ts";
export default {
event: "messageUpdate",