14 lines
730 B
TypeScript
14 lines
730 B
TypeScript
// Remember to keep in sync with import_map.json !
|
|
// We have to use different deps for client and server as esbuild doesn't
|
|
// support wildcard exporting. See https://github.com/evanw/esbuild/issues/1420
|
|
export { globToRegExp } from "https://deno.land/std@0.165.0/path/glob.ts";
|
|
export { walk } from "https://deno.land/std@0.165.0/fs/mod.ts";
|
|
export * as path from "https://deno.land/std@0.165.0/path/mod.ts";
|
|
export { mime } from "https://deno.land/x/mimetypes@v1.0.0/mod.ts";
|
|
export * as YAML from "https://deno.land/std@0.184.0/yaml/mod.ts";
|
|
export {
|
|
createClient,
|
|
type DynamoDBClient,
|
|
} from "https://denopkg.com/chiefbiiko/dynamodb@55e60a5/mod.ts";
|
|
export { Cron } from "https://deno.land/x/croner@4.4.1/src/croner.js";
|