Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
drashbot committed Feb 2, 2024
1 parent 276c819 commit 2915cb7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 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/line@v1.0.1/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.198.0/testing/asserts.ts";
export * as colours from "https://deno.land/std@0.198.0/fmt/colors.ts";
export { assertEquals } from "https://deno.land/std@0.214.0/testing/asserts.ts";
export * as colours from "https://deno.land/std@0.214.0/fmt/colors.ts";
10 changes: 5 additions & 5 deletions tests/integration/up-to-date-deps/deps.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Drash } from "https://deno.land/x/drash@v2.7.1/mod.ts"; // up to date
import { Drash } from "https://deno.land/x/drash@v3.0.0-beta.2/mod.ts"; // up to date

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

import * as colors from "https://deno.land/std@0.198.0/fmt/colors.ts"; //up to date
import * as colors from "https://deno.land/std@0.214.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.198.0/log/mod.ts"; //up to date
import * as log from "https://deno.land/std@0.214.0/log/mod.ts"; //up to date

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

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

Expand Down
10 changes: 5 additions & 5 deletions tests/integration/up-to-date-deps/original_deps.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Drash } from "https://deno.land/x/drash@v2.7.1/mod.ts"; // up to date
import { Drash } from "https://deno.land/x/drash@v3.0.0-beta.2/mod.ts"; // up to date

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

import * as colors from "https://deno.land/std@0.198.0/fmt/colors.ts"; //up to date
import * as colors from "https://deno.land/std@0.214.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.198.0/log/mod.ts"; //up to date
import * as log from "https://deno.land/std@0.214.0/log/mod.ts"; //up to date

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

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

Expand Down

0 comments on commit 2915cb7

Please sign in to comment.