Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
drashbot committed May 19, 2023
1 parent 1fb4e17 commit cc5d8aa
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ export * as Line from "https://deno.land/x/[email protected]/mod.ts";
import { ConsoleLogger } from "https://deno.land/x/[email protected]/mod.ts";
const consoleLogger = new ConsoleLogger({});
export { consoleLogger as ConsoleLogger };
export { assertEquals } from "https://deno.land/std@0.168.0/testing/asserts.ts";
export * as colours from "https://deno.land/std@0.168.0/fmt/colors.ts";
export { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
export * as colours from "https://deno.land/std@0.188.0/fmt/colors.ts";
12 changes: 6 additions & 6 deletions tests/integration/up-to-date-deps/deps.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { Drash } from "https://deno.land/x/[email protected]/mod.ts"; // up to date

import * as fs from "https://deno.land/std@0.168.0/fs/mod.ts"; // up to date
import * as fs from "https://deno.land/std@0.188.0/fs/mod.ts"; // up to date

import * as colors from "https://deno.land/std@0.168.0/fmt/colors.ts"; //up to date
import * as colors from "https://deno.land/std@0.188.0/fmt/colors.ts"; //up to date

import * as Cliffy from "https://x.nest.land/[email protected]/mod.ts"; //up to date

import * as log from "https://deno.land/std@0.168.0/log/mod.ts"; //up to date
import * as log from "https://deno.land/std@0.188.0/log/mod.ts"; //up to date

export { v4 } from "https://deno.land/std@0.168.0/uuid/mod.ts"; //up to date
export { v4 } from "https://deno.land/std@0.188.0/uuid/mod.ts"; //up to date

export { Cliffy, colors, Drash, fs, log };

export { Something } from "https://raw.githubusercontent.com/drashland/wocket/v1.0.0/mod.ts";

export { createBot } from "https://deno.land/x/discordeno@17.0.1/mod.ts";
export { createBot } from "https://deno.land/x/discordeno@18.0.1/mod.ts";

import _Table from "https://unpkg.com/[email protected].0/dist/index.mjs";
import _Table from "https://unpkg.com/[email protected].2/dist/index.mjs";
12 changes: 6 additions & 6 deletions tests/integration/up-to-date-deps/original_deps.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { Drash } from "https://deno.land/x/[email protected]/mod.ts"; // up to date

import * as fs from "https://deno.land/std@0.168.0/fs/mod.ts"; // up to date
import * as fs from "https://deno.land/std@0.188.0/fs/mod.ts"; // up to date

import * as colors from "https://deno.land/std@0.168.0/fmt/colors.ts"; //up to date
import * as colors from "https://deno.land/std@0.188.0/fmt/colors.ts"; //up to date

import * as Cliffy from "https://x.nest.land/[email protected]/mod.ts"; //up to date

import * as log from "https://deno.land/std@0.168.0/log/mod.ts"; //up to date
import * as log from "https://deno.land/std@0.188.0/log/mod.ts"; //up to date

export { v4 } from "https://deno.land/std@0.168.0/uuid/mod.ts"; //up to date
export { v4 } from "https://deno.land/std@0.188.0/uuid/mod.ts"; //up to date

export { Cliffy, colors, Drash, fs, log };

export { Something } from "https://raw.githubusercontent.com/drashland/wocket/v1.0.0/mod.ts";

export { createBot } from "https://deno.land/x/discordeno@17.0.1/mod.ts";
export { createBot } from "https://deno.land/x/discordeno@18.0.1/mod.ts";

import _Table from "https://unpkg.com/[email protected].0/dist/index.mjs";
import _Table from "https://unpkg.com/[email protected].2/dist/index.mjs";

0 comments on commit cc5d8aa

Please sign in to comment.