forked from denosaurs/denon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.ts
57 lines (48 loc) · 1.5 KB
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
// provide better logging, see src/log.ts
export * as log from "https://deno.land/[email protected]/log/mod.ts";
export { LogRecord } from "https://deno.land/[email protected]/log/logger.ts";
export {
LogLevels,
LevelName as LogLevelName,
} from "https://deno.land/[email protected]/log/levels.ts";
export { BaseHandler } from "https://deno.land/[email protected]/log/handlers.ts";
// colors for a pretty cli
export {
setColorEnabled,
reset,
bold,
blue,
yellow,
red,
gray,
} from "https://deno.land/[email protected]/fmt/colors.ts";
// configuration reading
export {
exists,
existsSync,
readFileStr,
walk, // ... and one type of file monitoring
} from "https://deno.land/[email protected]/fs/mod.ts";
// configuration parsing (YAML)
export {
JSON_SCHEMA,
parse as parseYaml,
} from "https://deno.land/[email protected]/encoding/yaml.ts";
// file watching and directory matching
export {
relative,
dirname,
extname,
resolve,
globToRegExp,
} from "https://deno.land/[email protected]/path/mod.ts";
// configuration parsing and writing (JSON)
export { readJson } from "https://deno.land/[email protected]/fs/read_json.ts";
export { writeJson } from "https://deno.land/[email protected]/fs/write_json.ts";
// event control
export { deferred, delay } from "https://deno.land/[email protected]/async/mod.ts";
// permission management
export { grant } from "https://deno.land/[email protected]/permissions/mod.ts";
// autocomplete
export * as omelette from "https://deno.land/x/omelette/omelette.ts";