Skip to content

Commit

Permalink
Update dependencies and bump version numbers across repo (#122)
Browse files Browse the repository at this point in the history
Co-authored-by: crookse <crookse@users.noreply.github.com>
  • Loading branch information
drashbot and crookse authored Dec 11, 2021
1 parent 466560e commit e38af7c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { BumperService } from "https://raw.githubusercontent.com/drashland/services/v0.2.4/ci/bumper_service.ts";
export { Line, Subcommand } from "https://deno.land/x/line@v0.1.1/mod.ts";
export { ConsoleLogger } from "https://raw.githubusercontent.com/drashland/services/v0.2.4/loggers/console_logger.ts";
export { assertEquals } from "https://deno.land/std@0.116.0/testing/asserts.ts";
import * as colours from "https://deno.land/std@0.116.0/fmt/colors.ts";
export { assertEquals } from "https://deno.land/std@0.117.0/testing/asserts.ts";
import * as colours from "https://deno.land/std@0.117.0/fmt/colors.ts";
export { colours };
8 changes: 4 additions & 4 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.2.0/mod.ts"; // up to date

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

import * as colors from "https://deno.land/std@0.116.0/fmt/colors.ts"; //up to date
import * as colors from "https://deno.land/std@0.117.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.116.0/log/mod.ts"; //up to date
import * as log from "https://deno.land/std@0.117.0/log/mod.ts"; //up to date

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

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

Expand Down
8 changes: 4 additions & 4 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.2.0/mod.ts"; // up to date

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

import * as colors from "https://deno.land/std@0.116.0/fmt/colors.ts"; //up to date
import * as colors from "https://deno.land/std@0.117.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.116.0/log/mod.ts"; //up to date
import * as log from "https://deno.land/std@0.117.0/log/mod.ts"; //up to date

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

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

Expand Down

0 comments on commit e38af7c

Please sign in to comment.