Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Aug 21, 2023
1 parent 6c52a59 commit 1e50459
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cli.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Command } from "https://deno.land/x/cliffy@v0.25.7/command/mod.ts";
import { basename, join } from "https://deno.land/std@0.192.0/path/mod.ts";
import { Command } from "https://deno.land/x/cliffy@v1.0.0-rc.3/command/mod.ts";
import { basename, join } from "https://deno.land/std@0.199.0/path/mod.ts";
import { findAndReplace } from "./change.ts";

/**
Expand Down
2 changes: 1 addition & 1 deletion test/change.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
assert,
assertEquals,
assertNotEquals,
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
} from "https://deno.land/std@0.199.0/testing/asserts.ts";

Deno.test("Source code translation works", async () => {
const source = "const x = 'https://deno.land/[email protected]/testing/asserts.ts'"; // i-deno-outdated
Expand Down
2 changes: 1 addition & 1 deletion test/redirect.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { checkRedirect } from "../redirect.ts";
import {
assertEquals,
assertNotEquals,
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
} from "https://deno.land/std@0.199.0/testing/asserts.ts";

Deno.test("Redirects redirect to another URL (against deno.land/x)", async () => {
const redirect = await checkRedirect("https://deno.land/x/cliffy/mod.ts"); // i-deno-outdated
Expand Down
4 changes: 2 additions & 2 deletions test/regex.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { apply } from "../regex.ts";
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.199.0/testing/asserts.ts";

Deno.test("Removal works (deno.land/x)", () => {
const url = "https://deno.land/x/cliffy@v0.25.7/mod.ts";
const url = "https://deno.land/x/cliffy@v1.0.0-rc.3/mod.ts";

assertEquals(apply(url), "https://deno.land/x/cliffy/mod.ts"); // i-deno-outdated
});
Expand Down

0 comments on commit 1e50459

Please sign in to comment.