Skip to content

Commit

Permalink
chore(upgrade): deno/std v0.113.0 (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed Nov 1, 2021
1 parent 864e915 commit 8d1664a
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion ansi/colors.ts
@@ -1,4 +1,4 @@
import * as stdColors from "https://deno.land/std@0.112.0/fmt/colors.ts";
import * as stdColors from "https://deno.land/std@0.113.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.112.0/encoding/base64.ts";
} from "https://deno.land/std@0.113.0/encoding/base64.ts";
2 changes: 1 addition & 1 deletion command/deps.ts
Expand Up @@ -10,4 +10,4 @@ export {
red,
setColorEnabled,
yellow,
} from "https://deno.land/std@0.112.0/fmt/colors.ts";
} from "https://deno.land/std@0.113.0/fmt/colors.ts";
12 changes: 6 additions & 6 deletions dev_deps.ts
Expand Up @@ -5,16 +5,16 @@ export {
assertStrictEquals,
assertThrows,
assertThrowsAsync,
} from "https://deno.land/std@0.112.0/testing/asserts.ts";
} from "https://deno.land/std@0.113.0/testing/asserts.ts";
export {
bold,
red,
stripColor,
} from "https://deno.land/std@0.112.0/fmt/colors.ts";
export { dirname } from "https://deno.land/std@0.112.0/path/mod.ts";
export { expandGlob } from "https://deno.land/std@0.112.0/fs/mod.ts";
export type { WalkEntry } from "https://deno.land/std@0.112.0/fs/mod.ts";
export { copy } from "https://deno.land/std@0.112.0/io/util.ts";
} from "https://deno.land/std@0.113.0/fmt/colors.ts";
export { dirname } from "https://deno.land/std@0.113.0/path/mod.ts";
export { expandGlob } from "https://deno.land/std@0.113.0/fs/mod.ts";
export type { WalkEntry } from "https://deno.land/std@0.113.0/fs/mod.ts";
export { copy } from "https://deno.land/std@0.113.0/io/util.ts";

/* 3rd party */
export { gt, lt } from "https://deno.land/x/semver@v1.4.0/mod.ts";
Expand Down
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.112.0/fmt/colors.ts";
import { rgb24 } from "https://deno.land/std@0.113.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.112.0/fmt/colors.ts";
import * as stdColors from "https://deno.land/std@0.113.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.112.0/fmt/colors.ts";
import { red } from "https://deno.land/std@0.113.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.112.0/io/bufio.ts";
import { BufReader } from "https://deno.land/std@0.113.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.112.0/fmt/colors.ts";
import { rgb24 } from "https://deno.land/std@0.113.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.112.0/fmt/colors.ts";
} from "https://deno.land/std@0.113.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.112.0/fmt/colors.ts";
} from "https://deno.land/std@0.113.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion table/deps.ts
@@ -1 +1 @@
export { stripColor } from "https://deno.land/std@0.112.0/fmt/colors.ts";
export { stripColor } from "https://deno.land/std@0.113.0/fmt/colors.ts";

0 comments on commit 8d1664a

Please sign in to comment.