generated from kawarimidoll/deno-dev-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeps.ts
20 lines (15 loc) · 806 Bytes
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export {
assert,
assertEquals,
assertThrows,
} from "https://deno.land/[email protected]/testing/asserts.ts";
export { Marked, Renderer } from "https://deno.land/x/[email protected]/mod.ts";
import { status } from "https://deno.land/x/[email protected]/status.ts";
export const httpStatusText = status.pretty;
export { lookup as lookupMimeType } from "https://deno.land/x/[email protected]/mod.ts";
export { tag } from "https://deno.land/x/[email protected]/mod.ts";
import { Log } from "https://deno.land/x/[email protected]/mod.ts";
const minLogLevel = Deno.env.get("DENO_DEPLOYMENT_ID") ? "info" : "debug";
export const log = new Log({ minLogLevel });
export { sortBy } from "https://deno.land/[email protected]/collections/mod.ts";
export { parse as parseYaml } from "https://deno.land/[email protected]/encoding/yaml.ts";