diff --git a/ansi-escape/deps.ts b/ansi-escape/deps.ts index d8243a33..0dfac9c7 100644 --- a/ansi-escape/deps.ts +++ b/ansi-escape/deps.ts @@ -1,3 +1,3 @@ export { encode as encodeBase64, -} from "https://deno.land/std@0.69.0/encoding/base64.ts"; +} from "https://deno.land/std@0.70.0/encoding/base64.ts"; diff --git a/command/deps.ts b/command/deps.ts index 06e7a9d3..ae2626f4 100644 --- a/command/deps.ts +++ b/command/deps.ts @@ -7,8 +7,8 @@ export { italic, blue, bold, -} from "https://deno.land/std@0.69.0/fmt/colors.ts"; +} from "https://deno.land/std@0.70.0/fmt/colors.ts"; export { existsSync, -} from "https://deno.land/std@0.69.0/fs/exists.ts"; +} from "https://deno.land/std@0.70.0/fs/exists.ts"; diff --git a/dev_deps.ts b/dev_deps.ts index f3096690..9edb599e 100644 --- a/dev_deps.ts +++ b/dev_deps.ts @@ -4,13 +4,13 @@ export { assertStrictEquals, assertThrows, assertThrowsAsync, -} from "https://deno.land/std@0.69.0/testing/asserts.ts"; +} from "https://deno.land/std@0.70.0/testing/asserts.ts"; export { bold, red, stripColor, -} from "https://deno.land/std@0.69.0/fmt/colors.ts"; +} from "https://deno.land/std@0.70.0/fmt/colors.ts"; export { lt, diff --git a/examples/command/examples.ts b/examples/command/examples.ts index 3e776c3a..2a02dcdf 100755 --- a/examples/command/examples.ts +++ b/examples/command/examples.ts @@ -1,6 +1,6 @@ #!/usr/bin/env -S deno run -import { red } from "https://deno.land/std@0.69.0/fmt/colors.ts"; +import { red } from "https://deno.land/std@0.70.0/fmt/colors.ts"; import { Command } from "../../command/command.ts"; await new Command() diff --git a/examples/prompt/custom-prompts.ts b/examples/prompt/custom-prompts.ts index e64570e2..9512c312 100755 --- a/examples/prompt/custom-prompts.ts +++ b/examples/prompt/custom-prompts.ts @@ -1,6 +1,6 @@ #!/usr/bin/env -S deno run --unstable -import { BufReader } from "https://deno.land/std@0.69.0/io/bufio.ts"; +import { BufReader } from "https://deno.land/std@0.70.0/io/bufio.ts"; import { AnsiEscape } from "../../ansi-escape/ansi-escape.ts"; import { Figures } from "../../prompt/figures.ts"; import { prompt } from "../../prompt/prompt.ts"; diff --git a/examples/prompt/prompt-demo.ts b/examples/prompt/prompt-demo.ts index fa6532ed..7982cb1f 100755 --- a/examples/prompt/prompt-demo.ts +++ b/examples/prompt/prompt-demo.ts @@ -1,6 +1,6 @@ #!/usr/bin/env -S deno run --unstable -import { rgb24 } from "https://deno.land/std@0.69.0/fmt/colors.ts"; +import { rgb24 } from "https://deno.land/std@0.70.0/fmt/colors.ts"; import { prompt } from "../../prompt/prompt.ts"; import { Checkbox } from "../../prompt/checkbox.ts"; import { Input } from "../../prompt/input.ts"; diff --git a/examples/table/random-table-demo.ts b/examples/table/random-table-demo.ts index f794b35e..51bbe733 100755 --- a/examples/table/random-table-demo.ts +++ b/examples/table/random-table-demo.ts @@ -11,7 +11,7 @@ import { strikethrough, underline, yellow, -} from "https://deno.land/std@0.69.0/fmt/colors.ts"; +} from "https://deno.land/std@0.70.0/fmt/colors.ts"; import { AnsiEscape } from "../../ansi-escape/ansi-escape.ts"; import { Cell, ICell } from "../../table/cell.ts"; import { Table } from "../../table/table.ts"; diff --git a/prompt/deps.ts b/prompt/deps.ts index 8998f382..8c9bd7c9 100644 --- a/prompt/deps.ts +++ b/prompt/deps.ts @@ -7,4 +7,4 @@ export { red, underline, stripColor, -} from "https://deno.land/std@0.69.0/fmt/colors.ts"; +} from "https://deno.land/std@0.70.0/fmt/colors.ts"; diff --git a/table/deps.ts b/table/deps.ts index 73d789ab..a627d8c7 100644 --- a/table/deps.ts +++ b/table/deps.ts @@ -1,3 +1,3 @@ export { stripColor, -} from "https://deno.land/std@0.69.0/fmt/colors.ts"; +} from "https://deno.land/std@0.70.0/fmt/colors.ts";