Skip to content

Commit

Permalink
chore: update deps (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashbot authored Dec 16, 2022
1 parent 8555cac commit 5a5d7e2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export { BumperService } from "https://raw.githubusercontent.com/drashland/services/v0.2.5/ci/bumper_service.ts";
export * as Line from "https://deno.land/x/line@v1.0.1/mod.ts";
import { ConsoleLogger } from "https://deno.land/x/unilogger@v1.0.4/mod.ts";
import { ConsoleLogger } from "https://deno.land/x/unilogger@v1.1.0/mod.ts";
const consoleLogger = new ConsoleLogger({});
export { consoleLogger as ConsoleLogger };
export { assertEquals } from "https://deno.land/std@0.157.0/testing/asserts.ts";
export * as colours from "https://deno.land/std@0.157.0/fmt/colors.ts";
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";
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/drash@v2.7.0/mod.ts"; // up to date
import { Drash } from "https://deno.land/x/drash@v2.7.1/mod.ts"; // up to date

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

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

import * as Cliffy from "https://x.nest.land/cliffy@0.20.1/mod.ts"; //up to date

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

export { v4 } from "https://deno.land/std@0.157.0/uuid/mod.ts"; //up to date
export { v4 } from "https://deno.land/std@0.168.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@16.0.1/mod.ts";
export { createBot } from "https://deno.land/x/discordeno@17.0.1/mod.ts";

import _Table from "https://unpkg.com/table-layout@3.0.0/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/drash@v2.7.0/mod.ts"; // up to date
import { Drash } from "https://deno.land/x/drash@v2.7.1/mod.ts"; // up to date

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

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

import * as Cliffy from "https://x.nest.land/cliffy@0.20.1/mod.ts"; //up to date

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

export { v4 } from "https://deno.land/std@0.157.0/uuid/mod.ts"; //up to date
export { v4 } from "https://deno.land/std@0.168.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@16.0.1/mod.ts";
export { createBot } from "https://deno.land/x/discordeno@17.0.1/mod.ts";

import _Table from "https://unpkg.com/table-layout@3.0.0/dist/index.mjs";

0 comments on commit 5a5d7e2

Please sign in to comment.