Skip to content

Commit c2cd59d

Browse files
authored
Update dependencies
1 parent 6c52a59 commit c2cd59d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Command } from "https://deno.land/x/cliffy@v0.25.7/command/mod.ts";
2-
import { basename, join } from "https://deno.land/std@0.192.0/path/mod.ts";
1+
import { Command } from "https://deno.land/x/cliffy@v1.0.0-rc.3/command/mod.ts";
2+
import { basename, join } from "https://deno.land/std@0.205.0/path/mod.ts";
33
import { findAndReplace } from "./change.ts";
44

55
/**

test/change.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
assert,
66
assertEquals,
77
assertNotEquals,
8-
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
8+
} from "https://deno.land/std@0.205.0/testing/asserts.ts";
99

1010
Deno.test("Source code translation works", async () => {
1111
const source = "const x = 'https://deno.land/std@0.146.0/testing/asserts.ts'"; // i-deno-outdated

test/redirect.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { checkRedirect } from "../redirect.ts";
22
import {
33
assertEquals,
44
assertNotEquals,
5-
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
5+
} from "https://deno.land/std@0.205.0/testing/asserts.ts";
66

77
Deno.test("Redirects redirect to another URL (against deno.land/x)", async () => {
88
const redirect = await checkRedirect("https://deno.land/x/cliffy/mod.ts"); // i-deno-outdated

test/regex.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { apply } from "../regex.ts";
2-
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
2+
import { assertEquals } from "https://deno.land/std@0.205.0/testing/asserts.ts";
33

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

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

0 commit comments

Comments
 (0)