From 178683554c595997cfd51359b8be17684e065c01 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 10 Apr 2024 16:31:23 +0200 Subject: [PATCH] update cli deps --- cli/deps.ts | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/cli/deps.ts b/cli/deps.ts index a9991251ad..a7afa06707 100644 --- a/cli/deps.ts +++ b/cli/deps.ts @@ -1,37 +1,38 @@ // windmill export { setClient } from "npm:windmill-client@1.304.2"; export * from "npm:windmill-client@1.304.2"; -export { SEP } from "https://deno.land/std@0.201.0/path/separator.ts"; + // cliffy -export { Command } from "https://deno.land/x/cliffy@v1.0.0-rc.3/command/mod.ts"; -export { Table } from "https://deno.land/x/cliffy@v1.0.0-rc.3/table/table.ts"; -export { colors } from "https://deno.land/x/cliffy@v1.0.0-rc.3/ansi/colors.ts"; -export { Secret } from "https://deno.land/x/cliffy@v1.0.0-rc.3/prompt/secret.ts"; -export { Select } from "https://deno.land/x/cliffy@v1.0.0-rc.3/prompt/select.ts"; -export { Confirm } from "https://deno.land/x/cliffy@v1.0.0-rc.3/prompt/confirm.ts"; -export { Input } from "https://deno.land/x/cliffy@v1.0.0-rc.3/prompt/input.ts"; +export { Command } from "https://deno.land/x/cliffy@v1.0.0-rc.4/command/mod.ts"; +export { Table } from "https://deno.land/x/cliffy@v1.0.0-rc.4/table/table.ts"; +export { colors } from "https://deno.land/x/cliffy@v1.0.0-rc.4/ansi/colors.ts"; +export { Secret } from "https://deno.land/x/cliffy@v1.0.0-rc.4/prompt/secret.ts"; +export { Select } from "https://deno.land/x/cliffy@v1.0.0-rc.4/prompt/select.ts"; +export { Confirm } from "https://deno.land/x/cliffy@v1.0.0-rc.4/prompt/confirm.ts"; +export { Input } from "https://deno.land/x/cliffy@v1.0.0-rc.4/prompt/input.ts"; export { DenoLandProvider, UpgradeCommand, -} from "https://deno.land/x/cliffy@v1.0.0-rc.3/command/upgrade/mod.ts"; -export { CompletionsCommand } from "https://deno.land/x/cliffy@v1.0.0-rc.3/command/completions/mod.ts"; +} from "https://deno.land/x/cliffy@v1.0.0-rc.4/command/upgrade/mod.ts"; +export { CompletionsCommand } from "https://deno.land/x/cliffy@v1.0.0-rc.4/command/completions/mod.ts"; // std -export * as path from "https://deno.land/std@0.184.0/path/mod.ts"; -export { ensureDir } from "https://deno.land/std@0.184.0/fs/ensure_dir.ts"; +export * as path from "https://deno.land/std@0.207.0/path/mod.ts"; +export { ensureDir } from "https://deno.land/std@0.207.0/fs/ensure_dir.ts"; export { copy, readAll, readerFromStreamReader, -} from "https://deno.land/std@0.184.0/streams/mod.ts"; +} from "https://deno.land/std@0.207.0/streams/mod.ts"; +export { SEP } from "https://deno.land/std@0.207.0/path/separator.ts"; +export { DelimiterStream } from "https://deno.land/std@0.207.0/streams/mod.ts"; +export { iterateReader } from "https://deno.land/std@0.207.0/streams/iterate_reader.ts"; +export { writeAllSync } from "https://deno.land/std@0.207.0/streams/mod.ts"; +export { encodeHex } from "https://deno.land/std@0.207.0/encoding/hex.ts"; + +// other export { Application, Router } from "https://deno.land/x/oak@v12.5.0/mod.ts"; export { getPort } from "https://deno.land/x/getport@v2.1.2/mod.ts"; - -export { DelimiterStream } from "https://deno.land/std@0.184.0/streams/mod.ts"; -export { iterateReader } from "https://deno.land/std@0.184.0/streams/iterate_reader.ts"; -export { writeAllSync } from "https://deno.land/std@0.184.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. @@ -48,5 +49,4 @@ export { parse as yamlParse, } from "https://deno.land/std@0.184.0/yaml/mod.ts"; export { open } from "https://deno.land/x/open@v0.0.5/index.ts"; -export { encodeHex } from "https://deno.land/std@0.207.0/encoding/hex.ts"; export { default as gitignore_parser } from "npm:gitignore-parser";