Skip to content

Commit

Permalink
chore(deno): update deno/std to v0.66.0 (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar authored Aug 21, 2020
1 parent 1cff32b commit 5c27a4b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ansi-escape/deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export {
encode as encodeBase64
} from 'https://deno.land/std@0.63.0/encoding/base64.ts';
} from 'https://deno.land/std@0.66.0/encoding/base64.ts';
2 changes: 1 addition & 1 deletion command/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ export {
italic,
blue,
bold
} from 'https://deno.land/std@0.63.0/fmt/colors.ts';
} from 'https://deno.land/std@0.66.0/fmt/colors.ts';
4 changes: 2 additions & 2 deletions dev_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ export {
assertStrictEquals,
assertThrows,
assertThrowsAsync
} from 'https://deno.land/std@0.63.0/testing/asserts.ts';
} from 'https://deno.land/std@0.66.0/testing/asserts.ts';

export {
bold,
red
} from 'https://deno.land/std@0.63.0/fmt/colors.ts';
} from 'https://deno.land/std@0.66.0/fmt/colors.ts';
2 changes: 1 addition & 1 deletion examples/command/examples.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run

import { red } from 'https://deno.land/std@0.63.0/fmt/colors.ts';
import { red } from 'https://deno.land/std@0.66.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --unstable

import { BufReader } from 'https://deno.land/std@0.63.0/io/bufio.ts';
import { BufReader } from 'https://deno.land/std@0.66.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --unstable

import { rgb24 } from 'https://deno.land/std@0.63.0/fmt/colors.ts';
import { rgb24 } from 'https://deno.land/std@0.66.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run

import { blue, bold, cyan, dim, green, italic, magenta, strikethrough, underline, yellow } from 'https://deno.land/std@0.63.0/fmt/colors.ts';
import { blue, bold, cyan, dim, green, italic, magenta, strikethrough, underline, yellow } from 'https://deno.land/std@0.66.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
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export {
green,
red,
underline
} from 'https://deno.land/std@0.63.0/fmt/colors.ts';
} from 'https://deno.land/std@0.66.0/fmt/colors.ts';

0 comments on commit 5c27a4b

Please sign in to comment.