forked from denoland/deployctl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.ts
More file actions
27 lines (24 loc) · 672 Bytes
/
Copy pathdeps.ts
File metadata and controls
27 lines (24 loc) · 672 Bytes
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
// 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 } from "https://deno.land/std@0.195.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";