chore: ⬆️ Upgrade dependencies

This commit is contained in:
Jesse Wierzbinski 2024-12-18 20:42:40 +01:00
parent f67fed12e0
commit 1509786090
No known key found for this signature in database
16 changed files with 35 additions and 34 deletions

View file

@ -1,4 +1,4 @@
import { createMiddleware } from "@hono/hono/factory";
import { createMiddleware } from "hono/factory";
import { config } from "~/packages/config-manager";
export const agentBans = createMiddleware(async (context, next) => {

View file

@ -1,6 +1,6 @@
import { createMiddleware } from "@hono/hono/factory";
import { getLogger } from "@logtape/logtape";
import type { BunFile, SocketAddress } from "bun";
import { createMiddleware } from "hono/factory";
import { matches } from "ip-matching";
import { config } from "~/packages/config-manager";

View file

@ -1,4 +1,4 @@
import { createMiddleware } from "@hono/hono/factory";
import { createMiddleware } from "hono/factory";
export const boundaryCheck = createMiddleware(async (context, next) => {
// Checks that FormData boundary is present

View file

@ -1,7 +1,7 @@
import { sentry } from "@/sentry";
import { createMiddleware } from "@hono/hono/factory";
import { getLogger } from "@logtape/logtape";
import type { SocketAddress } from "bun";
import { createMiddleware } from "hono/factory";
import { matches } from "ip-matching";
import { config } from "~/packages/config-manager";

View file

@ -1,6 +1,6 @@
import { createMiddleware } from "@hono/hono/factory";
import { getLogger } from "@logtape/logtape";
import chalk from "chalk";
import { createMiddleware } from "hono/factory";
import { config } from "~/packages/config-manager";
export const logger = createMiddleware(async (context, next) => {

View file

@ -1,4 +1,4 @@
import { createMiddleware } from "@hono/hono/factory";
import { createMiddleware } from "hono/factory";
import { config } from "~/packages/config-manager";
export const urlCheck = createMiddleware(async (context, next) => {