-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use deps.ts instead of deno.json to inject dependencies
deno.json will not work if we import zoic.ts directly so instead use deps.ts where we define all external dependencies as exports
- Loading branch information
1 parent
01e6fed
commit 2db31f8
Showing
10 changed files
with
52 additions
and
336 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,17 @@ | ||
export { | ||
assert, | ||
assertEquals, | ||
assertInstanceOf, | ||
assertThrows, | ||
assertRejects, | ||
assertExists | ||
} from "https://deno.land/std@0.224.0/testing/asserts.ts"; | ||
export { decode as base64decode, encode as base64encode } from 'https://deno.land/std@0.89.0/encoding/base64.ts'; | ||
export { Context, Application, Router } from "https://deno.land/x/oak@v17.1.4/mod.ts"; | ||
export { connect } from "https://deno.land/x/redis@v0.37.1/mod.ts"; | ||
export { oakCors } from "https://deno.land/x/cors@v1.2.2/mod.ts"; | ||
export { describe, it } from "https://deno.land/std@0.224.0/testing/bdd.ts"; | ||
|
||
export type { ApplicationListenEvent } from "https://deno.land/x/oak@v17.1.4/application.ts"; | ||
export type { Redis } from "https://deno.land/x/redis@v0.37.1/mod.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 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