-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeps.js
More file actions
29 lines (24 loc) · 783 Bytes
/
deps.js
File metadata and controls
29 lines (24 loc) · 783 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
28
29
export {
relative,
join,
basename,
extname,
} from "https://deno.land/std@0.51.0/path/mod.ts";
export {
exists,
move,
ensureSymlink,
} from "https://deno.land/std@0.51.0/fs/mod.ts";
export { signal } from "https://deno.land/std@0.51.0/signal/mod.ts";
export { Sha1 } from "https://deno.land/std@0.51.0/hash/sha1.ts";
export { acceptWebSocket } from "https://deno.land/std@0.51.0/ws/mod.ts";
export {
Application,
Router,
send,
} from "https://deno.land/x/oak/mod.ts";
// https://deno.land/x/oak/mod.ts
// https://raw.githubusercontent.com/lufrai/oak/listen-server-ref/mod.ts
import renderTmp from "https://unpkg.com/preact-render-to-string@5.1.8/dist/jsx.module.js";
export const render = renderTmp;
export * from "https://cdn.pika.dev/otion@^0.3.1/server";