Skip to content

Commit

Permalink
chore(upgrade): deno/std v0.86.0 (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed Feb 7, 2021
1 parent 1ee0366 commit ce54da4
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion ansi/colors.ts
@@ -1,4 +1,4 @@
import * as stdColors from "https://deno.land/std@0.83.0/fmt/colors.ts";
import * as stdColors from "https://deno.land/std@0.86.0/fmt/colors.ts";

type ExcludedColorMethods = "setColorEnabled" | "getColorEnabled";
type PropertyNames = keyof typeof stdColors;
Expand Down
2 changes: 1 addition & 1 deletion ansi/deps.ts
@@ -1,3 +1,3 @@
export {
encode as encodeBase64,
} from "https://deno.land/std@0.83.0/encoding/base64.ts";
} from "https://deno.land/std@0.86.0/encoding/base64.ts";
4 changes: 2 additions & 2 deletions command/deps.ts
Expand Up @@ -7,6 +7,6 @@ export {
magenta,
red,
yellow,
} from "https://deno.land/std@0.83.0/fmt/colors.ts";
} from "https://deno.land/std@0.86.0/fmt/colors.ts";

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

export {
bold,
red,
stripColor,
} from "https://deno.land/std@0.83.0/fmt/colors.ts";
} from "https://deno.land/std@0.86.0/fmt/colors.ts";

export { gt, lt } from "https://deno.land/x/semver@v1.0.0/mod.ts";
2 changes: 1 addition & 1 deletion examples/ansi/custom.ts
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --unstable --allow-net=deno.land

import { rgb24 } from "https://deno.land/std@0.83.0/fmt/colors.ts";
import { rgb24 } from "https://deno.land/std@0.86.0/fmt/colors.ts";
import { tty } from "../../ansi/tty.ts";

const response = await fetch("https://deno.land/images/hashrock_simple.png");
Expand Down
2 changes: 1 addition & 1 deletion examples/ansi/demo.ts
@@ -1,4 +1,4 @@
import * as stdColors from "https://deno.land/std@0.83.0/fmt/colors.ts";
import * as stdColors from "https://deno.land/std@0.86.0/fmt/colors.ts";
import * as ansiEscapes from "../../ansi/ansi_escapes.ts";

const ansiEscapeNames1: Array<keyof typeof ansiEscapes> = [
Expand Down
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.83.0/fmt/colors.ts";
import { red } from "https://deno.land/std@0.86.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.83.0/io/bufio.ts";
import { BufReader } from "https://deno.land/std@0.86.0/io/bufio.ts";
import { tty } from "../../ansi/tty.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.83.0/fmt/colors.ts";
import { rgb24 } from "https://deno.land/std@0.86.0/fmt/colors.ts";
import { tty } from "../../ansi/tty.ts";
import { prompt } from "../../prompt/prompt.ts";
import { Checkbox } from "../../prompt/checkbox.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.83.0/fmt/colors.ts";
} from "https://deno.land/std@0.86.0/fmt/colors.ts";
import { tty } from "../../ansi/tty.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 @@ -8,4 +8,4 @@ export {
stripColor,
underline,
yellow,
} from "https://deno.land/std@0.83.0/fmt/colors.ts";
} from "https://deno.land/std@0.86.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion table/deps.ts
@@ -1 +1 @@
export { stripColor } from "https://deno.land/std@0.83.0/fmt/colors.ts";
export { stripColor } from "https://deno.land/std@0.86.0/fmt/colors.ts";

0 comments on commit ce54da4

Please sign in to comment.