Skip to content

Commit

Permalink
dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
j50n committed Jun 12, 2024
1 parent a75ddd0 commit 922131b
Show file tree
Hide file tree
Showing 27 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion dev/deps.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * as path from "../tests/deps/path.ts";
export * as colors from "https://deno.land/std@0.214.0/fmt/colors.ts";
export * as colors from "https://deno.land/std@0.224.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion dev/lines/consume.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { blue } from "https://deno.land/std@0.214.0/fmt/colors.ts";
import { blue } from "https://deno.land/std@0.224.0/fmt/colors.ts";
import { run } from "../../mod.ts";

const produce = import.meta.resolve("./produce.ts");
Expand Down
4 changes: 2 additions & 2 deletions legacy/deps-test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "https://deno.land/std@0.214.0/testing/asserts.ts";
export * from "https://deno.land/std@0.224.0/testing/asserts.ts";
export * from "https://deno.land/x/[email protected]/mod.ts";
export * from "https://deno.land/std@0.214.0/fmt/colors.ts";
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";
4 changes: 2 additions & 2 deletions legacy/deps.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "https://deno.land/std@0.214.0/async/mod.ts";
export * from "https://deno.land/std@0.214.0/io/mod.ts";
export * from "https://deno.land/std@0.224.0/async/mod.ts";
export * from "https://deno.land/std@0.224.0/io/mod.ts";
2 changes: 1 addition & 1 deletion legacy/examples/pushiterable/example-of-pushiterable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Answer, Question } from "./common-json-defs.ts";
import * as proc from "../../mod.ts";
import { WritableIterable } from "../../../mod1.ts";
import { asynciter } from "https://deno.land/x/[email protected]/mod.ts";
import { blue, red } from "https://deno.land/std@0.214.0/fmt/colors.ts";
import { blue, red } from "https://deno.land/std@0.224.0/fmt/colors.ts";

/**
* This demonstrates sending objects to and receiving objects from a child process
Expand Down
2 changes: 1 addition & 1 deletion legacy/runners/constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isWindows } from "https://deno.land/std@0.214.0/path/_os.ts";
import { isWindows } from "https://deno.land/std@0.224.0/path/_os.ts";

export const LINESEP: string = (() => {
if (isWindows) {
Expand Down
2 changes: 1 addition & 1 deletion legacy/runners/handlers/bytes.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.214.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.224.0/testing/asserts.ts";
import * as proc from "../../mod.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion legacy/runners/utility.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { BufReader, BufWriter } from "../deps.ts";
import * as path from "https://deno.land/std@0.214.0/path/mod.ts";
import * as path from "https://deno.land/std@0.224.0/path/mod.ts";

export const DEFAULT_BUFFER_SIZE = 4096;

Expand Down
2 changes: 1 addition & 1 deletion legacy/tests/line-split.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.214.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.224.0/testing/asserts.ts";
import * as proc from "../mod.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion legacy/tests/piped.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.214.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.224.0/testing/asserts.ts";
import * as proc from "../mod.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion site/scripts/deps/path.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/path/posix/mod.ts";
export * from "https://deno.land/std@0.224.0/path/posix/mod.ts";
2 changes: 1 addition & 1 deletion src/deps/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/fmt/colors.ts";
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion src/deps/path.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/path/mod.ts";
export * from "https://deno.land/std@0.224.0/path/mod.ts";
2 changes: 1 addition & 1 deletion src/deps/retry.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/async/retry.ts";
export * from "https://deno.land/std@0.224.0/async/retry.ts";
2 changes: 1 addition & 1 deletion src/deps/streams.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/streams/mod.ts";
export * from "https://deno.land/std@0.224.0/streams/mod.ts";
2 changes: 1 addition & 1 deletion src/deps/tee.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/async/tee.ts";
export * from "https://deno.land/std@0.224.0/async/tee.ts";
2 changes: 1 addition & 1 deletion tests/deps/asserts.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/assert/mod.ts";
export * from "https://deno.land/std@0.224.0/assert/mod.ts";
2 changes: 1 addition & 1 deletion tests/deps/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/fmt/colors.ts";
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion tests/deps/path.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/path/mod.ts";
export * from "https://deno.land/std@0.224.0/path/mod.ts";
2 changes: 1 addition & 1 deletion tests/deps/streams.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/streams/mod.ts";
export * from "https://deno.land/std@0.224.0/streams/mod.ts";
2 changes: 1 addition & 1 deletion tools/deps/cliffy.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/x/[email protected].3/command/mod.ts";
export * from "https://deno.land/x/[email protected].4/command/mod.ts";
2 changes: 1 addition & 1 deletion tools/deps/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/fmt/colors.ts";
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion tools/deps/crypto.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/crypto/mod.ts";
export * from "https://deno.land/std@0.224.0/crypto/mod.ts";
2 changes: 1 addition & 1 deletion tools/deps/encode.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/encoding/hex.ts";
export * from "https://deno.land/std@0.224.0/encoding/hex.ts";
2 changes: 1 addition & 1 deletion tools/deps/path.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/path/mod.ts";
export * from "https://deno.land/std@0.224.0/path/mod.ts";
2 changes: 1 addition & 1 deletion tools/deps/retry.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.214.0/async/retry.ts";
export * from "https://deno.land/std@0.224.0/async/retry.ts";
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"0.21.9"}
{"version":"0.21.10"}

0 comments on commit 922131b

Please sign in to comment.