Skip to content

Commit 922131b

Browse files
committed
dependency updates
1 parent a75ddd0 commit 922131b

File tree

27 files changed

+29
-29
lines changed

27 files changed

+29
-29
lines changed

dev/deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export * as path from "../tests/deps/path.ts";
2-
export * as colors from "https://deno.land/std@0.214.0/fmt/colors.ts";
2+
export * as colors from "https://deno.land/std@0.224.0/fmt/colors.ts";

dev/lines/consume.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { blue } from "https://deno.land/std@0.214.0/fmt/colors.ts";
1+
import { blue } from "https://deno.land/std@0.224.0/fmt/colors.ts";
22
import { run } from "../../mod.ts";
33

44
const produce = import.meta.resolve("./produce.ts");

legacy/deps-test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export * from "https://deno.land/std@0.214.0/testing/asserts.ts";
1+
export * from "https://deno.land/std@0.224.0/testing/asserts.ts";
22
export * from "https://deno.land/x/asynciter@0.0.18/mod.ts";
3-
export * from "https://deno.land/std@0.214.0/fmt/colors.ts";
3+
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";

legacy/deps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from "https://deno.land/std@0.214.0/async/mod.ts";
2-
export * from "https://deno.land/std@0.214.0/io/mod.ts";
1+
export * from "https://deno.land/std@0.224.0/async/mod.ts";
2+
export * from "https://deno.land/std@0.224.0/io/mod.ts";

legacy/examples/pushiterable/example-of-pushiterable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Answer, Question } from "./common-json-defs.ts";
44
import * as proc from "../../mod.ts";
55
import { WritableIterable } from "../../../mod1.ts";
66
import { asynciter } from "https://deno.land/x/asynciter@0.0.18/mod.ts";
7-
import { blue, red } from "https://deno.land/std@0.214.0/fmt/colors.ts";
7+
import { blue, red } from "https://deno.land/std@0.224.0/fmt/colors.ts";
88

99
/**
1010
* This demonstrates sending objects to and receiving objects from a child process

legacy/runners/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { isWindows } from "https://deno.land/std@0.214.0/path/_os.ts";
1+
import { isWindows } from "https://deno.land/std@0.224.0/path/_os.ts";
22

33
export const LINESEP: string = (() => {
44
if (isWindows) {

legacy/runners/handlers/bytes.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.214.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.224.0/testing/asserts.ts";
22
import * as proc from "../../mod.ts";
33

44
Deno.test({

legacy/runners/utility.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { BufReader, BufWriter } from "../deps.ts";
2-
import * as path from "https://deno.land/std@0.214.0/path/mod.ts";
2+
import * as path from "https://deno.land/std@0.224.0/path/mod.ts";
33

44
export const DEFAULT_BUFFER_SIZE = 4096;
55

legacy/tests/line-split.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.214.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.224.0/testing/asserts.ts";
22
import * as proc from "../mod.ts";
33

44
Deno.test({

legacy/tests/piped.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.214.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.224.0/testing/asserts.ts";
22
import * as proc from "../mod.ts";
33

44
Deno.test({

site/scripts/deps/path.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/path/posix/mod.ts";
1+
export * from "https://deno.land/std@0.224.0/path/posix/mod.ts";

src/deps/colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/fmt/colors.ts";
1+
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";

src/deps/path.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/path/mod.ts";
1+
export * from "https://deno.land/std@0.224.0/path/mod.ts";

src/deps/retry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/async/retry.ts";
1+
export * from "https://deno.land/std@0.224.0/async/retry.ts";

src/deps/streams.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/streams/mod.ts";
1+
export * from "https://deno.land/std@0.224.0/streams/mod.ts";

src/deps/tee.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/async/tee.ts";
1+
export * from "https://deno.land/std@0.224.0/async/tee.ts";

tests/deps/asserts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/assert/mod.ts";
1+
export * from "https://deno.land/std@0.224.0/assert/mod.ts";

tests/deps/colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/fmt/colors.ts";
1+
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";

tests/deps/path.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/path/mod.ts";
1+
export * from "https://deno.land/std@0.224.0/path/mod.ts";

tests/deps/streams.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/streams/mod.ts";
1+
export * from "https://deno.land/std@0.224.0/streams/mod.ts";

tools/deps/cliffy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/x/cliffy@v1.0.0-rc.3/command/mod.ts";
1+
export * from "https://deno.land/x/cliffy@v1.0.0-rc.4/command/mod.ts";

tools/deps/colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/fmt/colors.ts";
1+
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";

tools/deps/crypto.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/crypto/mod.ts";
1+
export * from "https://deno.land/std@0.224.0/crypto/mod.ts";

tools/deps/encode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/encoding/hex.ts";
1+
export * from "https://deno.land/std@0.224.0/encoding/hex.ts";

tools/deps/path.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/path/mod.ts";
1+
export * from "https://deno.land/std@0.224.0/path/mod.ts";

tools/deps/retry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.214.0/async/retry.ts";
1+
export * from "https://deno.land/std@0.224.0/async/retry.ts";

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"0.21.9"}
1+
{"version":"0.21.10"}

0 commit comments

Comments
 (0)