silverbullet/lib/deps_server.ts

10 lines
448 B
TypeScript
Raw Normal View History

2024-07-30 20:04:43 +08:00
// Remember to keep in sync with deno.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
2024-10-10 20:04:51 +08:00
export { globToRegExp } from "@std/path";
export { walk } from "@std/fs";
export * as path from "@std/path";
export { mime } from "mimetypes";
export * as YAML from "@std/yaml";
export { Cron } from "https://deno.land/x/croner@4.4.1/src/croner.js";