-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.ts
51 lines (45 loc) · 1.13 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
import { deepMerge } from "jsr:@std/[email protected]";
import { exists, walk } from "jsr:@std/[email protected]";
import * as colors from "jsr:@std/[email protected]/colors";
import {
basename,
dirname,
globToRegExp,
join,
parse as parsePath,
relative,
} from "jsr:@std/[email protected]";
import { serveFile } from "jsr:@std/[email protected]";
import { debounce } from "jsr:@std/[email protected]";
import { firstNotNullishOf } from "jsr:@std/[email protected]";
import { parseArgs } from "jsr:@std/[email protected]";
import { parse as keycodeParse } from "jsr:@cliffy/[email protected]";
import { parse } from "jsr:@pd/[email protected]";
import { process } from "jsr:@pd/[email protected]";
import { $p } from "jsr:@pd/[email protected]";
import * as esbuild from "npm:[email protected]";
//import { httpImports } from "https://deno.land/x/[email protected]/index.ts";
export const std = {
relative,
deepMerge,
walk,
colors,
dirname,
join,
parsePath,
parseArgs,
exists,
globToRegExp,
serveFile,
basename,
debounce,
firstNotNullishOf,
};
export const md = {
parse,
};
export const pd = {
process,
$p,
};
export { esbuild, keycodeParse };