Skip to content

Commit

Permalink
build(deps): bump deno.land/std from 0.215.0 to 0.217.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hasundue committed Feb 26, 2024
1 parent 947df5e commit 3c4c2cf
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 66 deletions.
110 changes: 56 additions & 54 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/env.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import "https://deno.land/std@0.215.0/dotenv/load.ts";
import "https://deno.land/std@0.217.0/dotenv/load.ts";
import type { PrivateKey, PublicKey } from "../mod.ts";

class Env {
Expand Down
16 changes: 8 additions & 8 deletions lib/std/assert.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export { assert } from "https://deno.land/std@0.215.0/assert/assert.ts";
export { assertArrayIncludes } from "https://deno.land/std@0.215.0/assert/assert_array_includes.ts";
export { assertEquals } from "https://deno.land/std@0.215.0/assert/assert_equals.ts";
export { assertFalse } from "https://deno.land/std@0.215.0/assert/assert_false.ts";
export { assertObjectMatch } from "https://deno.land/std@0.215.0/assert/assert_object_match.ts";
export { assertThrows } from "https://deno.land/std@0.215.0/assert/assert_throws.ts";
export { assertRejects } from "https://deno.land/std@0.215.0/assert/assert_rejects.ts";
export { assertInstanceOf } from "https://deno.land/std@0.215.0/assert/assert_instance_of.ts";
export { assert } from "https://deno.land/std@0.217.0/assert/assert.ts";
export { assertArrayIncludes } from "https://deno.land/std@0.217.0/assert/assert_array_includes.ts";
export { assertEquals } from "https://deno.land/std@0.217.0/assert/assert_equals.ts";
export { assertFalse } from "https://deno.land/std@0.217.0/assert/assert_false.ts";
export { assertObjectMatch } from "https://deno.land/std@0.217.0/assert/assert_object_match.ts";
export { assertThrows } from "https://deno.land/std@0.217.0/assert/assert_throws.ts";
export { assertRejects } from "https://deno.land/std@0.217.0/assert/assert_rejects.ts";
export { assertInstanceOf } from "https://deno.land/std@0.217.0/assert/assert_instance_of.ts";
2 changes: 1 addition & 1 deletion lib/std/streams.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { mergeReadableStreams } from "https://deno.land/std@0.215.0/streams/mod.ts";
export { mergeReadableStreams } from "https://deno.land/std@0.217.0/streams/mod.ts";
4 changes: 2 additions & 2 deletions lib/std/testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export {
beforeEach,
describe,
it,
} from "https://deno.land/std@0.215.0/testing/bdd.ts";
} from "https://deno.land/std@0.217.0/testing/bdd.ts";
export {
assertType,
type Has,
} from "https://deno.land/std@0.215.0/testing/types.ts";
} from "https://deno.land/std@0.217.0/testing/types.ts";

0 comments on commit 3c4c2cf

Please sign in to comment.