forked from denoland/deployctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.ts
36 lines (33 loc) · 837 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
// Copyright 2021 Deno Land Inc. All rights reserved. MIT license.
// std
export {
basename,
dirname,
extname,
fromFileUrl,
globToRegExp,
isGlob,
join,
normalize,
relative,
resolve,
toFileUrl,
} from "https://deno.land/[email protected]/path/mod.ts";
export {
bold,
cyan,
green,
magenta,
red,
yellow,
} from "https://deno.land/[email protected]/fmt/colors.ts";
export { parse } from "https://deno.land/[email protected]/flags/mod.ts";
export { TextLineStream } from "https://deno.land/[email protected]/streams/text_line_stream.ts";
export * as JSONC from "https://deno.land/[email protected]/encoding/jsonc.ts";
// x/semver
export {
gte as semverGreaterThanOrEquals,
valid as semverValid,
} from "https://deno.land/[email protected]/semver/mod.ts";
// x/wait
export { Spinner, wait } from "https://deno.land/x/[email protected]/mod.ts";