mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
33 lines
1.5 KiB
TypeScript
33 lines
1.5 KiB
TypeScript
// windmill
|
|
export { setClient } from "https://deno.land/x/windmill@v1.56.0/mod.ts";
|
|
export * from "https://deno.land/x/windmill@v1.56.0/windmill-api/index.ts";
|
|
|
|
// cliffy
|
|
export { Command } from "https://deno.land/x/cliffy@v0.25.6/command/command.ts";
|
|
export { Table } from "https://deno.land/x/cliffy@v0.25.6/table/table.ts";
|
|
export { colors } from "https://deno.land/x/cliffy@v0.25.6/ansi/colors.ts";
|
|
export { Secret } from "https://deno.land/x/cliffy@v0.25.6/prompt/secret.ts";
|
|
export { Select } from "https://deno.land/x/cliffy@v0.25.6/prompt/select.ts";
|
|
export { Confirm } from "https://deno.land/x/cliffy@v0.25.6/prompt/confirm.ts";
|
|
export { Input } from "https://deno.land/x/cliffy@v0.25.6/prompt/input.ts";
|
|
export {
|
|
DenoLandProvider,
|
|
UpgradeCommand,
|
|
} from "https://deno.land/x/cliffy@v0.25.6/command/upgrade/mod.ts";
|
|
|
|
// std
|
|
export { Untar } from "https://deno.land/std@0.170.0/archive/untar.ts";
|
|
export * as path from "https://deno.land/std@0.170.0/path/mod.ts";
|
|
export { ensureDir } from "https://deno.land/std@0.170.0/fs/ensure_dir.ts";
|
|
export {
|
|
copy,
|
|
readAll,
|
|
readerFromStreamReader,
|
|
} from "https://deno.land/std@0.170.0/streams/mod.ts";
|
|
export { DelimiterStream } from "https://deno.land/std@0.170.0/streams/mod.ts";
|
|
|
|
// other
|
|
export { getAvailablePort } from "https://deno.land/x/port@1.0.0/mod.ts";
|
|
export { default as dir } from "https://deno.land/x/dir@1.5.1/mod.ts";
|
|
export { passwordGenerator } from "https://deno.land/x/password_generator@latest/mod.ts"; // TODO: I think the version is called latest, but it's still pinned.
|