-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdeps.ts
24 lines (18 loc) · 1.04 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
export * as path from "https://deno.land/std@0.151.0/path/mod.ts";
export * as colors from "https://deno.land/std@0.151.0/fmt/colors.ts";
export * as fs from "https://deno.land/std@0.151.0/fs/mod.ts";
export * as flags from "https://deno.land/std@0.151.0/flags/mod.ts";
export { Sha256 } from "https://deno.land/std@0.151.0/hash/sha256.ts";
export {
type ImportMap,
resolveImportMap,
resolveModuleSpecifier as resolveImportMapModuleSpecifier,
} from "https://deno.land/x/importmap@0.2.1/mod.ts";
export { default as ts } from "https://esm.sh/typescript@4.8.2";
export * as terser from "https://esm.sh/terser";
export * as JSONC from "https://deno.land/std@0.151.0/encoding/jsonc.ts";
export * as postcss from "https://esm.sh/postcss";
export { default as postcssValueParser } from "https://esm.sh/postcss-value-parser";
export { default as postcssPresetEnv } from "https://esm.sh/postcss-preset-env";
export * as html from "https://deno.land/x/deno_dom/deno-dom-wasm.ts";
export * as mediaTypes from "https://deno.land/std@0.152.0/media_types/mod.ts";