-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix sqlite promise issues and update dex to use latest std
- Loading branch information
Zhomart Mukhamejanov
committed
Dec 13, 2021
1 parent
1e63d85
commit 2f74041
Showing
3 changed files
with
13 additions
and
9 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,7 +1,8 @@ | ||
export * as ConsoleColor from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
// NOTE: these changes fixes #303. | ||
export { default as SQLQueryBuilder } from "https://raw.githubusercontent.com/Zhomart/dex/c452c40b365e73265a25c18cb7adf5d35c1dbb8b/mod-dyn.ts"; | ||
// NOTE: Migrate to the official https://github.com/aghussb/dex when it's updated to the | ||
// latest deno version. | ||
export { default as SQLQueryBuilder } from "https://raw.githubusercontent.com/Zhomart/dex/930253915093e1e08d48ec0409b4aee800d8bd0c/mod-dyn.ts"; | ||
|
||
export { camelCase, snakeCase } from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
|
@@ -16,6 +17,6 @@ export { Client as PostgresClient } from "https://deno.land/x/[email protected]/m | |
|
||
export { DB as SQLiteClient } from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
export { MongoClient as MongoDBClient, Bson } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
export type { ConnectOptions as MongoDBClientOptions } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
export type { Database as MongoDBDatabase } from "https://deno.land/x/[email protected].0/src/database.ts"; | ||
export { MongoClient as MongoDBClient, Bson } from "https://deno.land/x/[email protected].1/mod.ts"; | ||
export type { ConnectOptions as MongoDBClientOptions } from "https://deno.land/x/[email protected].1/mod.ts"; | ||
export type { Database as MongoDBDatabase } from "https://deno.land/x/[email protected].1/src/database.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