Skip to content

Commit

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

./types.ts

./deps_test.ts
[1/3] Looking for releases: https://deno.land/[email protected]/testing/asserts.ts
[1/3] Attempting update: https://deno.land/[email protected]/testing/asserts.ts -> 0.110.0
[1/3] Update successful: https://deno.land/[email protected]/testing/asserts.ts -> 0.110.0
[2/3] Looking for releases: https://deno.land/[email protected]/io/mod.ts
[2/3] Attempting update: https://deno.land/[email protected]/io/mod.ts -> 0.110.0
[2/3] Update successful: https://deno.land/[email protected]/io/mod.ts -> 0.110.0
[3/3] Looking for releases: https://deno.land/[email protected]/async/mod.ts
[3/3] Attempting update: https://deno.land/[email protected]/async/mod.ts -> 0.110.0
[3/3] Update successful: https://deno.land/[email protected]/async/mod.ts -> 0.110.0

./writer_test.ts

./test.ts

./mod.ts

./reader_test.ts

./test_worker.ts

./deps.ts
[1/4] Looking for releases: https://deno.land/x/[email protected]/queue.ts
[1/4] Skip updating: https://deno.land/x/[email protected]/queue.ts
[2/4] Looking for releases: https://deno.land/[email protected]/async/mod.ts
[2/4] Attempting update: https://deno.land/[email protected]/async/mod.ts -> 0.110.0
[2/4] Update successful: https://deno.land/[email protected]/async/mod.ts -> 0.110.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.110.0
[3/4] Update successful: https://deno.land/[email protected]/async/mod.ts -> 0.110.0
[4/4] Looking for releases: https://deno.land/x/[email protected]/mod.ts
[4/4] Using latest: https://deno.land/x/[email protected]/mod.ts

./writer.ts

./reader.ts

./example/worker.ts
[1/1] Looking for releases: https://deno.land/[email protected]/io/mod.ts
[1/1] Attempting update: https://deno.land/[email protected]/io/mod.ts -> 0.110.0
[1/1] Update successful: https://deno.land/[email protected]/io/mod.ts -> 0.110.0

./example/server.ts
[1/1] Looking for releases: https://deno.land/[email protected]/io/mod.ts
[1/1] Attempting update: https://deno.land/[email protected]/io/mod.ts -> 0.110.0
[1/1] Update successful: https://deno.land/[email protected]/io/mod.ts -> 0.110.0

./benchmark/benchmark.ts
[1/1] Looking for releases: https://deno.land/[email protected]/flags/mod.ts
[1/1] Attempting update: https://deno.land/[email protected]/flags/mod.ts -> 0.110.0
[1/1] Update successful: https://deno.land/[email protected]/flags/mod.ts -> 0.110.0

Already latest version:
https://deno.land/x/[email protected]/queue.ts == v1.0
https://deno.land/x/[email protected]/mod.ts == 0.4.0

Successfully updated:
https://deno.land/[email protected]/testing/asserts.ts 0.109.0 -> 0.110.0
https://deno.land/[email protected]/io/mod.ts 0.109.0 -> 0.110.0
https://deno.land/[email protected]/async/mod.ts 0.109.0 -> 0.110.0
https://deno.land/[email protected]/async/mod.ts 0.109.0 -> 0.110.0
https://deno.land/[email protected]/async/mod.ts 0.109.0 -> 0.110.0
https://deno.land/[email protected]/io/mod.ts 0.109.0 -> 0.110.0
https://deno.land/[email protected]/io/mod.ts 0.109.0 -> 0.110.0
https://deno.land/[email protected]/flags/mod.ts 0.109.0 -> 0.110.0
make[1]: Entering directory '/home/runner/work/deno-workerio/deno-workerio'
make[1]: Leaving directory '/home/runner/work/deno-workerio/deno-workerio'
  • Loading branch information
lambdalisue committed Oct 10, 2021
1 parent 1782cd7 commit bed008c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion benchmark/benchmark.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parse } from "https://deno.land/std@0.109.0/flags/mod.ts";
import { parse } from "https://deno.land/std@0.110.0/flags/mod.ts";
import { assertEquals, delay, io } from "../deps_test.ts";
import { WorkerReader, WorkerWriter } from "../mod.ts";

Expand Down
4 changes: 2 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { Queue } from "https://deno.land/x/[email protected]/queue.ts";
export { deferred } from "https://deno.land/std@0.109.0/async/mod.ts";
export type { Deferred } from "https://deno.land/std@0.109.0/async/mod.ts";
export { deferred } from "https://deno.land/std@0.110.0/async/mod.ts";
export type { Deferred } from "https://deno.land/std@0.110.0/async/mod.ts";

export { compareVersions } from "https://deno.land/x/[email protected]/mod.ts";
6 changes: 3 additions & 3 deletions deps_test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "https://deno.land/std@0.109.0/testing/asserts.ts";
export * as io from "https://deno.land/std@0.109.0/io/mod.ts";
export { delay } from "https://deno.land/std@0.109.0/async/mod.ts";
export * from "https://deno.land/std@0.110.0/testing/asserts.ts";
export * as io from "https://deno.land/std@0.110.0/io/mod.ts";
export { delay } from "https://deno.land/std@0.110.0/async/mod.ts";
2 changes: 1 addition & 1 deletion example/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as io from "https://deno.land/std@0.109.0/io/mod.ts";
import * as io from "https://deno.land/std@0.110.0/io/mod.ts";
import { WorkerReader, WorkerWriter } from "../mod.ts";

const decoder = new TextDecoder();
Expand Down
2 changes: 1 addition & 1 deletion example/worker.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as io from "https://deno.land/std@0.109.0/io/mod.ts";
import * as io from "https://deno.land/std@0.110.0/io/mod.ts";
import { WorkerReader, WorkerWriter } from "../mod.ts";

const decoder = new TextDecoder();
Expand Down

0 comments on commit bed008c

Please sign in to comment.