From 11cdf184f573a1355af666be31418041b8d6ac2e Mon Sep 17 00:00:00 2001 From: ITOH Date: Sun, 23 May 2021 17:30:03 +0200 Subject: [PATCH] change: update deps --- src/plugins/proxyEvents.ts | 2 +- src/util/deps.ts | 2 +- tests/deps.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/proxyEvents.ts b/src/plugins/proxyEvents.ts index 04be79611..289a3235c 100644 --- a/src/plugins/proxyEvents.ts +++ b/src/plugins/proxyEvents.ts @@ -1,6 +1,6 @@ import { eventHandlers, replaceEventHandlers } from "../bot.ts"; import type { EventHandlers } from "../types/discordeno/event_handlers.ts"; -import type { EventEmitter } from "https://deno.land/std@0.96.0/node/events.ts"; +import type { EventEmitter } from "https://deno.land/std@0.97.0/node/events.ts"; export function proxyEvent(emitter: EventEmitter) { replaceEventHandlers( diff --git a/src/util/deps.ts b/src/util/deps.ts index 077c700c2..80df5aa49 100644 --- a/src/util/deps.ts +++ b/src/util/deps.ts @@ -1 +1 @@ -export { encode } from "https://deno.land/std@0.96.0/encoding/base64.ts"; +export { encode } from "https://deno.land/std@0.97.0/encoding/base64.ts"; diff --git a/tests/deps.ts b/tests/deps.ts index 4195c1058..75cad4b41 100644 --- a/tests/deps.ts +++ b/tests/deps.ts @@ -3,4 +3,4 @@ export { assertEquals, assertExists, assertThrows, -} from "https://deno.land/std@0.96.0/testing/asserts.ts"; +} from "https://deno.land/std@0.97.0/testing/asserts.ts";