Skip to content

Commit

Permalink
build(deps): update dependencies (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
hasundue authored Feb 11, 2024
1 parent 87121cd commit 22da98b
Show file tree
Hide file tree
Showing 8 changed files with 102 additions and 98 deletions.
4 changes: 2 additions & 2 deletions bin/bundle.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { bundle } from "https://deno.land/x/emit@0.30.0/mod.ts";
import { transform } from "https://deno.land/x/esbuild@v0.19.4/mod.js";
import { bundle } from "https://deno.land/x/emit@0.36.0/mod.ts";
import { transform } from "https://deno.land/x/esbuild@v0.20.0/mod.js";

const result = await bundle(
new URL("../core/relays.ts", import.meta.url),
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "mkdir -p ./dist && deno run -A ./bin/bundle.ts",
"dev": "deno fmt && deno lint && deno task -q check && deno task -q lock && deno task -q test",
"update": "deno run --allow-read --allow-env --allow-write --allow-net=deno.land,registry.npmjs.org --allow-run=deno,git https://deno.land/x/[email protected]/cli.ts ./**/*.ts",
"update:commit": "deno task -q update --commit --pre-commit=fmt,lock --prefix 'build(deps):'"
"update:commit": "deno task -q update --commit --pre-commit=dev --prefix 'build(deps):'"
},
"exclude": [
"dist/",
Expand Down
164 changes: 84 additions & 80 deletions deno.lock

Large diffs are not rendered by default.

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.204.0/dotenv/load.ts";
import "https://deno.land/std@0.215.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.204.0/assert/assert.ts";
export { assertArrayIncludes } from "https://deno.land/std@0.204.0/assert/assert_array_includes.ts";
export { assertEquals } from "https://deno.land/std@0.204.0/assert/assert_equals.ts";
export { assertFalse } from "https://deno.land/std@0.204.0/assert/assert_false.ts";
export { assertObjectMatch } from "https://deno.land/std@0.204.0/assert/assert_object_match.ts";
export { assertThrows } from "https://deno.land/std@0.204.0/assert/assert_throws.ts";
export { assertRejects } from "https://deno.land/std@0.204.0/assert/assert_rejects.ts";
export { assertInstanceOf } from "https://deno.land/std@0.204.0/assert/assert_instance_of.ts";
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";
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.204.0/streams/mod.ts";
export { mergeReadableStreams } from "https://deno.land/std@0.215.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.204.0/testing/bdd.ts";
} from "https://deno.land/std@0.215.0/testing/bdd.ts";
export {
assertType,
type Has,
} from "https://deno.land/std@0.204.0/testing/types.ts";
} from "https://deno.land/std@0.215.0/testing/types.ts";
6 changes: 3 additions & 3 deletions lib/x/noble.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { schnorr } from "npm:@noble/curves@1.2.0/secp256k1";
export { sha256 } from "npm:@noble/[email protected].2/sha256";
export { bytesToHex } from "npm:@noble/[email protected].2/utils";
export { schnorr } from "npm:@noble/curves@1.3.0/secp256k1";
export { sha256 } from "npm:@noble/[email protected].3/sha256";
export { bytesToHex } from "npm:@noble/[email protected].3/utils";

0 comments on commit 22da98b

Please sign in to comment.