std bump, deno 1.2 was BREAKING update YAY SEMVER!

This commit is contained in:
Skillz
2020-07-15 11:28:07 -04:00
parent b3f9b5ef9f
commit cacef066ca
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { Message, createMessage } from "../structures/message.ts";
import { delay } from "https://deno.land/std@0.50.0/async/delay.ts";
import { delay } from "https://deno.land/std@0.61.0/async/delay.ts";
import { botID } from "../module/client.ts";
import { hasChannelPermission } from "./channel.ts";
import { Permissions } from "../types/permission.ts";
+1 -1
View File
@@ -1,6 +1,6 @@
import { RequestMethod } from "../types/fetch.ts";
import { authorization, eventHandlers } from "./client.ts";
import { delay } from "https://deno.land/std@0.50.0/async/delay.ts";
import { delay } from "https://deno.land/std@0.61.0/async/delay.ts";
import { Errors } from "../types/errors.ts";
import { HttpResponseCode } from "../types/discord.ts";
import { logRed } from "../utils/logger.ts";
+2 -2
View File
@@ -2,7 +2,7 @@ import {
connectWebSocket,
isWebSocketCloseEvent,
WebSocket,
} from "https://deno.land/std@0.50.0/ws/mod.ts";
} from "https://deno.land/std@0.61.0/ws/mod.ts";
import {
GatewayOpcode,
DiscordBotGatewayData,
@@ -11,7 +11,7 @@ import {
} from "../types/discord.ts";
import { logRed } from "../utils/logger.ts";
import { FetchMembersOptions } from "../types/guild.ts";
import { delay } from "https://deno.land/std@0.50.0/async/delay.ts";
import { delay } from "https://deno.land/std@0.61.0/async/delay.ts";
import { DebugArg } from "../types/options.ts";
let shardSocket: WebSocket;
+1 -1
View File
@@ -15,7 +15,7 @@ import {
botID,
setBotID,
} from "./client.ts";
import { delay } from "https://deno.land/std@0.50.0/async/delay.ts";
import { delay } from "https://deno.land/std@0.61.0/async/delay.ts";
import {
handleInternalChannelCreate,
handleInternalChannelUpdate,
+1 -1
View File
@@ -2,7 +2,7 @@ import Collection from "./collection.ts";
import { Message } from "../structures/message.ts";
import { Guild } from "../structures/guild.ts";
import { Channel } from "../structures/channel.ts";
import { delay } from "https://deno.land/std@0.50.0/async/delay.ts";
import { delay } from "https://deno.land/std@0.61.0/async/delay.ts";
export interface CacheData {
guilds: Collection<string, Guild>;
+1 -1
View File
@@ -3,7 +3,7 @@ import {
green,
red,
yellow,
} from "https://deno.land/std@0.50.0/fmt/colors.ts";
} from "https://deno.land/std@0.61.0/fmt/colors.ts";
export const getTime = () => {
const now = new Date();