forked from denosaurs/denon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.ts
45 lines (38 loc) · 1011 Bytes
/
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
// 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/x/[email protected]/mod.ts";
// colors for a pretty cli
export {
blue,
bold,
gray,
green,
italic,
red,
reset,
setColorEnabled,
yellow,
} from "https://deno.land/[email protected]/fmt/colors.ts";
// configuration reading
export {
exists,
existsSync,
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 {
dirname,
extname,
globToRegExp,
relative,
resolve,
} from "https://deno.land/[email protected]/path/mod.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";