From 49cfdcbf73cc489247422712e16077ef541901dd Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Sun, 9 Oct 2022 22:47:20 +0000 Subject: [PATCH] fix: temp fix to use latest github --- template/beginner/deps.ts | 9 +++++++-- template/minimal/deps.ts | 4 ++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/template/beginner/deps.ts b/template/beginner/deps.ts index bca3819cd..fa65cae55 100644 --- a/template/beginner/deps.ts +++ b/template/beginner/deps.ts @@ -1,5 +1,10 @@ -export * from "https://deno.land/x/discordeno@16.0.1/mod.ts"; -export * from "https://deno.land/x/discordeno@16.0.1/plugins/mod.ts"; +export * from "https://raw.githubusercontent.com/discordeno/discordeno/main/mod.ts"; +export * from "https://raw.githubusercontent.com/discordeno/discordeno/main/plugins/mod.ts"; +// export * from "../../plugins/cache/mod.ts"; +// export * from "../../plugins/fileloader/mod.ts"; +// export * from "../../plugins/helpers/mod.ts"; +// export * from "../../plugins/permissions/mod.ts"; +// export * from "../../plugins/validations/mod.ts"; // Terminal Colors! export * from "https://deno.land/std@0.117.0/fmt/colors.ts"; diff --git a/template/minimal/deps.ts b/template/minimal/deps.ts index 47848d736..5b931e785 100644 --- a/template/minimal/deps.ts +++ b/template/minimal/deps.ts @@ -1,4 +1,4 @@ -export * from "https://deno.land/x/discordeno@16.0.1/mod.ts"; -export * from "https://deno.land/x/discordeno@16.0.1/plugins/mod.ts"; +export * from "https://raw.githubusercontent.com/discordeno/discordeno/main/mod.ts"; +export * from "https://raw.githubusercontent.com/discordeno/discordeno/main/plugins/mod.ts"; export { config as dotEnvConfig } from "https://deno.land/x/dotenv@v3.1.0/mod.ts"; export * from "https://deno.land/std@0.117.0/fmt/colors.ts";