Skip to content

Commit

Permalink
update(deno/std): v0.52.0
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed May 20, 2020
1 parent 90f8595 commit 4b354cd
Show file tree
Hide file tree
Showing 28 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion packages/ansi-escape/lib/ansi-escape.ts
@@ -1,4 +1,4 @@
import { encode } from 'https://deno.land/std@v0.50.0/encoding/utf8.ts';
import { encode } from 'https://deno.land/std@v0.52.0/encoding/utf8.ts';
import { cursor, erase, image, ImageOptions, link, scroll } from './csi.ts';

export class AnsiEscape {
Expand Down
2 changes: 1 addition & 1 deletion packages/command/commands/completions.ts
@@ -1,4 +1,4 @@
import { bold, dim, italic } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { bold, dim, italic } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { BaseCommand } from '../lib/base-command.ts';
import { DefaultCommand } from '../lib/default-command.ts';
import { BashCompletionsCommand } from './completions/bash.ts';
Expand Down
4 changes: 2 additions & 2 deletions packages/command/commands/help.ts
@@ -1,5 +1,5 @@
import { encode } from 'https://deno.land/std@v0.50.0/encoding/utf8.ts';
import { blue, bold, dim, green, magenta, red, yellow } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { encode } from 'https://deno.land/std@v0.52.0/encoding/utf8.ts';
import { blue, bold, dim, green, magenta, red, yellow } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { IFlagOptions, IFlags } from '../../flags/lib/types.ts';
import { Table } from '../../table/lib/table.ts';
import format from '../../x/format.ts';
Expand Down
4 changes: 2 additions & 2 deletions packages/command/lib/base-command.ts
@@ -1,6 +1,6 @@
const { stdout, stderr } = Deno;
import { encode } from 'https://deno.land/std@v0.50.0/encoding/utf8.ts';
import { dim, red } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { encode } from 'https://deno.land/std@v0.52.0/encoding/utf8.ts';
import { dim, red } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { parseFlags } from '../../flags/lib/flags.ts';
import { IFlagArgument, IFlagOptions, IFlags, IFlagsResult, IFlagValue, IFlagValueHandler, IFlagValueType, IGenericObject, ITypeHandler, OptionType } from '../../flags/lib/types.ts';
import { fill } from '../../flags/lib/utils.ts';
Expand Down
2 changes: 1 addition & 1 deletion packages/command/test/lib/assert.ts
Expand Up @@ -4,4 +4,4 @@ export {
assertStrictEq,
assertThrows,
assertThrowsAsync
} from 'https://deno.land/std@v0.50.0/testing/asserts.ts';
} from 'https://deno.land/std@v0.52.0/testing/asserts.ts';
2 changes: 1 addition & 1 deletion packages/flags/test/lib/assert.ts
Expand Up @@ -4,4 +4,4 @@ export {
assertStrictEq,
assertThrows,
assertThrowsAsync
} from 'https://deno.land/std@v0.50.0/testing/asserts.ts';
} from 'https://deno.land/std@v0.52.0/testing/asserts.ts';
2 changes: 1 addition & 1 deletion packages/keycode/lib/key-code.ts
@@ -1,4 +1,4 @@
import { decode } from 'https://deno.land/std@v0.50.0/encoding/utf8.ts';
import { decode } from 'https://deno.land/std@v0.52.0/encoding/utf8.ts';
import { KeyMap, KeyMapCtrl, KeyMapShift } from './key-codes.ts';
import { IKey, KeyEvent } from './key-event.ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/keycode/test/lib/assert.ts
Expand Up @@ -4,4 +4,4 @@ export {
assertStrictEq,
assertThrows,
assertThrowsAsync
} from 'https://deno.land/std@v0.50.0/testing/asserts.ts';
} from 'https://deno.land/std@v0.52.0/testing/asserts.ts';
4 changes: 2 additions & 2 deletions packages/prompt/lib/generic-input.ts
@@ -1,5 +1,5 @@
import { encode } from 'https://deno.land/std@v0.50.0/encoding/utf8.ts';
import { underline } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { encode } from 'https://deno.land/std@v0.52.0/encoding/utf8.ts';
import { underline } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { KeyEvent } from '../../keycode/lib/key-event.ts';
import { stripeColors } from '../../table/lib/utils.ts';
import { GenericPrompt, GenericPromptOptions, GenericPromptSettings } from './generic-prompt.ts';
Expand Down
4 changes: 2 additions & 2 deletions packages/prompt/lib/generic-prompt.ts
@@ -1,5 +1,5 @@
import { encode } from 'https://deno.land/std@v0.50.0/encoding/utf8.ts';
import { blue, bold, dim, green, red, yellow } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { encode } from 'https://deno.land/std@v0.52.0/encoding/utf8.ts';
import { blue, bold, dim, green, red, yellow } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { AnsiEscape } from '../../ansi-escape/lib/ansi-escape.ts';
import { KeyEvent } from '../../keycode/lib/key-event.ts';
import format from '../../x/format.ts';
Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/lib/read-line.ts
@@ -1,4 +1,4 @@
import { BufReader, ReadLineResult } from 'https://deno.land/std@v0.50.0/io/bufio.ts';
import { BufReader, ReadLineResult } from 'https://deno.land/std@v0.52.0/io/bufio.ts';
import { KeyCode, KeyEvent } from '../../keycode/mod.ts';

export async function readLineSync(): Promise<string> {
Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/prompts/checkbox.ts
@@ -1,4 +1,4 @@
import { blue, dim, green, red } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { blue, dim, green, red } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { KeyEvent } from '../../keycode/mod.ts';
import { Figures } from '../lib/figures.ts';
import { GenericList, GenericListOption, GenericListOptions, GenericListOptionSettings, GenericListSettings } from '../lib/generic-list.ts';
Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/prompts/confirm.ts
@@ -1,4 +1,4 @@
import { blue, bold, dim, yellow } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { blue, bold, dim, yellow } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { Figures } from '../lib/figures.ts';
import { GenericInput, GenericInputPromptOptions, GenericInputPromptSettings } from '../lib/generic-input.ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/prompts/input.ts
@@ -1,4 +1,4 @@
import { blue } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { blue } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { Figures } from '../lib/figures.ts';
import { GenericInput, GenericInputPromptOptions, GenericInputPromptSettings } from '../lib/generic-input.ts';

Expand Down
4 changes: 2 additions & 2 deletions packages/prompt/prompts/list.ts
@@ -1,5 +1,5 @@
import { encode } from 'https://deno.land/std@v0.50.0/encoding/utf8.ts';
import { blue, underline } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { encode } from 'https://deno.land/std@v0.52.0/encoding/utf8.ts';
import { blue, underline } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { stripeColors } from '../../table/lib/utils.ts';
import { Figures } from '../lib/figures.ts';
import { GenericInput, GenericInputPromptOptions, GenericInputPromptSettings } from '../lib/generic-input.ts';
Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/prompts/number.ts
@@ -1,4 +1,4 @@
import { blue } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { blue } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { KeyEvent } from '../../keycode/lib/key-event.ts';
import { Figures } from '../lib/figures.ts';
import { GenericInput, GenericInputPromptOptions, GenericInputPromptSettings } from '../lib/generic-input.ts';
Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/prompts/select.ts
@@ -1,4 +1,4 @@
import { blue, dim } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { blue, dim } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { KeyEvent } from '../../keycode/lib/key-event.ts';
import { Figures } from '../lib/figures.ts';
import { GenericList, GenericListOption, GenericListOptions, GenericListOptionSettings, GenericListSettings } from '../lib/generic-list.ts';
Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/prompts/toggle.ts
@@ -1,4 +1,4 @@
import { blue, dim, underline } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { blue, dim, underline } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { KeyEvent } from '../../keycode/lib/key-event.ts';
import { Figures } from '../lib/figures.ts';
import { GenericInput, GenericInputPromptOptions, GenericInputPromptSettings } from '../lib/generic-input.ts';
Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/test/checkbox_test.ts
@@ -1,4 +1,4 @@
import { bold, red } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { bold, red } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { Checkbox } from '../prompts/checkbox.ts';
import { assertEquals, assertThrowsAsync } from './lib/assert.ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/test/confirm_test.ts
@@ -1,4 +1,4 @@
import { bold, red } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { bold, red } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { Confirm } from '../prompts/confirm.ts';
import { assertEquals, assertThrowsAsync } from './lib/assert.ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/test/input_test.ts
@@ -1,4 +1,4 @@
import { bold, red } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { bold, red } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { Input } from '../prompts/input.ts';
import { assertEquals, assertThrowsAsync } from './lib/assert.ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/test/lib/assert.ts
Expand Up @@ -4,4 +4,4 @@ export {
assertStrictEq,
assertThrows,
assertThrowsAsync
} from 'https://deno.land/std@v0.50.0/testing/asserts.ts';
} from 'https://deno.land/std@v0.52.0/testing/asserts.ts';
2 changes: 1 addition & 1 deletion packages/prompt/test/list_test.ts
@@ -1,4 +1,4 @@
import { bold, red } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { bold, red } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { List } from '../prompts/list.ts';
import { assertEquals, assertThrowsAsync } from './lib/assert.ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/test/number_test.ts
@@ -1,4 +1,4 @@
import { bold, red } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { bold, red } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { Number } from '../prompts/number.ts';
import { assertEquals, assertThrowsAsync } from './lib/assert.ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/test/select_test.ts
@@ -1,4 +1,4 @@
import { bold, red } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { bold, red } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { Select } from '../prompts/select.ts';
import { assertEquals, assertThrowsAsync } from './lib/assert.ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/prompt/test/toggle_test.ts
@@ -1,4 +1,4 @@
import { bold, red } from 'https://deno.land/std@v0.50.0/fmt/colors.ts';
import { bold, red } from 'https://deno.land/std@v0.52.0/fmt/colors.ts';
import { Toggle } from '../prompts/toggle.ts';
import { assertEquals, assertThrowsAsync } from './lib/assert.ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/table/lib/table.ts
@@ -1,4 +1,4 @@
import { encode } from 'https://deno.land/std@v0.50.0/encoding/utf8.ts';
import { encode } from 'https://deno.land/std@v0.52.0/encoding/utf8.ts';
import { border } from './border.ts';
import { Cell, ICell } from './cell.ts';
import { CELL_PADDING, MAX_CELL_WIDTH, MIN_CELL_WIDTH } from './const.ts';
Expand Down
2 changes: 1 addition & 1 deletion packages/table/test/lib/assert.ts
Expand Up @@ -4,4 +4,4 @@ export {
assertStrictEq,
assertThrows,
assertThrowsAsync
} from 'https://deno.land/std@v0.50.0/testing/asserts.ts';
} from 'https://deno.land/std@v0.52.0/testing/asserts.ts';

0 comments on commit 4b354cd

Please sign in to comment.