Skip to content

Commit

Permalink
📦 Update Deno dependencies
Browse files Browse the repository at this point in the history
Update dependencies by udd:

/home/runner/work/deno-replutil/deno-replutil/receiver.ts
[1/1] Looking for releases: https://deno.land/[email protected]/async/mod.ts
[1/1] Attempting update: https://deno.land/[email protected]/async/mod.ts -> 0.202.0
[1/1] Update successful: https://deno.land/[email protected]/async/mod.ts -> 0.202.0

/home/runner/work/deno-replutil/deno-replutil/sender_test.ts

/home/runner/work/deno-replutil/deno-replutil/receiver_test.ts

/home/runner/work/deno-replutil/deno-replutil/mod.ts

/home/runner/work/deno-replutil/deno-replutil/sender.ts
[1/1] Looking for releases: https://deno.land/[email protected]/streams/mod.ts
[1/1] Attempting update: https://deno.land/[email protected]/streams/mod.ts -> 0.202.0
[1/1] Update successful: https://deno.land/[email protected]/streams/mod.ts -> 0.202.0

/home/runner/work/deno-replutil/deno-replutil/deps_test.ts
[1/4] Looking for releases: https://deno.land/[email protected]/testing/asserts.ts
[1/4] Attempting update: https://deno.land/[email protected]/testing/asserts.ts -> 0.202.0
[1/4] Update successful: https://deno.land/[email protected]/testing/asserts.ts -> 0.202.0
[2/4] Looking for releases: https://deno.land/[email protected]/io/mod.ts
[2/4] Attempting update: https://deno.land/[email protected]/io/mod.ts -> 0.202.0
[2/4] Update successful: https://deno.land/[email protected]/io/mod.ts -> 0.202.0
[3/4] Looking for releases: https://deno.land/[email protected]/async/mod.ts
[3/4] Attempting update: https://deno.land/[email protected]/async/mod.ts -> 0.202.0
[3/4] Update successful: https://deno.land/[email protected]/async/mod.ts -> 0.202.0
[4/4] Looking for releases: https://deno.land/[email protected]/streams/mod.ts
[4/4] Attempting update: https://deno.land/[email protected]/streams/mod.ts -> 0.202.0
[4/4] Update successful: https://deno.land/[email protected]/streams/mod.ts -> 0.202.0

/home/runner/work/deno-replutil/deno-replutil/README.md

Successfully updated:
https://deno.land/[email protected]/async/mod.ts 0.128.0 -> 0.202.0
https://deno.land/[email protected]/streams/mod.ts 0.128.0 -> 0.202.0
https://deno.land/[email protected]/testing/asserts.ts 0.128.0 -> 0.202.0
https://deno.land/[email protected]/io/mod.ts 0.128.0 -> 0.202.0
https://deno.land/[email protected]/async/mod.ts 0.128.0 -> 0.202.0
https://deno.land/[email protected]/streams/mod.ts 0.128.0 -> 0.202.0
make[1]: Entering directory '/home/runner/work/deno-replutil/deno-replutil'
make[1]: Leaving directory '/home/runner/work/deno-replutil/deno-replutil'
  • Loading branch information
lambdalisue committed Sep 20, 2023
1 parent 403fedc commit ca69196
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions deps_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from "https://deno.land/std@0.128.0/testing/asserts.ts";
export * as io from "https://deno.land/std@0.128.0/io/mod.ts";
export { delay } from "https://deno.land/std@0.128.0/async/mod.ts";
export * as streams from "https://deno.land/std@0.128.0/streams/mod.ts";
export * from "https://deno.land/std@0.202.0/testing/asserts.ts";
export * as io from "https://deno.land/std@0.202.0/io/mod.ts";
export { delay } from "https://deno.land/std@0.202.0/async/mod.ts";
export * as streams from "https://deno.land/std@0.202.0/streams/mod.ts";
2 changes: 1 addition & 1 deletion receiver.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { delay } from "https://deno.land/std@0.128.0/async/mod.ts";
import { delay } from "https://deno.land/std@0.202.0/async/mod.ts";

const DEFAULT_PATTERN = /\n/m;

Expand Down
2 changes: 1 addition & 1 deletion sender.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { writeAll } from "https://deno.land/std@0.128.0/streams/mod.ts";
import { writeAll } from "https://deno.land/std@0.202.0/streams/mod.ts";

export class Sender {
#writer: Deno.Writer;
Expand Down

0 comments on commit ca69196

Please sign in to comment.