Skip to content

Commit 174898e

Browse files
committed
📦 Upgrade dependencies
1 parent 9295c91 commit 174898e

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

command_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
22
import * as command from "./command.ts";
33

44
const isRedrawCommandTestCases = [

deps.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
export * as io from "https://deno.land/std@0.164.0/io/mod.ts";
2-
export * as streams from "https://deno.land/std@0.164.0/streams/mod.ts";
3-
export { deferred } from "https://deno.land/x/std@0.164.0/async/deferred.ts";
1+
export * as io from "https://deno.land/std@0.186.0/io/mod.ts";
2+
export * as streams from "https://deno.land/std@0.186.0/streams/mod.ts";
3+
export { deferred } from "https://deno.land/x/std@0.186.0/async/deferred.ts";
44
export type {
55
Deferred,
6-
} from "https://deno.land/x/std@0.164.0/async/deferred.ts";
7-
export type { Disposable } from "https://deno.land/x/[email protected].0/mod.ts";
6+
} from "https://deno.land/x/std@0.186.0/async/deferred.ts";
7+
export type { Disposable } from "https://deno.land/x/[email protected].1/mod.ts";
88

99
export { default as JSONparser } from "https://deno.land/x/[email protected]/jsonparser.ts";

deps_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export * from "https://deno.land/std@0.164.0/testing/asserts.ts";
2-
export { delay } from "https://deno.land/std@0.164.0/async/mod.ts";
3-
export { using } from "https://deno.land/x/[email protected].0/mod.ts";
1+
export * from "https://deno.land/std@0.186.0/testing/asserts.ts";
2+
export { delay } from "https://deno.land/std@0.186.0/async/mod.ts";
3+
export { using } from "https://deno.land/x/[email protected].1/mod.ts";

message_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
22
import * as message from "./message.ts";
33

44
const isMessageTestCases = [

0 commit comments

Comments
 (0)