-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
deps.ts
37 lines (32 loc) · 1.75 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
export * as fs from 'https://deno.land/[email protected]/fs/mod.ts';
export * as path from 'https://deno.land/[email protected]/path/mod.ts';
export * as colors from 'https://deno.land/[email protected]/fmt/colors.ts';
export * as server from 'https://deno.land/[email protected]/http/server.ts';
export * as fileServer from 'https://deno.land/[email protected]/http/file_server.ts';
export * as httpStatus from 'https://deno.land/[email protected]/http/http_status.ts';
export * as asserts from 'https://deno.land/[email protected]/testing/asserts.ts';
// EventEmitter
export { EventEmitter } from 'https://deno.land/[email protected]/node/events.ts';
import * as React from 'https://esm.sh/[email protected]';
import * as ReactDOM from 'https://esm.sh/[email protected]';
import * as ReactDOMServer from 'https://esm.sh/[email protected]/server';
(window as any).React = React;
(window as any).ReactDOM = ReactDOM;
export { React, ReactDOM, ReactDOMServer };
// @deno-types="./src/types/any.d.ts"
import frontMatter from 'npm:[email protected]';
// @deno-types="./src/types/any.d.ts"
import htmlToTextMod from 'npm:[email protected]';
const { htmlToText } = htmlToTextMod;
// @deno-types="./src/types/any.d.ts"
import MarkdownIt from 'npm:[email protected]';
// @deno-types="./src/types/any.d.ts"
import reactElementToJSXStringMod from 'npm:[email protected]';
const reactElementToJSXString = reactElementToJSXStringMod.default;
// @deno-types="./src/types/any.d.ts"
import reactHtmlParserMod from 'npm:[email protected]';
const reactHtmlParser = reactHtmlParserMod.default;
// @deno-types="./src/types/any.d.ts"
import * as typescriptMod from 'npm:[email protected]';
const typescript = typescriptMod.default;
export { frontMatter, htmlToText, MarkdownIt, reactElementToJSXString, reactHtmlParser, typescript };