Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hugojosefson committed Sep 17, 2023
1 parent 7f0559e commit b86e452
Show file tree
Hide file tree
Showing 9 changed files with 86 additions and 40 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Adapted to use this module:

```typescript
import "https://deno.land/x/websocket_broadcastchannel/polyfill.ts";
import { serve } from "https://deno.land/std@0.194.0/http/server.ts";
import { serve } from "https://deno.land/std@0.201.0/http/server.ts";

const messages: string[] = [];
// Create a new broadcast channel named earth.
Expand Down
104 changes: 75 additions & 29 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 examples/server-example.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --allow-net --allow-env=PORT --watch
import "../polyfill.ts";
import { serve } from "https://deno.land/std@0.194.0/http/server.ts";
import { serve } from "https://deno.land/std@0.201.0/http/server.ts";

const messages: string[] = [];
// Create a new broadcast channel named earth.
Expand Down
2 changes: 1 addition & 1 deletion readme/generate-readme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
dirname,
relative,
resolve,
} from "https://deno.land/std@0.194.0/path/mod.ts";
} from "https://deno.land/std@0.201.0/path/mod.ts";

/**
* This program generates the README.md for the root directory.
Expand Down
2 changes: 1 addition & 1 deletion src/log.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { basename, extname } from "https://deno.land/std@0.194.0/path/mod.ts";
import { basename, extname } from "https://deno.land/std@0.201.0/path/mod.ts";
import type { Debug } from "https://deno.land/x/quiet_debug@v1.0.0/mod.ts";
import { debug } from "https://deno.land/x/quiet_debug@v1.0.0/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/fn.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertNotStrictEquals } from "https://deno.land/std@0.194.0/testing/asserts.ts";
import { assertNotStrictEquals } from "https://deno.land/std@0.201.0/testing/asserts.ts";

export const DEFAULT_TEST_TIMEOUT = 2000;

Expand Down
2 changes: 1 addition & 1 deletion test/id-url.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assertNotStrictEquals,
assertStrictEquals,
} from "https://deno.land/std@0.194.0/testing/asserts.ts";
} from "https://deno.land/std@0.201.0/testing/asserts.ts";
import { IdUrl } from "../src/id-url.ts";

Deno.test("IdUrl", () => {
Expand Down
4 changes: 2 additions & 2 deletions test/one-channel.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env -S deno run --allow-net --allow-env
import "../polyfill.ts";
import { parse } from "https://deno.land/std@0.194.0/flags/mod.ts";
import { deferred } from "https://deno.land/std@0.194.0/async/deferred.ts";
import { parse } from "https://deno.land/std@0.201.0/flags/mod.ts";
import { deferred } from "https://deno.land/std@0.201.0/async/deferred.ts";
import { s, sleep, ss } from "../src/fn.ts";
import { CommandFailureError } from "https://deno.land/x/run_simple@2.1.0/src/run.ts";

Expand Down
6 changes: 3 additions & 3 deletions test/websocket-broadcastchannel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ import {
beforeAll,
describe,
it,
} from "https://deno.land/std@0.194.0/testing/bdd.ts";
} from "https://deno.land/std@0.201.0/testing/bdd.ts";
import {
assertEquals,
assertInstanceOf,
assertStrictEquals,
} from "https://deno.land/std@0.194.0/testing/asserts.ts";
} from "https://deno.land/std@0.201.0/testing/asserts.ts";
import { getAvailablePort } from "./get-available-port.ts";
import { defaultWebSocketUrl } from "../src/default-websocket-url.ts";
import { assertDifferentInstances, rejectOnTimeout } from "./fn.ts";
import { deferred } from "https://deno.land/std@0.194.0/async/deferred.ts";
import { deferred } from "https://deno.land/std@0.201.0/async/deferred.ts";
import { using } from "../src/using.ts";
import { createBroadcastChannel, WebSocketBroadcastChannel } from "../mod.ts";

Expand Down

0 comments on commit b86e452

Please sign in to comment.