-
-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump deps and improve some codes (#328)
* chore: bump deps and improve some codes * chore: remove useless file * bump(deps): update web_bson
- Loading branch information
Showing
7 changed files
with
34 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export * as Bson from "https://deno.land/x/web_bson@v0.1.5/mod.ts"; | ||
export { crypto } from "https://deno.land/std@0.121.0/crypto/mod.ts"; | ||
export { BufReader } from "https://deno.land/std@0.121.0/io/mod.ts"; | ||
export { writeAll } from "https://deno.land/std@0.121.0/streams/conversion.ts"; | ||
export { deferred } from "https://deno.land/std@0.121.0/async/deferred.ts"; | ||
export type { Deferred } from "https://deno.land/std@0.121.0/async/deferred.ts"; | ||
export * as b64 from "https://deno.land/std@0.121.0/encoding/base64.ts"; | ||
export * as hex from "https://deno.land/std@0.121.0/encoding/hex.ts"; | ||
export * as Bson from "https://deno.land/x/web_bson@v0.1.6/mod.ts"; | ||
export { crypto } from "https://deno.land/std@0.122.0/crypto/mod.ts"; | ||
export { BufReader } from "https://deno.land/std@0.122.0/io/mod.ts"; | ||
export { writeAll } from "https://deno.land/std@0.122.0/streams/conversion.ts"; | ||
export { deferred } from "https://deno.land/std@0.122.0/async/deferred.ts"; | ||
export type { Deferred } from "https://deno.land/std@0.122.0/async/deferred.ts"; | ||
export * as b64 from "https://deno.land/std@0.122.0/encoding/base64.ts"; | ||
export * as hex from "https://deno.land/std@0.122.0/encoding/hex.ts"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
export { | ||
assert, | ||
assertEquals, | ||
assertNotEquals, | ||
assertRejects, | ||
assertThrows, | ||
} from "https://deno.land/std@0.121.0/testing/asserts.ts"; | ||
} from "https://deno.land/std@0.122.0/testing/asserts.ts"; | ||
export { equals as bytesEquals } from "https://deno.land/std@0.122.0/bytes/equals.ts"; | ||
export * as semver from "https://deno.land/x/semver@v1.4.0/mod.ts"; |