-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.js
More file actions
49 lines (40 loc) · 1.28 KB
/
deps.js
File metadata and controls
49 lines (40 loc) · 1.28 KB
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
// Copyright 2021 Deno Land Inc. All rights reserved. MIT license.
// std
export {
fromFileUrl,
join,
normalize,
resolve,
toFileUrl,
} from "https://deno.land/std@0.170.0/path/mod.ts";
export {
bold,
green,
red,
yellow,
} from "https://deno.land/std@0.170.0/fmt/colors.ts";
export { parse as parseArgs } from "https://deno.land/std@0.170.0/flags/mod.ts";
export { TextLineStream } from "https://deno.land/std@0.170.0/streams/text_line_stream.ts";
// x/semver
export {
gte as semverGreaterThanOrEquals,
valid as semverValid,
} from "https://deno.land/std@0.170.0/semver/mod.ts";
// x/wait
export { Spinner, wait } from "https://deno.land/x/wait@0.1.12/mod.ts";
export { generatePassword } from "https://deno.land/x/pass@1.2.3/mod.ts";
export { Command, CompletionsCommand, ValidationError } from "https://deno.land/x/cliffy@v0.25.7/command/mod.ts";
export {
Input,
Select,
Secret,
Confirm,
prompt,
} from "https://deno.land/x/cliffy@v0.25.7/prompt/mod.ts";
export { colors } from "https://deno.land/x/cliffy@v0.25.7/ansi/mod.ts";
export { Table } from "https://deno.land/x/cliffy@v0.25.7/table/mod.ts";
export {
DenoLandProvider,
GithubProvider,
UpgradeCommand,
} from "https://deno.land/x/cliffy@v0.25.7/command/upgrade/mod.ts";