Skip to content

Commit

Permalink
chore(upgrade): deno/std v0.68.0
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed Sep 13, 2020
1 parent 1e15d43 commit 9bdd341
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion ansi-escape/deps.ts
@@ -1,3 +1,3 @@
export {
encode as encodeBase64,
} from "https://deno.land/std@0.67.0/encoding/base64.ts";
} from "https://deno.land/std@0.68.0/encoding/base64.ts";
4 changes: 2 additions & 2 deletions command/deps.ts
Expand Up @@ -7,8 +7,8 @@ export {
italic,
blue,
bold,
} from "https://deno.land/std@0.67.0/fmt/colors.ts";
} from "https://deno.land/std@0.68.0/fmt/colors.ts";

export {
existsSync,
} from "https://deno.land/std@0.67.0/fs/exists.ts";
} from "https://deno.land/std@0.68.0/fs/exists.ts";
4 changes: 2 additions & 2 deletions dev_deps.ts
Expand Up @@ -4,10 +4,10 @@ export {
assertStrictEquals,
assertThrows,
assertThrowsAsync,
} from "https://deno.land/std@0.67.0/testing/asserts.ts";
} from "https://deno.land/std@0.68.0/testing/asserts.ts";

export {
bold,
red,
stripColor,
} from "https://deno.land/std@0.67.0/fmt/colors.ts";
} from "https://deno.land/std@0.68.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion examples/command/examples.ts
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run

import { red } from "https://deno.land/std@0.67.0/fmt/colors.ts";
import { red } from "https://deno.land/std@0.68.0/fmt/colors.ts";
import { Command } from "../../command/command.ts";

await new Command()
Expand Down
2 changes: 1 addition & 1 deletion examples/prompt/custom-prompts.ts
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --unstable

import { BufReader } from "https://deno.land/std@0.67.0/io/bufio.ts";
import { BufReader } from "https://deno.land/std@0.68.0/io/bufio.ts";
import { AnsiEscape } from "../../ansi-escape/ansi-escape.ts";
import { Figures } from "../../prompt/figures.ts";
import { prompt } from "../../prompt/prompt.ts";
Expand Down
2 changes: 1 addition & 1 deletion examples/prompt/prompt-demo.ts
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --unstable

import { rgb24 } from "https://deno.land/std@0.67.0/fmt/colors.ts";
import { rgb24 } from "https://deno.land/std@0.68.0/fmt/colors.ts";
import { prompt } from "../../prompt/prompt.ts";
import { Checkbox } from "../../prompt/checkbox.ts";
import { Input } from "../../prompt/input.ts";
Expand Down
2 changes: 1 addition & 1 deletion examples/table/random-table-demo.ts
Expand Up @@ -11,7 +11,7 @@ import {
strikethrough,
underline,
yellow,
} from "https://deno.land/std@0.67.0/fmt/colors.ts";
} from "https://deno.land/std@0.68.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";
Expand Down
2 changes: 1 addition & 1 deletion prompt/deps.ts
Expand Up @@ -7,4 +7,4 @@ export {
red,
underline,
stripColor,
} from "https://deno.land/std@0.67.0/fmt/colors.ts";
} from "https://deno.land/std@0.68.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion table/deps.ts
@@ -1,3 +1,3 @@
export {
stripColor,
} from "https://deno.land/std@0.67.0/fmt/colors.ts";
} from "https://deno.land/std@0.68.0/fmt/colors.ts";

0 comments on commit 9bdd341

Please sign in to comment.