-
-
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.
* handle import changes Signed-off-by: Jersey <[email protected]> * fix most errors Signed-off-by: Jersey <[email protected]> * web_bson is on jsr now! Signed-off-by: Jersey <[email protected]> * make the document type the right one so that things dont combust Signed-off-by: Jersey <[email protected]> * turns out the scope is DB Signed-off-by: Jersey <[email protected]> * include our own document type and re-export less Signed-off-by: Jersey <[email protected]> * fix lint Signed-off-by: Jersey <[email protected]> * d o c s Signed-off-by: Jersey <[email protected]> * whoops Signed-off-by: Jersey <[email protected]> * turns out i forgot to update the test Signed-off-by: Jersey <[email protected]> * make readme show on jsr side * alphabetically sort stuff Signed-off-by: Jersey <[email protected]> * fix mentioned issues Signed-off-by: Jersey <[email protected]> * empty commit to run tests again, they're flaky Signed-off-by: Jersey <[email protected]> * turns out i forgot to add a few things back Signed-off-by: Jersey <[email protected]> * whoops i forgot to remove an unused dep --------- Signed-off-by: Jersey <[email protected]>
- Loading branch information
1 parent
5356b71
commit 749d804
Showing
42 changed files
with
418 additions
and
178 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "@db/mongo", | ||
"version": "0.33.0", | ||
"exports": { | ||
".": "./mod.ts", | ||
"./client": "./src/client.ts", | ||
"./collection": "./src/collection/collection.ts", | ||
"./gridfs": "./src/gridfs/bucket.ts", | ||
"./types": "./src/types.ts" | ||
}, | ||
"publish": { | ||
"exclude": [".github", "tests", ".gitattributes", ".gitignore", "deno.lock"] | ||
}, | ||
"test": { | ||
"include": [ | ||
"tests/cases/*.ts" | ||
] | ||
}, | ||
"lock": false | ||
} |
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,6 +1,22 @@ | ||
export * from "https://deno.land/x/[email protected]/mod.js"; | ||
export { writeAll } from "https://deno.land/[email protected]/streams/write_all.ts"; | ||
export { crypto } from "https://deno.land/[email protected]/crypto/mod.ts"; | ||
export { BufReader } from "https://deno.land/[email protected]/io/mod.ts"; | ||
export * as b64 from "https://deno.land/[email protected]/encoding/base64.ts"; | ||
export * as hex from "https://deno.land/[email protected]/encoding/hex.ts"; | ||
export { | ||
Binary, | ||
BSONRegExp, | ||
BSONSymbol, | ||
Code, | ||
DBRef, | ||
Decimal128, | ||
deserialize, | ||
Double, | ||
Int32, | ||
Long, | ||
MaxKey, | ||
MinKey, | ||
ObjectId, | ||
serialize, | ||
Timestamp, | ||
UUID, | ||
} from "jsr:@lucsoft/web-bson@^0.3.1"; | ||
export { crypto as stdCrypto } from "jsr:@std/crypto@^0.220.1/crypto"; | ||
export { decodeBase64, encodeBase64 } from "jsr:@std/encoding@^0.220.1/base64"; | ||
export { encodeHex } from "jsr:@std/encoding@^0.220.1/hex"; | ||
export { BufReader, writeAll } from "jsr:@std/io@^0.220.1"; |
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
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
Oops, something went wrong.